@charset "UTF-8";
ion-action-sheet {
  left: 0;
  top: 0;
  position: absolute;
  z-index: 1000;
  display: block;
  width: 100%;
  height: 100%;
}

.action-sheet-wrapper {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: translate3d(0,  100%,  0);
  transform: translate3d(0,  100%,  0);
  position: absolute;
  z-index: 10;
  display: block;
  width: 100%;
  max-width: 500px;
  pointer-events: none;
}

.action-sheet-button {
  width: 100%;
}

.action-sheet-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: 100%;
  max-height: 100%;
}

.action-sheet-group {
  overflow: scroll;
  -webkit-flex-shrink: 2;
  -ms-flex-negative: 2;
  flex-shrink: 2;
  pointer-events: all;
}

.action-sheet-group-cancel {
  overflow: hidden;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.action-sheet-ios {
  text-align: center;
}

.action-sheet-ios .action-sheet-wrapper {
  margin: constant(safe-area-inset-top) auto constant(safe-area-inset-bottom);
  margin: env(safe-area-inset-top) auto env(safe-area-inset-bottom);
}

.action-sheet-ios .action-sheet-container {
  padding: 0 10px;
}

.action-sheet-ios .action-sheet-group {
  border-radius: 13px;
  margin-bottom: 8px;
  background: #f9f9f9;
}

.action-sheet-ios .action-sheet-group:first-child {
  margin-top: 10px;
}

.action-sheet-ios .action-sheet-group:last-child {
  margin-bottom: 10px;
}

.action-sheet-ios .action-sheet-title {
  padding: 1.5rem;
  text-align: center;
  border-radius: 0;
  border-bottom: 0.55px solid #d6d6da;
  font-size: 1.3rem;
  font-weight: 400;
  color: #8f8f8f;
}

.action-sheet-ios .action-sheet-button {
  margin: 0;
  padding: 18px;
  min-height: 5.6rem;
  border-bottom: 0.55px solid #d6d6da;
  font-size: 2rem;
  color: #007aff;
  background: transparent;
}

.action-sheet-ios .action-sheet-button:last-child {
  border-bottom-color: transparent;
}

.action-sheet-ios .action-sheet-button.activated {
  margin-top: -0.55px;
  border-top: 0.55px solid #ebebeb;
  border-bottom-color: #ebebeb;
  background: #ebebeb;
}

.action-sheet-ios .action-sheet-selected {
  font-weight: bold;
  background: #fff;
}

.action-sheet-ios .action-sheet-destructive {
  color: #f53d3d;
}

.action-sheet-ios .action-sheet-cancel {
  font-weight: 600;
  background: #fff;
}

.action-sheet-md .action-sheet-title {
  text-align: left;
  text-align: start;
  font-size: 1.6rem;
  color: #757575;
  padding: 11px 16px 17px;
}

.action-sheet-md .action-sheet-button {
  text-align: left;
  text-align: start;
  position: relative;
  overflow: hidden;
  min-height: 4.8rem;
  font-size: 1.6rem;
  color: #222;
  background: transparent;
  padding: 0 16px;
}

.action-sheet-md .action-sheet-button.activated {
  background: #f1f1f1;
}

.action-sheet-md .action-sheet-icon {
  padding: 0;
  text-align: center;
  width: 2.3rem;
  font-size: 2.4rem;
  vertical-align: middle;
  margin: 0 32px 0 0;
}

.action-sheet-md .action-sheet-group {
  background: #fafafa;
}

.action-sheet-md .action-sheet-group:first-child {
  padding-top: 0.8rem;
}

.action-sheet-md .action-sheet-group:last-child {
  padding-bottom: 0.8rem;
}

.action-sheet-md .action-sheet-group .button-inner {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.action-sheet-md .action-sheet-selected {
  font-weight: bold;
}

.action-sheet-wp .action-sheet-title {
  text-align: left;
  text-align: start;
  font-size: 2rem;
  color: #4d4d4d;
  padding: 11px 16px 17px;
}

.action-sheet-wp .action-sheet-button {
  text-align: left;
  text-align: start;
  min-height: 4.8rem;
  font-size: 1.5rem;
  color: #4d4d4d;
  background: transparent;
  padding: 0 16px;
}

.action-sheet-wp .action-sheet-button.activated {
  background: #aaa;
}

.action-sheet-wp .action-sheet-icon {
  padding: 0;
  text-align: center;
  width: 2.3rem;
  font-size: 2.4rem;
  vertical-align: middle;
  margin: 0 20px 0 0;
}

.action-sheet-wp .action-sheet-group {
  background: #fff;
}

.action-sheet-wp .action-sheet-group:first-child {
  padding-top: 0.8rem;
  -webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.action-sheet-wp .action-sheet-group:last-child {
  padding-bottom: 0.8rem;
}

.action-sheet-wp .action-sheet-group .button-inner {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.action-sheet-wp .action-sheet-selected {
  font-weight: bold;
}

.action-sheet-wp .action-sheet-cancel {
  background: transparent;
}

ion-alert {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  contain: strict;
}

ion-alert.alert-top {
  padding-top: 50px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

ion-alert input {
  width: 100%;
}

.alert-wrapper {
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 250px;
  max-height: 90%;
  opacity: 0;
  contain: content;
}

.alert-title {
  margin: 0;
  padding: 0;
}

.alert-sub-title {
  margin: 5px 0 0;
  padding: 0;
  font-weight: normal;
}

.alert-message {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.alert-input {
  padding: 10px 0;
  border: 0;
  background: inherit;
}

.alert-input::-moz-placeholder {
  color: #999;
}

.alert-input:-ms-input-placeholder {
  color: #999;
}

.alert-input::-webkit-input-placeholder {
  text-indent: 0;
  color: #999;
}

.alert-button-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.alert-button-group-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.alert-button {
  margin: 0;
  z-index: 0;
  display: block;
  font-size: 14px;
  line-height: 20px;
}

.alert-tappable {
  text-align: left;
  text-align: start;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: inherit;
  line-height: initial;
  background: transparent;
}

.alert-ios .alert-wrapper {
  border-radius: 13px;
  overflow: hidden;
  max-width: 270px;
  background-color: #f8f8f8;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.alert-ios .alert-head {
  text-align: center;
  padding: 12px 16px 7px;
}

.alert-ios .alert-title {
  margin-top: 8px;
  font-size: 17px;
  font-weight: 600;
}

.alert-ios .alert-sub-title {
  font-size: 14px;
  color: #666;
}

.alert-ios .alert-message,
.alert-ios .alert-input-group {
  text-align: center;
  font-size: 13px;
  color: inherit;
  padding: 0 16px 21px;
}

.alert-ios .alert-message {
  max-height: 240px;
}

.alert-ios .alert-message:empty {
  padding: 0 0 12px;
}

.alert-ios .alert-input {
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  margin-top: 10px;
  border-radius: 4px;
  border: 0.55px solid #ccc;
  background-color: #fff;
  padding: 6px;
}

.alert-ios .alert-radio-group,
.alert-ios .alert-checkbox-group {
  overflow: scroll;
  max-height: 240px;
  border-top: 0.55px solid #dbdbdf;
  -webkit-overflow-scrolling: touch;
}

.alert-ios .alert-tappable {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 44px;
}

.alert-ios .alert-radio-label {
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: initial;
  padding: 13px;
}

.alert-ios [aria-checked=true] .alert-radio-label {
  color: #327eff;
}

.alert-ios .alert-radio-icon {
  position: relative;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  min-width: 30px;
}

.alert-ios [aria-checked=true] .alert-radio-inner {
  left: 7px;
  top: -7px;
  position: absolute;
  width: 6px;
  height: 12px;
  border-width: 2px;
  border-top-width: 0;
  border-left-width: 0;
  border-style: solid;
  border-color: #327eff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.alert-ios .alert-checkbox-label {
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: initial;
  padding: 13px;
}

.alert-ios [aria-checked=true] .alert-checkbox-label {
  color: initial;
}

.alert-ios .alert-checkbox-icon {
  border-radius: 50%;
  position: relative;
  width: 21px;
  height: 21px;
  border-width: 0.55px;
  border-style: solid;
  border-color: #c8c7cc;
  background-color: #fff;
  margin: 10px 6px 10px 16px;
}

.alert-ios [aria-checked=true] .alert-checkbox-icon {
  border-color: #327eff;
  background-color: #327eff;
}

.alert-ios [aria-checked=true] .alert-checkbox-inner {
  left: 7px;
  top: 4px;
  position: absolute;
  width: 4px;
  height: 9px;
  border-width: 0.55px;
  border-top-width: 0;
  border-left-width: 0;
  border-style: solid;
  border-color: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.alert-ios .alert-button-group {
  margin-right: -0.55px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.alert-ios .alert-button {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 50%;
  height: 44px;
  border-top: 0.55px solid #dbdbdf;
  border-right: 0.55px solid #dbdbdf;
  font-size: 17px;
  color: #327eff;
  background-color: transparent;
}

.alert-ios .alert-button:last-child {
  border-right: 0;
  font-weight: bold;
}

.alert-ios .alert-button.activated {
  background-color: #e9e9e9;
}

.alert-md .alert-wrapper {
  border-radius: 2px;
  max-width: 280px;
  background-color: #fafafa;
  -webkit-box-shadow: 0 16px 20px rgba(0, 0, 0, 0.4);
  box-shadow: 0 16px 20px rgba(0, 0, 0, 0.4);
}

.alert-md .alert-head {
  text-align: left;
  text-align: start;
  padding: 24px 24px 20px;
}

.alert-md .alert-title {
  font-size: 22px;
}

.alert-md .alert-sub-title {
  font-size: 16px;
}

.alert-md .alert-message,
.alert-md .alert-input-group {
  color: rgba(0, 0, 0, 0.5);
  padding: 0 24px 24px;
}

.alert-md .alert-message {
  max-height: 240px;
  font-size: 15px;
}

.alert-md .alert-message:empty {
  padding: 0;
}

.alert-md .alert-input {
  margin: 5px 0;
  border-bottom: 1px solid #dedede;
  color: #000;
}

.alert-md .alert-input:focus {
  margin-bottom: 4px;
  border-bottom: 2px solid #327eff;
}

.alert-md .alert-radio-group,
.alert-md .alert-checkbox-group {
  position: relative;
  overflow: auto;
  max-height: 240px;
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
}

.alert-md .alert-tappable {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  min-height: 4.4rem;
}

.alert-md .alert-radio-label {
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: initial;
  padding: 13px 26px;
}

.alert-md .alert-radio-icon {
  left: 13px;
  top: 0;
  border-radius: 50%;
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  border-width: 2px;
  border-style: solid;
  border-color: #787878;
}

.alert-md .alert-radio-inner {
  left: 2px;
  top: 2px;
  border-radius: 50%;
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #327eff;
  -webkit-transform: scale3d(0, 0, 0);
  transform: scale3d(0, 0, 0);
  -webkit-transition: -webkit-transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.alert-md [aria-checked=true] .alert-radio-label {
  color: #327eff;
}

.alert-md [aria-checked=true] .alert-radio-icon {
  border-color: #327eff;
}

.alert-md [aria-checked=true] .alert-radio-inner {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.alert-md .alert-checkbox-label {
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: initial;
  padding: 13px 26px;
}

.alert-md [aria-checked=true] .alert-checkbox-label {
  color: initial;
}

.alert-md .alert-checkbox-icon {
  left: 13px;
  top: 0;
  border-radius: 2px;
  position: relative;
  width: 16px;
  height: 16px;
  border-width: 2px;
  border-style: solid;
  border-color: #787878;
}

.alert-md [aria-checked=true] .alert-checkbox-icon {
  border-color: #327eff;
  background-color: #327eff;
}

.alert-md [aria-checked=true] .alert-checkbox-inner {
  left: 3px;
  top: 0;
  position: absolute;
  width: 6px;
  height: 10px;
  border-width: 2px;
  border-top-width: 0;
  border-left-width: 0;
  border-style: solid;
  border-color: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.alert-md .alert-button-group {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 8px 8px 8px 24px;
}

.alert-md .alert-button {
  text-align: right;
  text-align: end;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  font-weight: 500;
  text-transform: uppercase;
  color: #327eff;
  background-color: transparent;
  margin: 0 8px 0 0;
  padding: 10px;
}

.alert-md .alert-button.activated {
  background-color: rgba(158, 158, 158, 0.2);
}

.alert-md .alert-button .button-inner {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.alert-wp ion-backdrop {
  background: #fff;
}

.alert-wp .alert-wrapper {
  border-radius: 0;
  width: 100%;
  max-width: 520px;
  border: 1px solid #327eff;
  background: #e6e6e6;
}

.alert-wp .alert-head {
  text-align: left;
  text-align: start;
  padding: 20px 22px 5px;
}

.alert-wp .alert-title {
  font-size: 20px;
  font-weight: 400;
}

.alert-wp .alert-sub-title {
  font-size: 16px;
}

.alert-wp .alert-message,
.alert-wp .alert-input-group {
  color: #000;
  padding: 0 22px 8px;
}

.alert-wp .alert-message {
  max-height: 240px;
  font-size: 13px;
}

.alert-wp .alert-message:empty {
  padding: 0;
}

.alert-wp .alert-input {
  border: 2px solid rgba(0, 0, 0, 0.5);
  line-height: 3rem;
  color: #000;
  margin: 5px 0;
  padding: 0 8px;
}

.alert-wp .alert-input:focus {
  border-color: #327eff;
}

.alert-wp .alert-radio-group,
.alert-wp .alert-checkbox-group {
  position: relative;
  overflow: auto;
  max-height: 240px;
}

.alert-wp .alert-tappable {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  min-height: 4.4rem;
}

.alert-wp .alert-radio-label {
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: initial;
  padding: 13px 26px;
}

.alert-wp .alert-radio-icon {
  left: 13px;
  top: 0;
  margin: 0;
  border-radius: 50%;
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  border-width: 2px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.5);
}

.alert-wp .alert-radio-inner {
  left: 2px;
  top: 2px;
  border-radius: 50%;
  position: absolute;
  display: none;
  width: 8px;
  height: 8px;
  background: #327eff;
}

.alert-wp [aria-checked=true] .alert-radio-label {
  color: #000;
}

.alert-wp [aria-checked=true] .alert-radio-icon {
  border-color: rgba(0, 0, 0, 0.5);
}

.alert-wp [aria-checked=true] .alert-radio-inner {
  display: block;
}

.alert-wp .alert-checkbox-label {
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: initial;
  padding: 13px 26px;
}

.alert-wp [aria-checked=true] .alert-checkbox-label {
  color: initial;
}

.alert-wp .alert-checkbox-icon {
  left: 13px;
  top: 0;
  border-radius: 0;
  position: relative;
  width: 16px;
  height: 16px;
  border-width: 2px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.5);
  background: transparent;
}

.alert-wp [aria-checked=true] .alert-checkbox-icon {
  border-color: #327eff;
  background: #327eff;
}

.alert-wp [aria-checked=true] .alert-checkbox-inner {
  left: 3px;
  top: -2px;
  position: absolute;
  width: 6px;
  height: 12px;
  border-width: 1px;
  border-top-width: 0;
  border-left-width: 0;
  border-style: solid;
  border-color: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.alert-wp .alert-button-group {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 20px 22px;
}

.alert-wp .alert-button-group-vertical .alert-button {
  margin-top: 5px;
  width: 100%;
}

.alert-wp .alert-button-group-vertical .alert-button:first-child:not(:only-child) {
  margin-right: 0;
  margin-top: 0;
}

.alert-wp .alert-button {
  border-radius: 0;
  width: 49.5%;
  font-weight: 400;
  color: #000;
  background: #b8b8b8;
  padding: 5px;
}

.alert-wp .alert-button:first-child:not(:only-child) {
  margin-right: 1%;
}

.alert-wp .alert-button.activated {
  background: darkgray;
}

audio,
canvas,
progress,
video {
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

b,
strong {
  font-weight: bold;
}

img {
  max-width: 100%;
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  height: 1px;
  border-width: 0;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

label,
input,
select,
textarea {
  font-family: inherit;
  line-height: normal;
}

textarea {
  overflow: auto;
  height: auto;
  font: inherit;
  color: inherit;
}

textarea::-webkit-input-placeholder {
  padding-left: 2px;
}

textarea::-moz-placeholder {
  padding-left: 2px;
}

textarea::-ms-input-placeholder {
  padding-left: 2px;
}

textarea::placeholder {
  padding-left: 2px;
}

form,
input,
optgroup,
select {
  margin: 0;
  font: inherit;
  color: inherit;
}

html input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}

a,
a div,
a span,
a ion-icon,
a ion-label,
button,
button div,
button span,
button ion-icon,
button ion-label,
[tappable],
[tappable] div,
[tappable] span,
[tappable] ion-icon,
[tappable] ion-label,
input,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

a ion-label,
button ion-label {
  pointer-events: none;
}

button {
  border: 0;
  font-family: inherit;
  font-style: inherit;
  font-variant: inherit;
  line-height: 1;
  text-transform: none;
  cursor: pointer;
  -webkit-appearance: button;
}

[tappable] {
  cursor: pointer;
}

a[disabled],
button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input[type="checkbox"],
input[type="radio"] {
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

.hide,
[hidden],
template {
  display: none !important;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

:focus,
:active {
  outline: none;
}

.focus-outline :focus {
  outline: thin dotted;
  outline-offset: -1px;
}

.focus-outline button:focus,
.focus-outline [ion-button]:focus {
  border-color: #51a7e8;
  outline: 2px solid #51a7e8;
  -webkit-box-shadow: 0 0 8px 1px #51a7e8;
  box-shadow: 0 0 8px 1px #51a7e8;
}

ion-input :focus {
  outline: none;
}

.click-block {
  display: none;
}

.click-block-enabled {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-transform: translate3d(0,  -100%,  0) translateY(1px);
  transform: translate3d(0,  -100%,  0) translateY(1px);
  position: absolute;
  z-index: 99999;
  display: block;
  opacity: 0;
  contain: strict;
}

.click-block-active {
  -webkit-transform: translate3d(0,  0,  0);
  transform: translate3d(0,  0,  0);
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  position: fixed;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-user-drag: none;
  -ms-content-zooming: none;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  word-wrap: break-word;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

a {
  background-color: transparent;
}

.enable-hover a:hover {
  opacity: .7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 500;
  line-height: 1.2;
}

[padding] h1:first-child,
[padding] h2:first-child,
[padding] h3:first-child,
[padding] h4:first-child,
[padding] h5:first-child,
[padding] h6:first-child {
  margin-top: -0.3rem;
}

h1 + h2,
h1 + h3,
h2 + h3 {
  margin-top: -0.3rem;
}

h1 {
  margin-top: 2rem;
  font-size: 2.6rem;
}

h2 {
  margin-top: 1.8rem;
  font-size: 2.4rem;
}

h3 {
  font-size: 2.2rem;
}

h4 {
  font-size: 2rem;
}

h5 {
  font-size: 1.8rem;
}

h6 {
  font-size: 1.6rem;
}

small {
  font-size: 75%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -.5em;
}

sub {
  bottom: -.25em;
}

ion-app,
ion-nav,
ion-tab,
ion-tabs,
.app-root {
  left: 0;
  top: 0;
  position: absolute;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
}

ion-nav,
ion-tab,
ion-tabs {
  overflow: hidden;
}

ion-tab {
  display: none;
}

ion-tab.show-tab {
  display: block;
}

ion-app,
ion-nav,
ion-tab,
ion-tabs,
.app-root,
.ion-page {
  contain: strict;
}

.ion-page {
  left: 0;
  top: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.ion-page.show-page {
  opacity: 1;
}

ion-header {
  left: 0;
  top: 0;
  position: absolute;
  z-index: 10;
  display: block;
  width: 100%;
}

ion-footer {
  left: 0;
  bottom: 0;
  position: absolute;
  z-index: 10;
  display: block;
  width: 100%;
}

[app-viewport],
[overlay-portal],
[nav-viewport],
[tab-portal],
.nav-decor {
  display: none;
}

[text-center] {
  text-align: center !important;
}

[text-justify] {
  text-align: justify !important;
}

[text-start] {
  text-align: left;
  text-align: start !important;
}

[text-end] {
  text-align: right;
  text-align: end !important;
}

[text-left] {
  text-align: left !important;
}

[text-right] {
  text-align: right !important;
}

[text-nowrap] {
  white-space: nowrap !important;
}

[text-wrap] {
  white-space: normal !important;
}

@media (min-width: 576px) {
  [text-sm-center] {
    text-align: center !important;
  }
  [text-sm-justify] {
    text-align: justify !important;
  }
  [text-sm-start] {
    text-align: left;
    text-align: start !important;
  }
  [text-sm-end] {
    text-align: right;
    text-align: end !important;
  }
  [text-sm-left] {
    text-align: left !important;
  }
  [text-sm-right] {
    text-align: right !important;
  }
  [text-sm-nowrap] {
    white-space: nowrap !important;
  }
  [text-sm-wrap] {
    white-space: normal !important;
  }
}

@media (min-width: 768px) {
  [text-md-center] {
    text-align: center !important;
  }
  [text-md-justify] {
    text-align: justify !important;
  }
  [text-md-start] {
    text-align: left;
    text-align: start !important;
  }
  [text-md-end] {
    text-align: right;
    text-align: end !important;
  }
  [text-md-left] {
    text-align: left !important;
  }
  [text-md-right] {
    text-align: right !important;
  }
  [text-md-nowrap] {
    white-space: nowrap !important;
  }
  [text-md-wrap] {
    white-space: normal !important;
  }
}

@media (min-width: 992px) {
  [text-lg-center] {
    text-align: center !important;
  }
  [text-lg-justify] {
    text-align: justify !important;
  }
  [text-lg-start] {
    text-align: left;
    text-align: start !important;
  }
  [text-lg-end] {
    text-align: right;
    text-align: end !important;
  }
  [text-lg-left] {
    text-align: left !important;
  }
  [text-lg-right] {
    text-align: right !important;
  }
  [text-lg-nowrap] {
    white-space: nowrap !important;
  }
  [text-lg-wrap] {
    white-space: normal !important;
  }
}

@media (min-width: 1200px) {
  [text-xl-center] {
    text-align: center !important;
  }
  [text-xl-justify] {
    text-align: justify !important;
  }
  [text-xl-start] {
    text-align: left;
    text-align: start !important;
  }
  [text-xl-end] {
    text-align: right;
    text-align: end !important;
  }
  [text-xl-left] {
    text-align: left !important;
  }
  [text-xl-right] {
    text-align: right !important;
  }
  [text-xl-nowrap] {
    white-space: nowrap !important;
  }
  [text-xl-wrap] {
    white-space: normal !important;
  }
}

[text-uppercase] {
  text-transform: uppercase !important;
}

[text-lowercase] {
  text-transform: lowercase !important;
}

[text-capitalize] {
  text-transform: capitalize !important;
}

@media (min-width: 576px) {
  [text-sm-uppercase] {
    text-transform: uppercase !important;
  }
  [text-sm-lowercase] {
    text-transform: lowercase !important;
  }
  [text-sm-capitalize] {
    text-transform: capitalize !important;
  }
}

@media (min-width: 768px) {
  [text-md-uppercase] {
    text-transform: uppercase !important;
  }
  [text-md-lowercase] {
    text-transform: lowercase !important;
  }
  [text-md-capitalize] {
    text-transform: capitalize !important;
  }
}

@media (min-width: 992px) {
  [text-lg-uppercase] {
    text-transform: uppercase !important;
  }
  [text-lg-lowercase] {
    text-transform: lowercase !important;
  }
  [text-lg-capitalize] {
    text-transform: capitalize !important;
  }
}

@media (min-width: 1200px) {
  [text-xl-uppercase] {
    text-transform: uppercase !important;
  }
  [text-xl-lowercase] {
    text-transform: lowercase !important;
  }
  [text-xl-capitalize] {
    text-transform: capitalize !important;
  }
}

[float-left] {
  float: left !important;
}

[float-right] {
  float: right !important;
}

[float-start] {
  float: left !important;
}

[float-end] {
  float: right !important;
}

@media (min-width: 576px) {
  [float-sm-left] {
    float: left !important;
  }
  [float-sm-right] {
    float: right !important;
  }
  [float-sm-start] {
    float: left !important;
  }
  [float-sm-end] {
    float: right !important;
  }
}

@media (min-width: 768px) {
  [float-md-left] {
    float: left !important;
  }
  [float-md-right] {
    float: right !important;
  }
  [float-md-start] {
    float: left !important;
  }
  [float-md-end] {
    float: right !important;
  }
}

@media (min-width: 992px) {
  [float-lg-left] {
    float: left !important;
  }
  [float-lg-right] {
    float: right !important;
  }
  [float-lg-start] {
    float: left !important;
  }
  [float-lg-end] {
    float: right !important;
  }
}

@media (min-width: 1200px) {
  [float-xl-left] {
    float: left !important;
  }
  [float-xl-right] {
    float: right !important;
  }
  [float-xl-start] {
    float: left !important;
  }
  [float-xl-end] {
    float: right !important;
  }
}

ion-app.ios {
  font-family: -apple-system, "Helvetica Neue", "Roboto", sans-serif;
  font-size: 1.4rem;
  background-color: #fff;
}

ion-app.md {
  font-family: "Roboto", "Helvetica Neue", sans-serif;
  font-size: 1.4rem;
  background-color: #fff;
}

ion-app.wp {
  font-family: "Segoe UI", "Noto Sans", sans-serif;
  font-size: 1.4rem;
  background-color: #fff;
}

ion-backdrop {
  left: 0;
  top: 0;
  position: absolute;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .01;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

ion-backdrop.backdrop-no-tappable {
  cursor: auto;
}

ion-badge {
  padding: 3px 8px;
  text-align: center;
  display: inline-block;
  min-width: 10px;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1;
  white-space: nowrap;
  vertical-align: baseline;
}

ion-badge:empty {
  display: none;
}

.badge-ios {
  border-radius: 10px;
  color: #fff;
  background-color: #327eff;
}

.badge-ios-primary {
  color: #fff;
  background-color: #327eff;
}

.badge-ios-secondary {
  color: #fff;
  background-color: #32db64;
}

.badge-ios-danger {
  color: #fff;
  background-color: #f53d3d;
}

.badge-ios-light {
  color: #000;
  background-color: #f4f4f4;
}

.badge-ios-dark {
  color: #fff;
  background-color: #222;
}

.badge-md {
  border-radius: 4px;
  color: #fff;
  background-color: #327eff;
}

.badge-md-primary {
  color: #fff;
  background-color: #327eff;
}

.badge-md-secondary {
  color: #fff;
  background-color: #32db64;
}

.badge-md-danger {
  color: #fff;
  background-color: #f53d3d;
}

.badge-md-light {
  color: #000;
  background-color: #f4f4f4;
}

.badge-md-dark {
  color: #fff;
  background-color: #222;
}

.badge-wp {
  border-radius: 0;
  color: #fff;
  background-color: #327eff;
}

.badge-wp-primary {
  color: #fff;
  background-color: #327eff;
}

.badge-wp-secondary {
  color: #fff;
  background-color: #32db64;
}

.badge-wp-danger {
  color: #fff;
  background-color: #f53d3d;
}

.badge-wp-light {
  color: #000;
  background-color: #f4f4f4;
}

.badge-wp-dark {
  color: #fff;
  background-color: #222;
}

.button {
  text-align: center;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  z-index: 0;
  display: inline-block;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
  cursor: pointer;
  vertical-align: top;
  vertical-align: -webkit-baseline-middle;
  -webkit-transition: background-color, opacity 100ms linear;
  transition: background-color, opacity 100ms linear;
  -webkit-font-kerning: none;
  font-kerning: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  contain: content;
}

.button-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

[ion-button] {
  text-decoration: none;
}

a[disabled],
button[disabled],
[ion-button][disabled] {
  cursor: default;
  opacity: .4;
  pointer-events: none;
}

.button-block {
  display: block;
  clear: both;
  width: 100%;
  contain: strict;
}

.button-block::after {
  clear: both;
}

.button-full {
  display: block;
  width: 100%;
  contain: strict;
}

.button-full.button-outline {
  border-radius: 0;
  border-right-width: 0;
  border-left-width: 0;
}

[icon-left] ion-icon,
[icon-start] ion-icon {
  font-size: 1.4em;
  line-height: .67;
  pointer-events: none;
  padding-right: 0.3em;
}

[icon-right] ion-icon,
[icon-end] ion-icon {
  font-size: 1.4em;
  line-height: .67;
  pointer-events: none;
  padding-left: 0.4em;
}

.button[icon-only] {
  padding: 0;
  min-width: .9em;
}

[icon-only] ion-icon {
  padding: 0 0.5em;
  font-size: 1.8em;
  line-height: .67;
  pointer-events: none;
}

.button-ios {
  border-radius: 4px;
  height: 2.8em;
  font-size: 1.6rem;
  color: #fff;
  background-color: #327eff;
  margin: 0.4rem 0.2rem;
  padding: 0 1em;
}

.button-ios.activated {
  background-color: #2e74eb;
  opacity: 1;
}

.button-ios:hover:not(.disable-hover) {
  opacity: 0.8;
}

.button-large-ios {
  height: 2.8em;
  font-size: 2rem;
  padding: 0 1em;
}

.button-small-ios {
  height: 2.1em;
  font-size: 1.3rem;
  padding: 0 0.9em;
}

.button-small-ios[icon-only] ion-icon {
  font-size: 1.3em;
}

.button-block-ios {
  margin-left: 0;
  margin-right: 0;
}

.button-full-ios {
  margin-left: 0;
  margin-right: 0;
  border-radius: 0;
  border-right-width: 0;
  border-left-width: 0;
}

.button-outline-ios {
  border-radius: 4px;
  border-width: 1px;
  border-style: solid;
  border-color: #327eff;
  color: #327eff;
  background-color: transparent;
}

.button-outline-ios.activated {
  color: #fff;
  background-color: #327eff;
  opacity: 1;
}

.button-clear-ios {
  border-color: transparent;
  color: #327eff;
  background-color: transparent;
}

.button-clear-ios.activated {
  background-color: transparent;
  opacity: 0.4;
}

.button-clear-ios:hover:not(.disable-hover) {
  color: #327eff;
  opacity: 0.6;
}

.button-round-ios {
  border-radius: 64px;
  padding: 0 2.6rem;
}

.button-ios-primary {
  color: #fff;
  background-color: #327eff;
}

.button-ios-primary.activated {
  background-color: #2e74eb;
}

.button-outline-ios-primary {
  border-color: #327eff;
  color: #327eff;
  background-color: transparent;
}

.button-outline-ios-primary.activated {
  color: #fff;
  background-color: #327eff;
}

.button-clear-ios-primary {
  border-color: transparent;
  color: #327eff;
  background-color: transparent;
}

.button-clear-ios-primary.activated {
  opacity: 0.4;
}

.button-clear-ios-primary:hover:not(.disable-hover) {
  color: #327eff;
}

.button-ios-secondary {
  color: #fff;
  background-color: #32db64;
}

.button-ios-secondary.activated {
  background-color: #2ec95c;
}

.button-outline-ios-secondary {
  border-color: #32db64;
  color: #32db64;
  background-color: transparent;
}

.button-outline-ios-secondary.activated {
  color: #fff;
  background-color: #32db64;
}

.button-clear-ios-secondary {
  border-color: transparent;
  color: #32db64;
  background-color: transparent;
}

.button-clear-ios-secondary.activated {
  opacity: 0.4;
}

.button-clear-ios-secondary:hover:not(.disable-hover) {
  color: #32db64;
}

.button-ios-danger {
  color: #fff;
  background-color: #f53d3d;
}

.button-ios-danger.activated {
  background-color: #e13838;
}

.button-outline-ios-danger {
  border-color: #f53d3d;
  color: #f53d3d;
  background-color: transparent;
}

.button-outline-ios-danger.activated {
  color: #fff;
  background-color: #f53d3d;
}

.button-clear-ios-danger {
  border-color: transparent;
  color: #f53d3d;
  background-color: transparent;
}

.button-clear-ios-danger.activated {
  opacity: 0.4;
}

.button-clear-ios-danger:hover:not(.disable-hover) {
  color: #f53d3d;
}

.button-ios-light {
  color: #000;
  background-color: #f4f4f4;
}

.button-ios-light.activated {
  background-color: #e0e0e0;
}

.button-outline-ios-light {
  border-color: #f4f4f4;
  color: #f4f4f4;
  background-color: transparent;
}

.button-outline-ios-light.activated {
  color: #000;
  background-color: #f4f4f4;
}

.button-clear-ios-light {
  border-color: transparent;
  color: #f4f4f4;
  background-color: transparent;
}

.button-clear-ios-light.activated {
  opacity: 0.4;
}

.button-clear-ios-light:hover:not(.disable-hover) {
  color: #f4f4f4;
}

.button-ios-dark {
  color: #fff;
  background-color: #222;
}

.button-ios-dark.activated {
  background-color: #343434;
}

.button-outline-ios-dark {
  border-color: #222;
  color: #222;
  background-color: transparent;
}

.button-outline-ios-dark.activated {
  color: #fff;
  background-color: #222;
}

.button-clear-ios-dark {
  border-color: transparent;
  color: #222;
  background-color: transparent;
}

.button-clear-ios-dark.activated {
  opacity: 0.4;
}

.button-clear-ios-dark:hover:not(.disable-hover) {
  color: #222;
}

.button-strong-ios {
  font-weight: 600;
}

.button-md {
  border-radius: 2px;
  overflow: hidden;
  height: 3.6rem;
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  background-color: #327eff;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  -webkit-transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0.4rem 0.2rem;
  padding: 0 1.1em;
}

.button-md:hover:not(.disable-hover) {
  background-color: #327eff;
}

.button-md.activated {
  background-color: #2e74eb;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.14), 0 3px 5px rgba(0, 0, 0, 0.21), 0 0 0 0 transparent;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.14), 0 3px 5px rgba(0, 0, 0, 0.21), 0 0 0 0 transparent;
}

.button-md .button-effect {
  background-color: #fff;
}

.button-large-md {
  height: 2.8em;
  font-size: 2rem;
  padding: 0 1em;
}

.button-small-md {
  height: 2.1em;
  font-size: 1.3rem;
  padding: 0 0.9em;
}

.button-small-md[icon-only] ion-icon {
  font-size: 1.4em;
}

.button-block-md {
  margin-left: 0;
  margin-right: 0;
}

.button-full-md {
  margin-left: 0;
  margin-right: 0;
  border-radius: 0;
  border-right-width: 0;
  border-left-width: 0;
}

.button-outline-md {
  border-width: 1px;
  border-style: solid;
  border-color: #327eff;
  color: #327eff;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.button-outline-md:hover:not(.disable-hover) {
  background-color: rgba(158, 158, 158, 0.1);
}

.button-outline-md.activated {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 1;
}

.button-outline-md .button-effect {
  background-color: #327eff;
}

.button-clear-md {
  border-color: transparent;
  color: #327eff;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 1;
}

.button-clear-md.activated {
  background-color: rgba(158, 158, 158, 0.2);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.button-clear-md:hover:not(.disable-hover) {
  background-color: rgba(158, 158, 158, 0.1);
}

.button-clear-md .button-effect {
  background-color: #999;
}

.button-round-md {
  border-radius: 64px;
  padding: 0 2.6rem;
}

.button-md [icon-only] {
  padding: 0;
}

.button-effect {
  border-radius: 50%;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  position: absolute;
  z-index: 0;
  display: none;
  background-color: #555;
  opacity: .2;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  pointer-events: none;
  top: 0;
  left: 0;
}

.md button .button-effect {
  display: block;
}

.button-md-primary {
  color: #fff;
  background-color: #327eff;
}

.button-md-primary:hover:not(.disable-hover) {
  background-color: #327eff;
}

.button-md-primary.activated {
  background-color: #2e74eb;
  opacity: 1;
}

.button-md-primary .button-effect {
  background-color: #fff;
}

.button-outline-md-primary {
  border-color: #3078f2;
  color: #3078f2;
  background-color: transparent;
}

.button-outline-md-primary:hover:not(.disable-hover) {
  background-color: rgba(158, 158, 158, 0.1);
}

.button-outline-md-primary.activated {
  background-color: transparent;
}

.button-outline-md-primary .button-effect {
  background-color: #3078f2;
}

.button-clear-md-primary {
  border-color: transparent;
  color: #327eff;
  background-color: transparent;
}

.button-clear-md-primary.activated {
  background-color: rgba(158, 158, 158, 0.2);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.button-clear-md-primary:hover:not(.disable-hover) {
  color: #327eff;
}

.button-md-secondary {
  color: #fff;
  background-color: #32db64;
}

.button-md-secondary:hover:not(.disable-hover) {
  background-color: #32db64;
}

.button-md-secondary.activated {
  background-color: #2ec95c;
  opacity: 1;
}

.button-md-secondary .button-effect {
  background-color: #fff;
}

.button-outline-md-secondary {
  border-color: #30d05f;
  color: #30d05f;
  background-color: transparent;
}

.button-outline-md-secondary:hover:not(.disable-hover) {
  background-color: rgba(158, 158, 158, 0.1);
}

.button-outline-md-secondary.activated {
  background-color: transparent;
}

.button-outline-md-secondary .button-effect {
  background-color: #30d05f;
}

.button-clear-md-secondary {
  border-color: transparent;
  color: #32db64;
  background-color: transparent;
}

.button-clear-md-secondary.activated {
  background-color: rgba(158, 158, 158, 0.2);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.button-clear-md-secondary:hover:not(.disable-hover) {
  color: #32db64;
}

.button-md-danger {
  color: #fff;
  background-color: #f53d3d;
}

.button-md-danger:hover:not(.disable-hover) {
  background-color: #f53d3d;
}

.button-md-danger.activated {
  background-color: #e13838;
  opacity: 1;
}

.button-md-danger .button-effect {
  background-color: #fff;
}

.button-outline-md-danger {
  border-color: #e93a3a;
  color: #e93a3a;
  background-color: transparent;
}

.button-outline-md-danger:hover:not(.disable-hover) {
  background-color: rgba(158, 158, 158, 0.1);
}

.button-outline-md-danger.activated {
  background-color: transparent;
}

.button-outline-md-danger .button-effect {
  background-color: #e93a3a;
}

.button-clear-md-danger {
  border-color: transparent;
  color: #f53d3d;
  background-color: transparent;
}

.button-clear-md-danger.activated {
  background-color: rgba(158, 158, 158, 0.2);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.button-clear-md-danger:hover:not(.disable-hover) {
  color: #f53d3d;
}

.button-md-light {
  color: #000;
  background-color: #f4f4f4;
}

.button-md-light:hover:not(.disable-hover) {
  background-color: #f4f4f4;
}

.button-md-light.activated {
  background-color: #e0e0e0;
  opacity: 1;
}

.button-md-light .button-effect {
  background-color: #000;
}

.button-outline-md-light {
  border-color: #e8e8e8;
  color: #e8e8e8;
  background-color: transparent;
}

.button-outline-md-light:hover:not(.disable-hover) {
  background-color: rgba(158, 158, 158, 0.1);
}

.button-outline-md-light.activated {
  background-color: transparent;
}

.button-outline-md-light .button-effect {
  background-color: #e8e8e8;
}

.button-clear-md-light {
  border-color: transparent;
  color: #f4f4f4;
  background-color: transparent;
}

.button-clear-md-light.activated {
  background-color: rgba(158, 158, 158, 0.2);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.button-clear-md-light:hover:not(.disable-hover) {
  color: #f4f4f4;
}

.button-md-dark {
  color: #fff;
  background-color: #222;
}

.button-md-dark:hover:not(.disable-hover) {
  background-color: #222;
}

.button-md-dark.activated {
  background-color: #343434;
  opacity: 1;
}

.button-md-dark .button-effect {
  background-color: #fff;
}

.button-outline-md-dark {
  border-color: #2d2d2d;
  color: #2d2d2d;
  background-color: transparent;
}

.button-outline-md-dark:hover:not(.disable-hover) {
  background-color: rgba(158, 158, 158, 0.1);
}

.button-outline-md-dark.activated {
  background-color: transparent;
}

.button-outline-md-dark .button-effect {
  background-color: #2d2d2d;
}

.button-clear-md-dark {
  border-color: transparent;
  color: #222;
  background-color: transparent;
}

.button-clear-md-dark.activated {
  background-color: rgba(158, 158, 158, 0.2);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.button-clear-md-dark:hover:not(.disable-hover) {
  color: #222;
}

.button-strong-md {
  font-weight: bold;
}

.button-wp {
  border-radius: 0;
  height: 3.6rem;
  border: 3px solid transparent;
  font-size: 1.4rem;
  color: #fff;
  background-color: #327eff;
  margin: 0.4rem 0.2rem;
  padding: 0 1.1em;
}

.button-wp:hover:not(.disable-hover) {
  border-color: #2e74eb;
  background-color: #327eff;
}

.button-wp.activated {
  background-color: #2e74eb;
}

.button-large-wp {
  height: 2.8em;
  font-size: 2rem;
  padding: 0 1em;
}

.button-small-wp {
  height: 2.1em;
  font-size: 1.3rem;
  padding: 0 0.9em;
}

.button-small-wp[icon-only] ion-icon {
  font-size: 1.4em;
}

.button-block-wp {
  margin-left: 0;
  margin-right: 0;
}

.button-full-wp {
  margin-left: 0;
  margin-right: 0;
  border-radius: 0;
  border-right-width: 0;
  border-left-width: 0;
}

.button-outline-wp {
  border-width: 1px;
  border-style: solid;
  border-color: #327eff;
  color: #327eff;
  background-color: transparent;
}

.button-outline-wp:hover:not(.disable-hover) {
  background-color: rgba(158, 158, 158, 0.1);
}

.button-outline-wp.activated {
  background-color: rgba(50, 126, 255, 0.16);
}

.button-clear-wp {
  color: #327eff;
  background-color: transparent;
}

.button-clear-wp.activated {
  background-color: rgba(158, 158, 158, 0.2);
}

.button-clear-wp:hover:not(.disable-hover) {
  background-color: rgba(158, 158, 158, 0.1);
}

.button-round-wp {
  border-radius: 64px;
  padding: 0 2.6rem;
}

.button-wp [icon-only] {
  padding: 0;
}

.button-wp-primary {
  color: #fff;
  background-color: #327eff;
}

.button-wp-primary:hover:not(.disable-hover) {
  border-color: #2e74eb;
  background-color: #327eff;
}

.button-wp-primary.activated {
  background-color: #2e74eb;
}

.button-outline-wp-primary {
  border-color: #3078f2;
  color: #3078f2;
  background-color: transparent;
}

.button-outline-wp-primary:hover:not(.disable-hover) {
  border-color: #3078f2;
  background-color: rgba(158, 158, 158, 0.1);
}

.button-outline-wp-primary.activated {
  background-color: rgba(48, 120, 242, 0.16);
}

.button-clear-wp-primary {
  color: #327eff;
  background-color: transparent;
}

.button-clear-wp-primary.activated {
  background-color: rgba(158, 158, 158, 0.2);
}

.button-clear-wp-primary:hover:not(.disable-hover) {
  color: #327eff;
}

.button-wp-secondary {
  color: #fff;
  background-color: #32db64;
}

.button-wp-secondary:hover:not(.disable-hover) {
  border-color: #2ec95c;
  background-color: #32db64;
}

.button-wp-secondary.activated {
  background-color: #2ec95c;
}

.button-outline-wp-secondary {
  border-color: #30d05f;
  color: #30d05f;
  background-color: transparent;
}

.button-outline-wp-secondary:hover:not(.disable-hover) {
  border-color: #30d05f;
  background-color: rgba(158, 158, 158, 0.1);
}

.button-outline-wp-secondary.activated {
  background-color: rgba(48, 208, 95, 0.16);
}

.button-clear-wp-secondary {
  color: #32db64;
  background-color: transparent;
}

.button-clear-wp-secondary.activated {
  background-color: rgba(158, 158, 158, 0.2);
}

.button-clear-wp-secondary:hover:not(.disable-hover) {
  color: #32db64;
}

.button-wp-danger {
  color: #fff;
  background-color: #f53d3d;
}

.button-wp-danger:hover:not(.disable-hover) {
  border-color: #e13838;
  background-color: #f53d3d;
}

.button-wp-danger.activated {
  background-color: #e13838;
}

.button-outline-wp-danger {
  border-color: #e93a3a;
  color: #e93a3a;
  background-color: transparent;
}

.button-outline-wp-danger:hover:not(.disable-hover) {
  border-color: #e93a3a;
  background-color: rgba(158, 158, 158, 0.1);
}

.button-outline-wp-danger.activated {
  background-color: rgba(233, 58, 58, 0.16);
}

.button-clear-wp-danger {
  color: #f53d3d;
  background-color: transparent;
}

.button-clear-wp-danger.activated {
  background-color: rgba(158, 158, 158, 0.2);
}

.button-clear-wp-danger:hover:not(.disable-hover) {
  color: #f53d3d;
}

.button-wp-light {
  color: #000;
  background-color: #f4f4f4;
}

.button-wp-light:hover:not(.disable-hover) {
  border-color: #e0e0e0;
  background-color: #f4f4f4;
}

.button-wp-light.activated {
  background-color: #e0e0e0;
}

.button-outline-wp-light {
  border-color: #e8e8e8;
  color: #e8e8e8;
  background-color: transparent;
}

.button-outline-wp-light:hover:not(.disable-hover) {
  border-color: #e8e8e8;
  background-color: rgba(158, 158, 158, 0.1);
}

.button-outline-wp-light.activated {
  background-color: rgba(232, 232, 232, 0.16);
}

.button-clear-wp-light {
  color: #f4f4f4;
  background-color: transparent;
}

.button-clear-wp-light.activated {
  background-color: rgba(158, 158, 158, 0.2);
}

.button-clear-wp-light:hover:not(.disable-hover) {
  color: #f4f4f4;
}

.button-wp-dark {
  color: #fff;
  background-color: #222;
}

.button-wp-dark:hover:not(.disable-hover) {
  border-color: #343434;
  background-color: #222;
}

.button-wp-dark.activated {
  background-color: #343434;
}

.button-outline-wp-dark {
  border-color: #2d2d2d;
  color: #2d2d2d;
  background-color: transparent;
}

.button-outline-wp-dark:hover:not(.disable-hover) {
  border-color: #2d2d2d;
  background-color: rgba(158, 158, 158, 0.1);
}

.button-outline-wp-dark.activated {
  background-color: rgba(45, 45, 45, 0.16);
}

.button-clear-wp-dark {
  color: #222;
  background-color: transparent;
}

.button-clear-wp-dark.activated {
  background-color: rgba(158, 158, 158, 0.2);
}

.button-clear-wp-dark:hover:not(.disable-hover) {
  color: #222;
}

.button-strong-wp {
  font-weight: bold;
}

ion-card {
  display: block;
  overflow: hidden;
}

ion-card img {
  display: block;
  width: 100%;
}

ion-card-header {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

ion-card-content {
  display: block;
}

.card-ios {
  margin: 12px;
  border-radius: 2px;
  width: calc(100% - 24px);
  font-size: 1.4rem;
  background: #fff;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.card-ios ion-list {
  margin-bottom: 0;
}

.card-ios > .item:last-child,
.card-ios > .item:last-child .item-inner,
.card-ios > .item-wrapper:last-child .item {
  border-bottom: 0;
}

.card-ios .item-ios.item-block .item-inner {
  border: 0;
}

.card-content-ios {
  padding: 13px 16px 14px;
  font-size: 1.4rem;
  line-height: 1.4;
}

.card-header-ios {
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
  padding: 16px;
}

.card-header-ios + .card-content-ios,
.card-ios .item + .card-content-ios {
  padding-top: 0;
}

.card .note-ios {
  font-size: 1.3rem;
}

.card-title-ios {
  display: block;
  font-size: 1.8rem;
  line-height: 1.2;
  color: #222;
  margin: 2px 0;
  padding: 8px 0;
}

.card-ios h1 {
  margin: 0 0 2px;
  font-size: 2.4rem;
  font-weight: normal;
}

.card-ios h2 {
  margin: 2px 0;
  font-size: 1.6rem;
  font-weight: normal;
}

.card-ios h3,
.card-ios h4,
.card-ios h5,
.card-ios h6 {
  margin: 2px 0;
  font-size: 1.4rem;
  font-weight: normal;
}

.card-ios p {
  margin: 0 0 2px;
  font-size: 1.4rem;
  color: #666;
}

.card-ios + ion-card {
  margin-top: 0;
}

.card-ios .text-ios-primary {
  color: #327eff;
}

.card-ios-primary {
  color: #fff;
  background-color: #327eff;
}

.card-ios-primary .card-header-ios,
.card-ios-primary .card-title-ios,
.card-ios-primary .card-content-ios,
.card-ios-primary p {
  color: #fff;
}

.card-ios-primary .text-ios-primary,
.card-ios-primary .card-header-ios-primary,
.card-ios-primary .card-title-ios-primary,
.card-ios-primary .card-content-ios-primary {
  color: #327eff;
}

.card-ios-primary .text-ios-secondary,
.card-ios-primary .card-header-ios-secondary,
.card-ios-primary .card-title-ios-secondary,
.card-ios-primary .card-content-ios-secondary {
  color: #32db64;
}

.card-ios-primary .text-ios-danger,
.card-ios-primary .card-header-ios-danger,
.card-ios-primary .card-title-ios-danger,
.card-ios-primary .card-content-ios-danger {
  color: #f53d3d;
}

.card-ios-primary .text-ios-light,
.card-ios-primary .card-header-ios-light,
.card-ios-primary .card-title-ios-light,
.card-ios-primary .card-content-ios-light {
  color: #f4f4f4;
}

.card-ios-primary .text-ios-dark,
.card-ios-primary .card-header-ios-dark,
.card-ios-primary .card-title-ios-dark,
.card-ios-primary .card-content-ios-dark {
  color: #222;
}

.card-header-ios-primary,
.card-title-ios-primary,
.card-content-ios-primary {
  color: #327eff;
}

.card-ios .text-ios-secondary {
  color: #32db64;
}

.card-ios-secondary {
  color: #fff;
  background-color: #32db64;
}

.card-ios-secondary .card-header-ios,
.card-ios-secondary .card-title-ios,
.card-ios-secondary .card-content-ios,
.card-ios-secondary p {
  color: #fff;
}

.card-ios-secondary .text-ios-primary,
.card-ios-secondary .card-header-ios-primary,
.card-ios-secondary .card-title-ios-primary,
.card-ios-secondary .card-content-ios-primary {
  color: #327eff;
}

.card-ios-secondary .text-ios-secondary,
.card-ios-secondary .card-header-ios-secondary,
.card-ios-secondary .card-title-ios-secondary,
.card-ios-secondary .card-content-ios-secondary {
  color: #32db64;
}

.card-ios-secondary .text-ios-danger,
.card-ios-secondary .card-header-ios-danger,
.card-ios-secondary .card-title-ios-danger,
.card-ios-secondary .card-content-ios-danger {
  color: #f53d3d;
}

.card-ios-secondary .text-ios-light,
.card-ios-secondary .card-header-ios-light,
.card-ios-secondary .card-title-ios-light,
.card-ios-secondary .card-content-ios-light {
  color: #f4f4f4;
}

.card-ios-secondary .text-ios-dark,
.card-ios-secondary .card-header-ios-dark,
.card-ios-secondary .card-title-ios-dark,
.card-ios-secondary .card-content-ios-dark {
  color: #222;
}

.card-header-ios-secondary,
.card-title-ios-secondary,
.card-content-ios-secondary {
  color: #32db64;
}

.card-ios .text-ios-danger {
  color: #f53d3d;
}

.card-ios-danger {
  color: #fff;
  background-color: #f53d3d;
}

.card-ios-danger .card-header-ios,
.card-ios-danger .card-title-ios,
.card-ios-danger .card-content-ios,
.card-ios-danger p {
  color: #fff;
}

.card-ios-danger .text-ios-primary,
.card-ios-danger .card-header-ios-primary,
.card-ios-danger .card-title-ios-primary,
.card-ios-danger .card-content-ios-primary {
  color: #327eff;
}

.card-ios-danger .text-ios-secondary,
.card-ios-danger .card-header-ios-secondary,
.card-ios-danger .card-title-ios-secondary,
.card-ios-danger .card-content-ios-secondary {
  color: #32db64;
}

.card-ios-danger .text-ios-danger,
.card-ios-danger .card-header-ios-danger,
.card-ios-danger .card-title-ios-danger,
.card-ios-danger .card-content-ios-danger {
  color: #f53d3d;
}

.card-ios-danger .text-ios-light,
.card-ios-danger .card-header-ios-light,
.card-ios-danger .card-title-ios-light,
.card-ios-danger .card-content-ios-light {
  color: #f4f4f4;
}

.card-ios-danger .text-ios-dark,
.card-ios-danger .card-header-ios-dark,
.card-ios-danger .card-title-ios-dark,
.card-ios-danger .card-content-ios-dark {
  color: #222;
}

.card-header-ios-danger,
.card-title-ios-danger,
.card-content-ios-danger {
  color: #f53d3d;
}

.card-ios .text-ios-light {
  color: #f4f4f4;
}

.card-ios-light {
  color: #000;
  background-color: #f4f4f4;
}

.card-ios-light .card-header-ios,
.card-ios-light .card-title-ios,
.card-ios-light .card-content-ios,
.card-ios-light p {
  color: #000;
}

.card-ios-light .text-ios-primary,
.card-ios-light .card-header-ios-primary,
.card-ios-light .card-title-ios-primary,
.card-ios-light .card-content-ios-primary {
  color: #327eff;
}

.card-ios-light .text-ios-secondary,
.card-ios-light .card-header-ios-secondary,
.card-ios-light .card-title-ios-secondary,
.card-ios-light .card-content-ios-secondary {
  color: #32db64;
}

.card-ios-light .text-ios-danger,
.card-ios-light .card-header-ios-danger,
.card-ios-light .card-title-ios-danger,
.card-ios-light .card-content-ios-danger {
  color: #f53d3d;
}

.card-ios-light .text-ios-light,
.card-ios-light .card-header-ios-light,
.card-ios-light .card-title-ios-light,
.card-ios-light .card-content-ios-light {
  color: #f4f4f4;
}

.card-ios-light .text-ios-dark,
.card-ios-light .card-header-ios-dark,
.card-ios-light .card-title-ios-dark,
.card-ios-light .card-content-ios-dark {
  color: #222;
}

.card-header-ios-light,
.card-title-ios-light,
.card-content-ios-light {
  color: #f4f4f4;
}

.card-ios .text-ios-dark {
  color: #222;
}

.card-ios-dark {
  color: #fff;
  background-color: #222;
}

.card-ios-dark .card-header-ios,
.card-ios-dark .card-title-ios,
.card-ios-dark .card-content-ios,
.card-ios-dark p {
  color: #fff;
}

.card-ios-dark .text-ios-primary,
.card-ios-dark .card-header-ios-primary,
.card-ios-dark .card-title-ios-primary,
.card-ios-dark .card-content-ios-primary {
  color: #327eff;
}

.card-ios-dark .text-ios-secondary,
.card-ios-dark .card-header-ios-secondary,
.card-ios-dark .card-title-ios-secondary,
.card-ios-dark .card-content-ios-secondary {
  color: #32db64;
}

.card-ios-dark .text-ios-danger,
.card-ios-dark .card-header-ios-danger,
.card-ios-dark .card-title-ios-danger,
.card-ios-dark .card-content-ios-danger {
  color: #f53d3d;
}

.card-ios-dark .text-ios-light,
.card-ios-dark .card-header-ios-light,
.card-ios-dark .card-title-ios-light,
.card-ios-dark .card-content-ios-light {
  color: #f4f4f4;
}

.card-ios-dark .text-ios-dark,
.card-ios-dark .card-header-ios-dark,
.card-ios-dark .card-title-ios-dark,
.card-ios-dark .card-content-ios-dark {
  color: #222;
}

.card-header-ios-dark,
.card-title-ios-dark,
.card-content-ios-dark {
  color: #222;
}

.card-md {
  margin: 10px;
  border-radius: 2px;
  width: calc(100% - 20px);
  font-size: 1.4rem;
  background: #fff;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.card-md ion-list {
  margin-bottom: 0;
}

.card-md > .item:last-child,
.card-md > .item:last-child .item-inner,
.card-md > .item-wrapper:last-child .item {
  border-bottom: 0;
}

.card-md .item-md.item-block .item-inner {
  border: 0;
}

.card-content-md {
  padding: 13px 16px;
  font-size: 1.4rem;
  line-height: 1.5;
}

.card-header-md {
  font-size: 1.6rem;
  color: #222;
  padding: 16px;
}

.card-header-md + .card-content-md,
.card-md .item + .card-content-md {
  padding-top: 0;
}

.card .note-md {
  font-size: 1.3rem;
}

.card-title-md {
  display: block;
  font-size: 2.4rem;
  line-height: 1.2;
  color: #222;
  margin: 2px 0;
  padding: 8px 0;
}

.card-md h1 {
  margin: 0 0 2px;
  font-size: 2.4rem;
  font-weight: normal;
  color: #222;
}

.card-md h2 {
  margin: 2px 0;
  font-size: 1.6rem;
  font-weight: normal;
  color: #222;
}

.card-md h3,
.card-md h4,
.card-md h5,
.card-md h6 {
  margin: 2px 0;
  font-size: 1.4rem;
  font-weight: normal;
  color: #222;
}

.card-md p {
  margin: 0 0 2px;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.5;
  color: #222;
}

.card-md + ion-card {
  margin-top: 0;
}

.card-md .text-md-primary {
  color: #327eff;
}

.card-md-primary {
  color: #fff;
  background-color: #327eff;
}

.card-md-primary .card-header-md,
.card-md-primary .card-title-md,
.card-md-primary .card-content-md,
.card-md-primary h1,
.card-md-primary h2,
.card-md-primary h3,
.card-md-primary h4,
.card-md-primary h5,
.card-md-primary h6,
.card-md-primary p {
  color: #fff;
}

.card-md-primary .text-md-primary,
.card-md-primary .card-header-md-primary,
.card-md-primary .card-title-md-primary,
.card-md-primary .card-content-md-primary {
  color: #327eff;
}

.card-md-primary .text-md-secondary,
.card-md-primary .card-header-md-secondary,
.card-md-primary .card-title-md-secondary,
.card-md-primary .card-content-md-secondary {
  color: #32db64;
}

.card-md-primary .text-md-danger,
.card-md-primary .card-header-md-danger,
.card-md-primary .card-title-md-danger,
.card-md-primary .card-content-md-danger {
  color: #f53d3d;
}

.card-md-primary .text-md-light,
.card-md-primary .card-header-md-light,
.card-md-primary .card-title-md-light,
.card-md-primary .card-content-md-light {
  color: #f4f4f4;
}

.card-md-primary .text-md-dark,
.card-md-primary .card-header-md-dark,
.card-md-primary .card-title-md-dark,
.card-md-primary .card-content-md-dark {
  color: #222;
}

.card-header-md-primary,
.card-title-md-primary,
.card-content-md-primary {
  color: #327eff;
}

.card-md .text-md-secondary {
  color: #32db64;
}

.card-md-secondary {
  color: #fff;
  background-color: #32db64;
}

.card-md-secondary .card-header-md,
.card-md-secondary .card-title-md,
.card-md-secondary .card-content-md,
.card-md-secondary h1,
.card-md-secondary h2,
.card-md-secondary h3,
.card-md-secondary h4,
.card-md-secondary h5,
.card-md-secondary h6,
.card-md-secondary p {
  color: #fff;
}

.card-md-secondary .text-md-primary,
.card-md-secondary .card-header-md-primary,
.card-md-secondary .card-title-md-primary,
.card-md-secondary .card-content-md-primary {
  color: #327eff;
}

.card-md-secondary .text-md-secondary,
.card-md-secondary .card-header-md-secondary,
.card-md-secondary .card-title-md-secondary,
.card-md-secondary .card-content-md-secondary {
  color: #32db64;
}

.card-md-secondary .text-md-danger,
.card-md-secondary .card-header-md-danger,
.card-md-secondary .card-title-md-danger,
.card-md-secondary .card-content-md-danger {
  color: #f53d3d;
}

.card-md-secondary .text-md-light,
.card-md-secondary .card-header-md-light,
.card-md-secondary .card-title-md-light,
.card-md-secondary .card-content-md-light {
  color: #f4f4f4;
}

.card-md-secondary .text-md-dark,
.card-md-secondary .card-header-md-dark,
.card-md-secondary .card-title-md-dark,
.card-md-secondary .card-content-md-dark {
  color: #222;
}

.card-header-md-secondary,
.card-title-md-secondary,
.card-content-md-secondary {
  color: #32db64;
}

.card-md .text-md-danger {
  color: #f53d3d;
}

.card-md-danger {
  color: #fff;
  background-color: #f53d3d;
}

.card-md-danger .card-header-md,
.card-md-danger .card-title-md,
.card-md-danger .card-content-md,
.card-md-danger h1,
.card-md-danger h2,
.card-md-danger h3,
.card-md-danger h4,
.card-md-danger h5,
.card-md-danger h6,
.card-md-danger p {
  color: #fff;
}

.card-md-danger .text-md-primary,
.card-md-danger .card-header-md-primary,
.card-md-danger .card-title-md-primary,
.card-md-danger .card-content-md-primary {
  color: #327eff;
}

.card-md-danger .text-md-secondary,
.card-md-danger .card-header-md-secondary,
.card-md-danger .card-title-md-secondary,
.card-md-danger .card-content-md-secondary {
  color: #32db64;
}

.card-md-danger .text-md-danger,
.card-md-danger .card-header-md-danger,
.card-md-danger .card-title-md-danger,
.card-md-danger .card-content-md-danger {
  color: #f53d3d;
}

.card-md-danger .text-md-light,
.card-md-danger .card-header-md-light,
.card-md-danger .card-title-md-light,
.card-md-danger .card-content-md-light {
  color: #f4f4f4;
}

.card-md-danger .text-md-dark,
.card-md-danger .card-header-md-dark,
.card-md-danger .card-title-md-dark,
.card-md-danger .card-content-md-dark {
  color: #222;
}

.card-header-md-danger,
.card-title-md-danger,
.card-content-md-danger {
  color: #f53d3d;
}

.card-md .text-md-light {
  color: #f4f4f4;
}

.card-md-light {
  color: #000;
  background-color: #f4f4f4;
}

.card-md-light .card-header-md,
.card-md-light .card-title-md,
.card-md-light .card-content-md,
.card-md-light h1,
.card-md-light h2,
.card-md-light h3,
.card-md-light h4,
.card-md-light h5,
.card-md-light h6,
.card-md-light p {
  color: #000;
}

.card-md-light .text-md-primary,
.card-md-light .card-header-md-primary,
.card-md-light .card-title-md-primary,
.card-md-light .card-content-md-primary {
  color: #327eff;
}

.card-md-light .text-md-secondary,
.card-md-light .card-header-md-secondary,
.card-md-light .card-title-md-secondary,
.card-md-light .card-content-md-secondary {
  color: #32db64;
}

.card-md-light .text-md-danger,
.card-md-light .card-header-md-danger,
.card-md-light .card-title-md-danger,
.card-md-light .card-content-md-danger {
  color: #f53d3d;
}

.card-md-light .text-md-light,
.card-md-light .card-header-md-light,
.card-md-light .card-title-md-light,
.card-md-light .card-content-md-light {
  color: #f4f4f4;
}

.card-md-light .text-md-dark,
.card-md-light .card-header-md-dark,
.card-md-light .card-title-md-dark,
.card-md-light .card-content-md-dark {
  color: #222;
}

.card-header-md-light,
.card-title-md-light,
.card-content-md-light {
  color: #f4f4f4;
}

.card-md .text-md-dark {
  color: #222;
}

.card-md-dark {
  color: #fff;
  background-color: #222;
}

.card-md-dark .card-header-md,
.card-md-dark .card-title-md,
.card-md-dark .card-content-md,
.card-md-dark h1,
.card-md-dark h2,
.card-md-dark h3,
.card-md-dark h4,
.card-md-dark h5,
.card-md-dark h6,
.card-md-dark p {
  color: #fff;
}

.card-md-dark .text-md-primary,
.card-md-dark .card-header-md-primary,
.card-md-dark .card-title-md-primary,
.card-md-dark .card-content-md-primary {
  color: #327eff;
}

.card-md-dark .text-md-secondary,
.card-md-dark .card-header-md-secondary,
.card-md-dark .card-title-md-secondary,
.card-md-dark .card-content-md-secondary {
  color: #32db64;
}

.card-md-dark .text-md-danger,
.card-md-dark .card-header-md-danger,
.card-md-dark .card-title-md-danger,
.card-md-dark .card-content-md-danger {
  color: #f53d3d;
}

.card-md-dark .text-md-light,
.card-md-dark .card-header-md-light,
.card-md-dark .card-title-md-light,
.card-md-dark .card-content-md-light {
  color: #f4f4f4;
}

.card-md-dark .text-md-dark,
.card-md-dark .card-header-md-dark,
.card-md-dark .card-title-md-dark,
.card-md-dark .card-content-md-dark {
  color: #222;
}

.card-header-md-dark,
.card-title-md-dark,
.card-content-md-dark {
  color: #222;
}

.card-wp {
  margin: 8px;
  border-radius: 1px;
  width: calc(100% - 16px);
  font-size: 1.4rem;
  background: #fff;
  -webkit-box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.card-wp ion-list {
  margin-bottom: 0;
}

.card-wp > .item:last-child,
.card-wp > .item:last-child .item-inner,
.card-wp > .item-wrapper:last-child .item {
  border-bottom: 0;
}

.card-wp .item-wp.item-block .item-inner {
  border: 0;
}

.card-content-wp {
  padding: 13px 16px;
  font-size: 1.4rem;
  line-height: 1.5;
}

.card-header-wp {
  font-size: 1.6rem;
  color: #222;
  padding: 16px;
}

.card-header-wp + .card-content-wp,
.card-wp .item + .card-content-wp {
  padding-top: 0;
}

.card .note-wp {
  font-size: 1.3rem;
}

.card-title-wp {
  display: block;
  font-size: 2.4rem;
  line-height: 1.2;
  color: #222;
  margin: 2px 0;
  padding: 8px 0;
}

.card-wp h1 {
  margin: 0 0 2px;
  font-size: 2.4rem;
  font-weight: normal;
  color: #222;
}

.card-wp h2 {
  margin: 2px 0;
  font-size: 1.6rem;
  font-weight: normal;
  color: #222;
}

.card-wp h3,
.card-wp h4,
.card-wp h5,
.card-wp h6 {
  margin: 2px 0;
  font-size: 1.4rem;
  font-weight: normal;
  color: #222;
}

.card-wp p {
  margin: 0 0 2px;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.5;
  color: #222;
}

.card-wp + ion-card {
  margin-top: 0;
}

.card-wp .text-wp-primary {
  color: #327eff;
}

.card-wp-primary {
  color: #fff;
  background-color: #327eff;
}

.card-wp-primary .card-header-wp,
.card-wp-primary .card-title-wp,
.card-wp-primary .card-content-wp,
.card-wp-primary h1,
.card-wp-primary h2,
.card-wp-primary h3,
.card-wp-primary h4,
.card-wp-primary h5,
.card-wp-primary h6,
.card-wp-primary p {
  color: #fff;
}

.card-wp-primary .text-wp-primary,
.card-wp-primary .card-header-wp-primary,
.card-wp-primary .card-title-wp-primary,
.card-wp-primary .card-content-wp-primary {
  color: #327eff;
}

.card-wp-primary .text-wp-secondary,
.card-wp-primary .card-header-wp-secondary,
.card-wp-primary .card-title-wp-secondary,
.card-wp-primary .card-content-wp-secondary {
  color: #32db64;
}

.card-wp-primary .text-wp-danger,
.card-wp-primary .card-header-wp-danger,
.card-wp-primary .card-title-wp-danger,
.card-wp-primary .card-content-wp-danger {
  color: #f53d3d;
}

.card-wp-primary .text-wp-light,
.card-wp-primary .card-header-wp-light,
.card-wp-primary .card-title-wp-light,
.card-wp-primary .card-content-wp-light {
  color: #f4f4f4;
}

.card-wp-primary .text-wp-dark,
.card-wp-primary .card-header-wp-dark,
.card-wp-primary .card-title-wp-dark,
.card-wp-primary .card-content-wp-dark {
  color: #222;
}

.card-header-wp-primary,
.card-title-wp-primary,
.card-content-wp-primary {
  color: #327eff;
}

.card-wp .text-wp-secondary {
  color: #32db64;
}

.card-wp-secondary {
  color: #fff;
  background-color: #32db64;
}

.card-wp-secondary .card-header-wp,
.card-wp-secondary .card-title-wp,
.card-wp-secondary .card-content-wp,
.card-wp-secondary h1,
.card-wp-secondary h2,
.card-wp-secondary h3,
.card-wp-secondary h4,
.card-wp-secondary h5,
.card-wp-secondary h6,
.card-wp-secondary p {
  color: #fff;
}

.card-wp-secondary .text-wp-primary,
.card-wp-secondary .card-header-wp-primary,
.card-wp-secondary .card-title-wp-primary,
.card-wp-secondary .card-content-wp-primary {
  color: #327eff;
}

.card-wp-secondary .text-wp-secondary,
.card-wp-secondary .card-header-wp-secondary,
.card-wp-secondary .card-title-wp-secondary,
.card-wp-secondary .card-content-wp-secondary {
  color: #32db64;
}

.card-wp-secondary .text-wp-danger,
.card-wp-secondary .card-header-wp-danger,
.card-wp-secondary .card-title-wp-danger,
.card-wp-secondary .card-content-wp-danger {
  color: #f53d3d;
}

.card-wp-secondary .text-wp-light,
.card-wp-secondary .card-header-wp-light,
.card-wp-secondary .card-title-wp-light,
.card-wp-secondary .card-content-wp-light {
  color: #f4f4f4;
}

.card-wp-secondary .text-wp-dark,
.card-wp-secondary .card-header-wp-dark,
.card-wp-secondary .card-title-wp-dark,
.card-wp-secondary .card-content-wp-dark {
  color: #222;
}

.card-header-wp-secondary,
.card-title-wp-secondary,
.card-content-wp-secondary {
  color: #32db64;
}

.card-wp .text-wp-danger {
  color: #f53d3d;
}

.card-wp-danger {
  color: #fff;
  background-color: #f53d3d;
}

.card-wp-danger .card-header-wp,
.card-wp-danger .card-title-wp,
.card-wp-danger .card-content-wp,
.card-wp-danger h1,
.card-wp-danger h2,
.card-wp-danger h3,
.card-wp-danger h4,
.card-wp-danger h5,
.card-wp-danger h6,
.card-wp-danger p {
  color: #fff;
}

.card-wp-danger .text-wp-primary,
.card-wp-danger .card-header-wp-primary,
.card-wp-danger .card-title-wp-primary,
.card-wp-danger .card-content-wp-primary {
  color: #327eff;
}

.card-wp-danger .text-wp-secondary,
.card-wp-danger .card-header-wp-secondary,
.card-wp-danger .card-title-wp-secondary,
.card-wp-danger .card-content-wp-secondary {
  color: #32db64;
}

.card-wp-danger .text-wp-danger,
.card-wp-danger .card-header-wp-danger,
.card-wp-danger .card-title-wp-danger,
.card-wp-danger .card-content-wp-danger {
  color: #f53d3d;
}

.card-wp-danger .text-wp-light,
.card-wp-danger .card-header-wp-light,
.card-wp-danger .card-title-wp-light,
.card-wp-danger .card-content-wp-light {
  color: #f4f4f4;
}

.card-wp-danger .text-wp-dark,
.card-wp-danger .card-header-wp-dark,
.card-wp-danger .card-title-wp-dark,
.card-wp-danger .card-content-wp-dark {
  color: #222;
}

.card-header-wp-danger,
.card-title-wp-danger,
.card-content-wp-danger {
  color: #f53d3d;
}

.card-wp .text-wp-light {
  color: #f4f4f4;
}

.card-wp-light {
  color: #000;
  background-color: #f4f4f4;
}

.card-wp-light .card-header-wp,
.card-wp-light .card-title-wp,
.card-wp-light .card-content-wp,
.card-wp-light h1,
.card-wp-light h2,
.card-wp-light h3,
.card-wp-light h4,
.card-wp-light h5,
.card-wp-light h6,
.card-wp-light p {
  color: #000;
}

.card-wp-light .text-wp-primary,
.card-wp-light .card-header-wp-primary,
.card-wp-light .card-title-wp-primary,
.card-wp-light .card-content-wp-primary {
  color: #327eff;
}

.card-wp-light .text-wp-secondary,
.card-wp-light .card-header-wp-secondary,
.card-wp-light .card-title-wp-secondary,
.card-wp-light .card-content-wp-secondary {
  color: #32db64;
}

.card-wp-light .text-wp-danger,
.card-wp-light .card-header-wp-danger,
.card-wp-light .card-title-wp-danger,
.card-wp-light .card-content-wp-danger {
  color: #f53d3d;
}

.card-wp-light .text-wp-light,
.card-wp-light .card-header-wp-light,
.card-wp-light .card-title-wp-light,
.card-wp-light .card-content-wp-light {
  color: #f4f4f4;
}

.card-wp-light .text-wp-dark,
.card-wp-light .card-header-wp-dark,
.card-wp-light .card-title-wp-dark,
.card-wp-light .card-content-wp-dark {
  color: #222;
}

.card-header-wp-light,
.card-title-wp-light,
.card-content-wp-light {
  color: #f4f4f4;
}

.card-wp .text-wp-dark {
  color: #222;
}

.card-wp-dark {
  color: #fff;
  background-color: #222;
}

.card-wp-dark .card-header-wp,
.card-wp-dark .card-title-wp,
.card-wp-dark .card-content-wp,
.card-wp-dark h1,
.card-wp-dark h2,
.card-wp-dark h3,
.card-wp-dark h4,
.card-wp-dark h5,
.card-wp-dark h6,
.card-wp-dark p {
  color: #fff;
}

.card-wp-dark .text-wp-primary,
.card-wp-dark .card-header-wp-primary,
.card-wp-dark .card-title-wp-primary,
.card-wp-dark .card-content-wp-primary {
  color: #327eff;
}

.card-wp-dark .text-wp-secondary,
.card-wp-dark .card-header-wp-secondary,
.card-wp-dark .card-title-wp-secondary,
.card-wp-dark .card-content-wp-secondary {
  color: #32db64;
}

.card-wp-dark .text-wp-danger,
.card-wp-dark .card-header-wp-danger,
.card-wp-dark .card-title-wp-danger,
.card-wp-dark .card-content-wp-danger {
  color: #f53d3d;
}

.card-wp-dark .text-wp-light,
.card-wp-dark .card-header-wp-light,
.card-wp-dark .card-title-wp-light,
.card-wp-dark .card-content-wp-light {
  color: #f4f4f4;
}

.card-wp-dark .text-wp-dark,
.card-wp-dark .card-header-wp-dark,
.card-wp-dark .card-title-wp-dark,
.card-wp-dark .card-content-wp-dark {
  color: #222;
}

.card-header-wp-dark,
.card-title-wp-dark,
.card-content-wp-dark {
  color: #222;
}

.checkbox-ios {
  position: relative;
  display: inline-block;
}

.checkbox-ios .checkbox-icon {
  border-radius: 50%;
  position: relative;
  width: 21px;
  height: 21px;
  border-width: 1px;
  border-style: solid;
  border-color: #c8c7cc;
  background-color: #fff;
}

.checkbox-ios .checkbox-checked {
  border-color: #327eff;
  background-color: #327eff;
}

.checkbox-ios .checkbox-checked .checkbox-inner {
  left: 7px;
  top: 4px;
  position: absolute;
  width: 4px;
  height: 9px;
  border-width: 1px;
  border-top-width: 0;
  border-left-width: 0;
  border-style: solid;
  border-color: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.checkbox-ios.checkbox-disabled,
.item-ios.item-checkbox-disabled ion-label {
  opacity: 0.3;
  pointer-events: none;
}

.item.item-ios .checkbox-ios {
  position: static;
  display: block;
  margin: 8px 16px 8px 2px;
}

.item.item-ios .checkbox-ios[item-right],
.item.item-ios .checkbox-ios[item-end] {
  margin: 10px 8px 9px 0;
}

.checkbox-ios-primary .checkbox-checked {
  border-color: #327eff;
  background-color: #327eff;
}

.checkbox-ios-primary .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

.checkbox-ios-secondary .checkbox-checked {
  border-color: #32db64;
  background-color: #32db64;
}

.checkbox-ios-secondary .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

.checkbox-ios-danger .checkbox-checked {
  border-color: #f53d3d;
  background-color: #f53d3d;
}

.checkbox-ios-danger .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

.checkbox-ios-light .checkbox-checked {
  border-color: #f4f4f4;
  background-color: #f4f4f4;
}

.checkbox-ios-light .checkbox-checked .checkbox-inner {
  border-color: #000;
}

.checkbox-ios-dark .checkbox-checked {
  border-color: #222;
  background-color: #222;
}

.checkbox-ios-dark .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

.checkbox-md {
  position: relative;
  display: inline-block;
}

.checkbox-md .checkbox-icon {
  border-radius: 2px;
  position: relative;
  width: 16px;
  height: 16px;
  border-width: 2px;
  border-style: solid;
  border-color: #787878;
  background-color: #fff;
  -webkit-transition-duration: 280ms;
  transition-duration: 280ms;
  -webkit-transition-property: background;
  transition-property: background;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.checkbox-md .checkbox-checked {
  border-color: #327eff;
  background-color: #327eff;
}

.checkbox-md .checkbox-checked .checkbox-inner {
  left: 4px;
  top: 0;
  position: absolute;
  width: 5px;
  height: 10px;
  border-width: 2px;
  border-top-width: 0;
  border-left-width: 0;
  border-style: solid;
  border-color: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.checkbox-md.checkbox-disabled,
.item-md.item-checkbox-disabled ion-label {
  opacity: 0.3;
  pointer-events: none;
}

.item.item-md .checkbox-md {
  position: static;
  display: block;
  margin: 9px 36px 9px 4px;
}

.item.item-md .checkbox-md[item-right],
.item.item-md .checkbox-md[item-end] {
  margin: 11px 10px 10px 0;
}

.checkbox-md + .item-inner ion-label {
  margin-left: 0;
}

.checkbox-md-primary .checkbox-checked {
  border-color: #327eff;
  background-color: #327eff;
}

.checkbox-md-primary .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

.checkbox-md-secondary .checkbox-checked {
  border-color: #32db64;
  background-color: #32db64;
}

.checkbox-md-secondary .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

.checkbox-md-danger .checkbox-checked {
  border-color: #f53d3d;
  background-color: #f53d3d;
}

.checkbox-md-danger .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

.checkbox-md-light .checkbox-checked {
  border-color: #f4f4f4;
  background-color: #f4f4f4;
}

.checkbox-md-light .checkbox-checked .checkbox-inner {
  border-color: #000;
}

.checkbox-md-dark .checkbox-checked {
  border-color: #222;
  background-color: #222;
}

.checkbox-md-dark .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

.checkbox-wp {
  position: relative;
  display: inline-block;
}

.checkbox-wp .checkbox-icon {
  border-radius: 0;
  position: relative;
  width: 16px;
  height: 16px;
  border-width: 2px;
  border-style: solid;
  border-color: #333;
  background-color: #fff;
}

.checkbox-wp .checkbox-checked {
  border-color: #327eff;
  background-color: #327eff;
}

.checkbox-wp .checkbox-checked .checkbox-inner {
  left: 3px;
  top: -2px;
  position: absolute;
  width: 6px;
  height: 12px;
  border-width: 1px;
  border-top-width: 0;
  border-left-width: 0;
  border-style: solid;
  border-color: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.checkbox-wp.checkbox-disabled,
.item-wp.item-checkbox-disabled ion-label {
  opacity: 0.3;
  pointer-events: none;
}

.item.item-wp .checkbox-wp {
  position: static;
  display: block;
  margin: 9px 16px 9px 4px;
}

.item.item-wp .checkbox-wp[item-right],
.item.item-wp .checkbox-wp[item-end] {
  margin: 11px 10px 10px 0;
}

.checkbox-wp + .item-inner ion-label {
  margin-left: 0;
}

.checkbox-wp-primary .checkbox-checked {
  border-color: #327eff;
  background-color: #327eff;
}

.checkbox-wp-primary .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

.checkbox-wp-secondary .checkbox-checked {
  border-color: #32db64;
  background-color: #32db64;
}

.checkbox-wp-secondary .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

.checkbox-wp-danger .checkbox-checked {
  border-color: #f53d3d;
  background-color: #f53d3d;
}

.checkbox-wp-danger .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

.checkbox-wp-light .checkbox-checked {
  border-color: #f4f4f4;
  background-color: #f4f4f4;
}

.checkbox-wp-light .checkbox-checked .checkbox-inner {
  border-color: #000;
}

.checkbox-wp-dark .checkbox-checked {
  border-color: #222;
  background-color: #222;
}

.checkbox-wp-dark .checkbox-checked .checkbox-inner {
  border-color: #fff;
}

ion-chip {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  font-weight: normal;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

ion-chip .button {
  border-radius: 50%;
  width: 32px;
  height: 32px;
  margin: 0;
}

ion-chip ion-icon {
  text-align: center;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 18px;
  line-height: 32px;
}

ion-chip ion-avatar {
  border-radius: 50%;
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
}

ion-chip ion-avatar img {
  border-radius: 50%;
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
}

.chip-ios {
  border-radius: 16px;
  height: 32px;
  font-size: 13px;
  line-height: 32px;
  color: rgba(0, 0, 0, 0.87);
  background: rgba(0, 0, 0, 0.12);
  margin: 2px 0;
}

.chip-ios > ion-label {
  margin: 0 10px;
}

.chip-ios > ion-icon {
  color: #fff;
  background-color: #327eff;
}

.chip-ios-primary,
.chip-ios .icon-ios-primary {
  color: #fff;
  background-color: #327eff;
}

.chip-ios-secondary,
.chip-ios .icon-ios-secondary {
  color: #fff;
  background-color: #32db64;
}

.chip-ios-danger,
.chip-ios .icon-ios-danger {
  color: #fff;
  background-color: #f53d3d;
}

.chip-ios-light,
.chip-ios .icon-ios-light {
  color: #000;
  background-color: #f4f4f4;
}

.chip-ios-dark,
.chip-ios .icon-ios-dark {
  color: #fff;
  background-color: #222;
}

.chip-md {
  border-radius: 16px;
  height: 32px;
  font-size: 13px;
  line-height: 32px;
  color: rgba(0, 0, 0, 0.87);
  background: rgba(0, 0, 0, 0.12);
  margin: 2px 0;
}

.chip-md > ion-label {
  margin: 0 10px;
}

.chip-md > ion-icon {
  color: #fff;
  background-color: #327eff;
}

.chip-md-primary,
.chip-md .icon-md-primary {
  color: #fff;
  background-color: #327eff;
}

.chip-md-secondary,
.chip-md .icon-md-secondary {
  color: #fff;
  background-color: #32db64;
}

.chip-md-danger,
.chip-md .icon-md-danger {
  color: #fff;
  background-color: #f53d3d;
}

.chip-md-light,
.chip-md .icon-md-light {
  color: #000;
  background-color: #f4f4f4;
}

.chip-md-dark,
.chip-md .icon-md-dark {
  color: #fff;
  background-color: #222;
}

.chip-wp {
  border-radius: 16px;
  height: 32px;
  font-size: 13px;
  line-height: 32px;
  color: rgba(0, 0, 0, 0.87);
  background: rgba(0, 0, 0, 0.12);
  margin: 2px 0;
}

.chip-wp > ion-label {
  margin: 0 10px;
}

.chip-wp > ion-icon {
  color: #fff;
  background-color: #327eff;
}

.chip-wp .button {
  border: 0;
}

.chip-wp-primary,
.chip-wp .icon-wp-primary {
  color: #fff;
  background-color: #327eff;
}

.chip-wp-secondary,
.chip-wp .icon-wp-secondary {
  color: #fff;
  background-color: #32db64;
}

.chip-wp-danger,
.chip-wp .icon-wp-danger {
  color: #fff;
  background-color: #f53d3d;
}

.chip-wp-light,
.chip-wp .icon-wp-light {
  color: #000;
  background-color: #f4f4f4;
}

.chip-wp-dark,
.chip-wp .icon-wp-dark {
  color: #fff;
  background-color: #222;
}

ion-content {
  left: 0;
  top: 0;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  contain: size style;
}

.ion-page > ion-content {
  position: absolute;
}

a {
  color: #327eff;
}

.scroll-content {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
  display: block;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
  contain: size style layout;
}

ion-content.js-scroll > .scroll-content {
  position: relative;
  min-height: 100%;
  overflow-x: initial;
  overflow-y: initial;
  -webkit-overflow-scrolling: auto;
  will-change: initial;
}

.disable-scroll .ion-page {
  pointer-events: none;
  -ms-touch-action: none;
  touch-action: none;
}

ion-content.has-refresher > .scroll-content {
  background-color: inherit;
}

.fixed-content {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  display: block;
}

[ion-fixed] {
  position: absolute;
  z-index: 999;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

ion-app [no-padding],
ion-app [no-padding] .scroll-content {
  padding: 0;
}

ion-app [no-margin],
ion-app [no-margin] .scroll-content {
  margin: 0;
}

.content-ios {
  color: #000;
  background-color: #fff;
}

.content-ios.outer-content {
  background: #efeff4;
}

.content-ios hr {
  height: 0.55px;
  background-color: rgba(0, 0, 0, 0.12);
}

.ios .ion-page.show-page ~ .nav-decor {
  left: 0;
  top: 0;
  position: absolute;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  pointer-events: none;
}

ion-app.ios [padding] {
  padding: 16px;
}

ion-app.ios [padding-top] {
  padding-top: 16px;
}

ion-app.ios [padding-left] {
  padding-left: 16px;
}

ion-app.ios [padding-right] {
  padding-right: 16px;
}

ion-app.ios [padding-bottom] {
  padding-bottom: 16px;
}

ion-app.ios [padding-vertical] {
  padding-top: 16px;
  padding-bottom: 16px;
}

ion-app.ios [padding-horizontal] {
  padding-left: 16px;
  padding-right: 16px;
}

ion-app.ios [padding] .scroll-content {
  padding: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.ios [padding] .scroll-content {
    padding-left: calc(constant(safe-area-inset-left) + 16px);
    padding-top: 16px;
    padding-bottom: 16px;
    padding: 16px calc(env(safe-area-inset-right) + 16px) 16px calc(env(safe-area-inset-left) + 16px);
  }
}

ion-app.ios [padding-top] .scroll-content {
  padding-top: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.ios [padding-top] .scroll-content {
    padding-top: 16px;
    padding-top: 16px;
  }
}

ion-app.ios [padding-left] .scroll-content {
  padding-left: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.ios [padding-left] .scroll-content {
    padding-left: calc(constant(safe-area-inset-left) + 16px);
    padding-left: calc(env(safe-area-inset-left) + 16px);
  }
}

ion-app.ios [padding-right] .scroll-content {
  padding-right: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.ios [padding-right] .scroll-content {
    padding-right: calc(constant(safe-area-inset-right) + 16px);
    padding-right: calc(env(safe-area-inset-right) + 16px);
  }
}

ion-app.ios [padding-bottom] .scroll-content {
  padding-bottom: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.ios [padding-bottom] .scroll-content {
    padding-bottom: 16px;
    padding-bottom: 16px;
  }
}

ion-app.ios [padding-vertical] .scroll-content {
  padding-top: 16px;
  padding-bottom: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.ios [padding-vertical] .scroll-content {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

ion-app.ios [padding-horizontal] .scroll-content {
  padding-left: 16px;
  padding-right: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.ios [padding-horizontal] .scroll-content {
    padding-left: calc(constant(safe-area-inset-left) + 16px);
    padding-right: calc(constant(safe-area-inset-right) + 16px);
    padding-left: calc(env(safe-area-inset-left) + 16px);
    padding-right: calc(env(safe-area-inset-right) + 16px);
  }
}

ion-app.ios [margin],
ion-app.ios [margin] .scroll-content {
  margin: 16px;
}

ion-app.ios [margin-top],
ion-app.ios [margin-top] .scroll-content {
  margin-top: 16px;
}

ion-app.ios [margin-left],
ion-app.ios [margin-left] .scroll-content {
  margin-left: 16px;
}

ion-app.ios [margin-start],
ion-app.ios [margin-start] .scroll-content {
  margin-left: 16px;
}

ion-app.ios [margin-right],
ion-app.ios [margin-right] .scroll-content {
  margin-right: 16px;
}

ion-app.ios [margin-end],
ion-app.ios [margin-end] .scroll-content {
  margin-right: 16px;
}

ion-app.ios [margin-bottom],
ion-app.ios [margin-bottom] .scroll-content {
  margin-bottom: 16px;
}

ion-app.ios [margin-vertical],
ion-app.ios [margin-vertical] .scroll-content {
  margin-top: 16px;
  margin-bottom: 16px;
}

ion-app.ios [margin-horizontal],
ion-app.ios [margin-horizontal] .scroll-content {
  margin-left: 16px;
  margin-right: 16px;
}

.content-ios:not([no-bounce]) > .scroll-content::before,
.content-ios:not([no-bounce]) > .scroll-content::after {
  position: absolute;
  width: 1px;
  height: 1px;
  content: "";
}

.content-ios:not([no-bounce]) > .scroll-content::before {
  bottom: -1px;
}

.content-ios:not([no-bounce]) > .scroll-content::after {
  top: -1px;
}

.platform-core .content-ios .scroll-content::after,
.platform-core .content-ios .scroll-content::before {
  position: initial;
  top: initial;
  bottom: initial;
  width: initial;
  height: initial;
}

.content-md {
  color: #000;
  background-color: #fff;
}

.content-md hr {
  background-color: rgba(0, 0, 0, 0.08);
}

ion-app.md [padding] {
  padding: 16px;
}

ion-app.md [padding-top] {
  padding-top: 16px;
}

ion-app.md [padding-left] {
  padding-left: 16px;
}

ion-app.md [padding-right] {
  padding-right: 16px;
}

ion-app.md [padding-bottom] {
  padding-bottom: 16px;
}

ion-app.md [padding-vertical] {
  padding-top: 16px;
  padding-bottom: 16px;
}

ion-app.md [padding-horizontal] {
  padding-left: 16px;
  padding-right: 16px;
}

ion-app.md [padding] .scroll-content {
  padding: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.md [padding] .scroll-content {
    padding-left: calc(constant(safe-area-inset-left) + 16px);
    padding-top: 16px;
    padding-bottom: 16px;
    padding: 16px calc(env(safe-area-inset-right) + 16px) 16px calc(env(safe-area-inset-left) + 16px);
  }
}

ion-app.md [padding-top] .scroll-content {
  padding-top: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.md [padding-top] .scroll-content {
    padding-top: 16px;
    padding-top: 16px;
  }
}

ion-app.md [padding-left] .scroll-content {
  padding-left: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.md [padding-left] .scroll-content {
    padding-left: calc(constant(safe-area-inset-left) + 16px);
    padding-left: calc(env(safe-area-inset-left) + 16px);
  }
}

ion-app.md [padding-right] .scroll-content {
  padding-right: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.md [padding-right] .scroll-content {
    padding-right: calc(constant(safe-area-inset-right) + 16px);
    padding-right: calc(env(safe-area-inset-right) + 16px);
  }
}

ion-app.md [padding-bottom] .scroll-content {
  padding-bottom: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.md [padding-bottom] .scroll-content {
    padding-bottom: 16px;
    padding-bottom: 16px;
  }
}

ion-app.md [padding-vertical] .scroll-content {
  padding-top: 16px;
  padding-bottom: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.md [padding-vertical] .scroll-content {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

ion-app.md [padding-horizontal] .scroll-content {
  padding-left: 16px;
  padding-right: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.md [padding-horizontal] .scroll-content {
    padding-left: calc(constant(safe-area-inset-left) + 16px);
    padding-right: calc(constant(safe-area-inset-right) + 16px);
    padding-left: calc(env(safe-area-inset-left) + 16px);
    padding-right: calc(env(safe-area-inset-right) + 16px);
  }
}

ion-app.md [margin],
ion-app.md [margin] .scroll-content {
  margin: 16px;
}

ion-app.md [margin-top],
ion-app.md [margin-top] .scroll-content {
  margin-top: 16px;
}

ion-app.md [margin-left],
ion-app.md [margin-left] .scroll-content {
  margin-left: 16px;
}

ion-app.md [margin-start],
ion-app.md [margin-start] .scroll-content {
  margin-left: 16px;
}

ion-app.md [margin-right],
ion-app.md [margin-right] .scroll-content {
  margin-right: 16px;
}

ion-app.md [margin-end],
ion-app.md [margin-end] .scroll-content {
  margin-right: 16px;
}

ion-app.md [margin-bottom],
ion-app.md [margin-bottom] .scroll-content {
  margin-bottom: 16px;
}

ion-app.md [margin-vertical],
ion-app.md [margin-vertical] .scroll-content {
  margin-top: 16px;
  margin-bottom: 16px;
}

ion-app.md [margin-horizontal],
ion-app.md [margin-horizontal] .scroll-content {
  margin-left: 16px;
  margin-right: 16px;
}

.content-wp {
  color: #000;
  background-color: #fff;
}

.content-wp hr {
  background-color: rgba(0, 0, 0, 0.08);
}

ion-app.wp [padding] {
  padding: 16px;
}

ion-app.wp [padding-top] {
  padding-top: 16px;
}

ion-app.wp [padding-left] {
  padding-left: 16px;
}

ion-app.wp [padding-right] {
  padding-right: 16px;
}

ion-app.wp [padding-bottom] {
  padding-bottom: 16px;
}

ion-app.wp [padding-vertical] {
  padding-top: 16px;
  padding-bottom: 16px;
}

ion-app.wp [padding-horizontal] {
  padding-left: 16px;
  padding-right: 16px;
}

ion-app.wp [padding] .scroll-content {
  padding: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.wp [padding] .scroll-content {
    padding-left: calc(constant(safe-area-inset-left) + 16px);
    padding-top: 16px;
    padding-bottom: 16px;
    padding: 16px calc(env(safe-area-inset-right) + 16px) 16px calc(env(safe-area-inset-left) + 16px);
  }
}

ion-app.wp [padding-top] .scroll-content {
  padding-top: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.wp [padding-top] .scroll-content {
    padding-top: 16px;
    padding-top: 16px;
  }
}

ion-app.wp [padding-left] .scroll-content {
  padding-left: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.wp [padding-left] .scroll-content {
    padding-left: calc(constant(safe-area-inset-left) + 16px);
    padding-left: calc(env(safe-area-inset-left) + 16px);
  }
}

ion-app.wp [padding-right] .scroll-content {
  padding-right: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.wp [padding-right] .scroll-content {
    padding-right: calc(constant(safe-area-inset-right) + 16px);
    padding-right: calc(env(safe-area-inset-right) + 16px);
  }
}

ion-app.wp [padding-bottom] .scroll-content {
  padding-bottom: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.wp [padding-bottom] .scroll-content {
    padding-bottom: 16px;
    padding-bottom: 16px;
  }
}

ion-app.wp [padding-vertical] .scroll-content {
  padding-top: 16px;
  padding-bottom: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.wp [padding-vertical] .scroll-content {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

ion-app.wp [padding-horizontal] .scroll-content {
  padding-left: 16px;
  padding-right: 16px;
}

@media screen and (orientation: landscape) {
  ion-app.wp [padding-horizontal] .scroll-content {
    padding-left: calc(constant(safe-area-inset-left) + 16px);
    padding-right: calc(constant(safe-area-inset-right) + 16px);
    padding-left: calc(env(safe-area-inset-left) + 16px);
    padding-right: calc(env(safe-area-inset-right) + 16px);
  }
}

ion-app.wp [margin],
ion-app.wp [margin] .scroll-content {
  margin: 16px;
}

ion-app.wp [margin-top],
ion-app.wp [margin-top] .scroll-content {
  margin-top: 16px;
}

ion-app.wp [margin-left],
ion-app.wp [margin-left] .scroll-content {
  margin-left: 16px;
}

ion-app.wp [margin-start],
ion-app.wp [margin-start] .scroll-content {
  margin-left: 16px;
}

ion-app.wp [margin-right],
ion-app.wp [margin-right] .scroll-content {
  margin-right: 16px;
}

ion-app.wp [margin-end],
ion-app.wp [margin-end] .scroll-content {
  margin-right: 16px;
}

ion-app.wp [margin-bottom],
ion-app.wp [margin-bottom] .scroll-content {
  margin-bottom: 16px;
}

ion-app.wp [margin-vertical],
ion-app.wp [margin-vertical] .scroll-content {
  margin-top: 16px;
  margin-bottom: 16px;
}

ion-app.wp [margin-horizontal],
ion-app.wp [margin-horizontal] .scroll-content {
  margin-left: 16px;
  margin-right: 16px;
}

ion-datetime {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.datetime-text {
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 16px;
  min-height: 1.2em;
  font-size: inherit;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.datetime-disabled,
.item-datetime-disabled ion-label {
  opacity: .4;
  pointer-events: none;
}

.item-label-stacked ion-datetime,
.item-label-floating ion-datetime {
  padding-left: 0;
  width: 100%;
}

.datetime-ios {
  padding: 11px 8px 11px 16px;
}

.datetime-ios .datetime-placeholder {
  color: #999;
}

.datetime-md {
  padding: 13px 8px 13px 16px;
}

.datetime-md .datetime-placeholder {
  color: #999;
}

.datetime-wp {
  padding: 13px 8px 13px 16px;
  min-width: 45%;
}

.datetime-wp .datetime-text {
  padding: 0 8px;
  min-height: 3.4rem;
  border: 2px solid rgba(0, 0, 0, 0.5);
  line-height: 3rem;
}

.item-datetime .datetime-wp ion-label[floating] {
  -webkit-transform: translate3d(8px,  41px,  0);
  transform: translate3d(8px,  41px,  0);
}

.datetime-wp .datetime-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.fab {
  text-align: center;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 50%;
  position: relative;
  z-index: 0;
  display: block;
  overflow: hidden;
  width: 56px;
  height: 56px;
  font-size: 14px;
  line-height: 56px;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: background-color, opacity 100ms linear;
  transition: background-color, opacity 100ms linear;
  background-clip: padding-box;
  -webkit-font-kerning: none;
  font-kerning: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  contain: strict;
}

.fab ion-icon {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 2.4rem;
}

.fab[mini] {
  margin: 8px;
  width: 40px;
  height: 40px;
  line-height: 40px;
}

.fab[mini] .fab-close-icon {
  line-height: 40px;
}

ion-fab {
  position: absolute;
  z-index: 999;
}

ion-fab[center] {
  left: 50%;
  margin-left: -28px;
}

ion-fab[middle] {
  margin-top: -28px;
  top: 50%;
}

ion-fab[top] {
  top: 10px;
}

ion-fab[right] {
  right: 10px;
  right: calc(10px + constant(safe-area-inset-right));
  right: calc(10px + env(safe-area-inset-right));
}

ion-fab[end] {
  right: 10px;
  right: calc(constant(safe-area-inset-right) + 10px);
  right: calc(env(safe-area-inset-right) + 10px);
}

ion-fab[bottom] {
  bottom: 10px;
}

ion-fab[left] {
  left: 10px;
  left: calc(10px + constant(safe-area-inset-left));
  left: calc(10px + env(safe-area-inset-left));
}

ion-fab[start] {
  left: 10px;
  left: calc(constant(safe-area-inset-left) + 10px);
  left: calc(env(safe-area-inset-left) + 10px);
}

ion-fab[top][edge] {
  top: -28px;
}

ion-fab[bottom][edge] {
  bottom: -28px;
}

ion-fab-list {
  margin: 66px 0;
  position: absolute;
  top: 0;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 56px;
  min-height: 56px;
}

.fab-in-list {
  margin: 8px 0;
  width: 40px;
  height: 40px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.fab-in-list.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
}

ion-fab-list[side=left] .fab-in-list,
ion-fab-list[side=right] .fab-in-list {
  margin: 0 8px;
}

ion-fab-list[side=top] {
  top: auto;
  bottom: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

ion-fab-list[side=left] {
  margin: 0 66px;
  right: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

ion-fab-list[side=right] {
  margin: 0 66px;
  left: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.fab-list-active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.fab-close-icon {
  left: 0;
  right: 0;
  top: 0;
  position: absolute;
  line-height: 56px;
  opacity: 0;
  -webkit-transform: scale(0.4) rotateZ(-45deg);
  transform: scale(0.4) rotateZ(-45deg);
  -webkit-transition: all ease-in-out 300ms;
  transition: all ease-in-out 300ms;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}

.fab .button-inner {
  -webkit-transition: all ease-in-out 300ms;
  transition: all ease-in-out 300ms;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}

.fab-close-active .fab-close-icon {
  opacity: 1;
  -webkit-transform: scale(1) rotateZ(0deg);
  transform: scale(1) rotateZ(0deg);
}

.fab-close-active .button-inner {
  opacity: 0;
  -webkit-transform: scale(0.4) rotateZ(45deg);
  transform: scale(0.4) rotateZ(45deg);
}

.fab-ios {
  color: #fff;
  background-color: #327eff;
}

.fab-ios.activated {
  background-color: #2e74eb;
}

.fab-ios-in-list {
  color: #000;
  background-color: #f4f4f4;
  -webkit-transition: opacity 200ms ease 10ms, -webkit-transform 200ms ease 10ms;
  transition: opacity 200ms ease 10ms, -webkit-transform 200ms ease 10ms;
  transition: transform 200ms ease 10ms, opacity 200ms ease 10ms;
  transition: transform 200ms ease 10ms, opacity 200ms ease 10ms, -webkit-transform 200ms ease 10ms;
}

.fab-ios-in-list.activated {
  background-color: #e0e0e0;
}

.fab-ios-primary {
  color: #fff;
  background-color: #327eff;
}

.fab-ios-primary.activated {
  background-color: #2e74eb;
}

.fab-ios-secondary {
  color: #fff;
  background-color: #32db64;
}

.fab-ios-secondary.activated {
  background-color: #2ec95c;
}

.fab-ios-danger {
  color: #fff;
  background-color: #f53d3d;
}

.fab-ios-danger.activated {
  background-color: #e13838;
}

.fab-ios-light {
  color: #000;
  background-color: #f4f4f4;
}

.fab-ios-light.activated {
  background-color: #e0e0e0;
}

.fab-ios-dark {
  color: #fff;
  background-color: #222;
}

.fab-ios-dark.activated {
  background-color: #343434;
}

.fab-md {
  color: #fff;
  background-color: #327eff;
  -webkit-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.14), 0 4px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.14), 0 4px 5px rgba(0, 0, 0, 0.1);
  -webkit-transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.fab-md.activated {
  background-color: #2e74eb;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.4), 0 4px 7px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.4), 0 4px 7px 0 rgba(0, 0, 0, 0.1);
}

.fab-md-in-list {
  color: #000;
  background-color: #f4f4f4;
  -webkit-transition: opacity 200ms ease 10ms, background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 200ms ease 10ms, -webkit-box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 200ms ease 10ms, background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 200ms ease 10ms, -webkit-box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 200ms ease 10ms, opacity 200ms ease 10ms, box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 200ms ease 10ms, opacity 200ms ease 10ms, box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 200ms ease 10ms, -webkit-box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.fab-md-in-list.activated {
  background-color: #e0e0e0;
}

.fab-md .button-effect {
  background-color: #fff;
}

.fab-md-primary {
  color: #fff;
  background-color: #327eff;
}

.fab-md-primary.activated {
  background-color: #2e74eb;
}

.fab-md-primary .button-effect {
  background-color: #fff;
}

.fab-md-secondary {
  color: #fff;
  background-color: #32db64;
}

.fab-md-secondary.activated {
  background-color: #2ec95c;
}

.fab-md-secondary .button-effect {
  background-color: #fff;
}

.fab-md-danger {
  color: #fff;
  background-color: #f53d3d;
}

.fab-md-danger.activated {
  background-color: #e13838;
}

.fab-md-danger .button-effect {
  background-color: #fff;
}

.fab-md-light {
  color: #000;
  background-color: #f4f4f4;
}

.fab-md-light.activated {
  background-color: #e0e0e0;
}

.fab-md-light .button-effect {
  background-color: #000;
}

.fab-md-dark {
  color: #fff;
  background-color: #222;
}

.fab-md-dark.activated {
  background-color: #343434;
}

.fab-md-dark .button-effect {
  background-color: #fff;
}

.fab-wp {
  color: #fff;
  background-color: #327eff;
}

.fab-wp.activated {
  background-color: #2e74eb;
}

.fab-wp-in-list {
  color: #000;
  background-color: #f4f4f4;
  -webkit-transition: opacity 200ms ease 10ms, -webkit-transform 200ms ease 10ms;
  transition: opacity 200ms ease 10ms, -webkit-transform 200ms ease 10ms;
  transition: transform 200ms ease 10ms, opacity 200ms ease 10ms;
  transition: transform 200ms ease 10ms, opacity 200ms ease 10ms, -webkit-transform 200ms ease 10ms;
}

.fab-wp-in-list.activated {
  background-color: #e0e0e0;
}

.fab-wp-primary {
  color: #fff;
  background-color: #327eff;
}

.fab-wp-primary.activated {
  background-color: #2e74eb;
}

.fab-wp-secondary {
  color: #fff;
  background-color: #32db64;
}

.fab-wp-secondary.activated {
  background-color: #2ec95c;
}

.fab-wp-danger {
  color: #fff;
  background-color: #f53d3d;
}

.fab-wp-danger.activated {
  background-color: #e13838;
}

.fab-wp-light {
  color: #000;
  background-color: #f4f4f4;
}

.fab-wp-light.activated {
  background-color: #e0e0e0;
}

.fab-wp-dark {
  color: #fff;
  background-color: #222;
}

.fab-wp-dark.activated {
  background-color: #343434;
}

.grid {
  padding: 5px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.grid[no-padding] {
  padding: 0;
}

.grid[no-padding] > .row > .col {
  padding: 0;
}

@media (min-width: 576px) {
  .grid[fixed] {
    width: 540px;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .grid[fixed] {
    width: 720px;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .grid[fixed] {
    width: 960px;
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .grid[fixed] {
    width: 1140px;
    max-width: 100%;
  }
}

.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.row[nowrap] {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.row[wrap-reverse] {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.row[align-items-start] {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.row[align-items-center] {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.row[align-items-end] {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.row[align-items-stretch] {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.row[align-items-baseline] {
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.row[justify-content-start] {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.row[justify-content-center] {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.row[justify-content-end] {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.row[justify-content-around] {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.row[justify-content-between] {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.col {
  padding: 5px;
  position: relative;
  width: 100%;
  margin: 0;
  min-height: 1px;
  -webkit-flex-basis: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col[align-self-start] {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.col[align-self-end] {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.col[align-self-center] {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.col[align-self-stretch] {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

.col[align-self-baseline] {
  -webkit-align-self: baseline;
  -ms-flex-item-align: baseline;
  align-self: baseline;
}

[col-1] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-1] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-1] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-1] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-1] {
    padding: 5px;
  }
}

[col-2] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-2] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-2] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-2] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-2] {
    padding: 5px;
  }
}

[col-3] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-3] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-3] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-3] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-3] {
    padding: 5px;
  }
}

[col-4] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-4] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-4] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-4] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-4] {
    padding: 5px;
  }
}

[col-5] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-5] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-5] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-5] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-5] {
    padding: 5px;
  }
}

[col-6] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-6] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-6] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-6] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-6] {
    padding: 5px;
  }
}

[col-7] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-7] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-7] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-7] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-7] {
    padding: 5px;
  }
}

[col-8] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-8] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-8] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-8] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-8] {
    padding: 5px;
  }
}

[col-9] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-9] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-9] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-9] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-9] {
    padding: 5px;
  }
}

[col-10] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-10] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-10] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-10] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-10] {
    padding: 5px;
  }
}

[col-11] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-11] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-11] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-11] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-11] {
    padding: 5px;
  }
}

[col-12] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-12] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-12] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-12] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-12] {
    padding: 5px;
  }
}

[col] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col] {
    padding: 5px;
  }
}

[col] {
  -webkit-flex-basis: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

[col-auto] {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}

[col-1] {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 8.33333%;
  -ms-flex: 0 0 8.33333%;
  flex: 0 0 8.33333%;
  width: 8.33333%;
  max-width: 8.33333%;
}

[col-2] {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 16.66667%;
  -ms-flex: 0 0 16.66667%;
  flex: 0 0 16.66667%;
  width: 16.66667%;
  max-width: 16.66667%;
}

[col-3] {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  width: 25%;
  max-width: 25%;
}

[col-4] {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.33333%;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  width: 33.33333%;
  max-width: 33.33333%;
}

[col-5] {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 41.66667%;
  -ms-flex: 0 0 41.66667%;
  flex: 0 0 41.66667%;
  width: 41.66667%;
  max-width: 41.66667%;
}

[col-6] {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  width: 50%;
  max-width: 50%;
}

[col-7] {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 58.33333%;
  -ms-flex: 0 0 58.33333%;
  flex: 0 0 58.33333%;
  width: 58.33333%;
  max-width: 58.33333%;
}

[col-8] {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 66.66667%;
  -ms-flex: 0 0 66.66667%;
  flex: 0 0 66.66667%;
  width: 66.66667%;
  max-width: 66.66667%;
}

[col-9] {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 75%;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  width: 75%;
  max-width: 75%;
}

[col-10] {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 83.33333%;
  -ms-flex: 0 0 83.33333%;
  flex: 0 0 83.33333%;
  width: 83.33333%;
  max-width: 83.33333%;
}

[col-11] {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 91.66667%;
  -ms-flex: 0 0 91.66667%;
  flex: 0 0 91.66667%;
  width: 91.66667%;
  max-width: 91.66667%;
}

[col-12] {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}

[pull-0] {
  right: auto;
}

[pull-1] {
  right: 8.33333%;
}

[pull-2] {
  right: 16.66667%;
}

[pull-3] {
  right: 25%;
}

[pull-4] {
  right: 33.33333%;
}

[pull-5] {
  right: 41.66667%;
}

[pull-6] {
  right: 50%;
}

[pull-7] {
  right: 58.33333%;
}

[pull-8] {
  right: 66.66667%;
}

[pull-9] {
  right: 75%;
}

[pull-10] {
  right: 83.33333%;
}

[pull-11] {
  right: 91.66667%;
}

[pull-12] {
  right: 100%;
}

[push-0] {
  left: auto;
}

[push-1] {
  left: 8.33333%;
}

[push-2] {
  left: 16.66667%;
}

[push-3] {
  left: 25%;
}

[push-4] {
  left: 33.33333%;
}

[push-5] {
  left: 41.66667%;
}

[push-6] {
  left: 50%;
}

[push-7] {
  left: 58.33333%;
}

[push-8] {
  left: 66.66667%;
}

[push-9] {
  left: 75%;
}

[push-10] {
  left: 83.33333%;
}

[push-11] {
  left: 91.66667%;
}

[push-12] {
  left: 100%;
}

[offset-1] {
  margin-left: 8.33333%;
}

[offset-2] {
  margin-left: 16.66667%;
}

[offset-3] {
  margin-left: 25%;
}

[offset-4] {
  margin-left: 33.33333%;
}

[offset-5] {
  margin-left: 41.66667%;
}

[offset-6] {
  margin-left: 50%;
}

[offset-7] {
  margin-left: 58.33333%;
}

[offset-8] {
  margin-left: 66.66667%;
}

[offset-9] {
  margin-left: 75%;
}

[offset-10] {
  margin-left: 83.33333%;
}

[offset-11] {
  margin-left: 91.66667%;
}

[col-sm-1] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-sm-1] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-sm-1] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-sm-1] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-sm-1] {
    padding: 5px;
  }
}

[col-sm-2] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-sm-2] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-sm-2] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-sm-2] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-sm-2] {
    padding: 5px;
  }
}

[col-sm-3] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-sm-3] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-sm-3] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-sm-3] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-sm-3] {
    padding: 5px;
  }
}

[col-sm-4] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-sm-4] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-sm-4] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-sm-4] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-sm-4] {
    padding: 5px;
  }
}

[col-sm-5] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-sm-5] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-sm-5] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-sm-5] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-sm-5] {
    padding: 5px;
  }
}

[col-sm-6] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-sm-6] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-sm-6] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-sm-6] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-sm-6] {
    padding: 5px;
  }
}

[col-sm-7] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-sm-7] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-sm-7] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-sm-7] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-sm-7] {
    padding: 5px;
  }
}

[col-sm-8] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-sm-8] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-sm-8] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-sm-8] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-sm-8] {
    padding: 5px;
  }
}

[col-sm-9] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-sm-9] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-sm-9] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-sm-9] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-sm-9] {
    padding: 5px;
  }
}

[col-sm-10] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-sm-10] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-sm-10] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-sm-10] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-sm-10] {
    padding: 5px;
  }
}

[col-sm-11] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-sm-11] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-sm-11] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-sm-11] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-sm-11] {
    padding: 5px;
  }
}

[col-sm-12] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-sm-12] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-sm-12] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-sm-12] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-sm-12] {
    padding: 5px;
  }
}

[col-sm] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-sm] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-sm] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-sm] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-sm] {
    padding: 5px;
  }
}

@media (min-width: 576px) {
  [col-sm] {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  [col-sm-auto] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  [col-sm-1] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    width: 8.33333%;
    max-width: 8.33333%;
  }
  [col-sm-2] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    width: 16.66667%;
    max-width: 16.66667%;
  }
  [col-sm-3] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    width: 25%;
    max-width: 25%;
  }
  [col-sm-4] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    width: 33.33333%;
    max-width: 33.33333%;
  }
  [col-sm-5] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    width: 41.66667%;
    max-width: 41.66667%;
  }
  [col-sm-6] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
  }
  [col-sm-7] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    width: 58.33333%;
    max-width: 58.33333%;
  }
  [col-sm-8] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    width: 66.66667%;
    max-width: 66.66667%;
  }
  [col-sm-9] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    width: 75%;
    max-width: 75%;
  }
  [col-sm-10] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    width: 83.33333%;
    max-width: 83.33333%;
  }
  [col-sm-11] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    width: 91.66667%;
    max-width: 91.66667%;
  }
  [col-sm-12] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
  [pull-sm-0] {
    right: auto;
  }
  [pull-sm-1] {
    right: 8.33333%;
  }
  [pull-sm-2] {
    right: 16.66667%;
  }
  [pull-sm-3] {
    right: 25%;
  }
  [pull-sm-4] {
    right: 33.33333%;
  }
  [pull-sm-5] {
    right: 41.66667%;
  }
  [pull-sm-6] {
    right: 50%;
  }
  [pull-sm-7] {
    right: 58.33333%;
  }
  [pull-sm-8] {
    right: 66.66667%;
  }
  [pull-sm-9] {
    right: 75%;
  }
  [pull-sm-10] {
    right: 83.33333%;
  }
  [pull-sm-11] {
    right: 91.66667%;
  }
  [pull-sm-12] {
    right: 100%;
  }
  [push-sm-0] {
    left: auto;
  }
  [push-sm-1] {
    left: 8.33333%;
  }
  [push-sm-2] {
    left: 16.66667%;
  }
  [push-sm-3] {
    left: 25%;
  }
  [push-sm-4] {
    left: 33.33333%;
  }
  [push-sm-5] {
    left: 41.66667%;
  }
  [push-sm-6] {
    left: 50%;
  }
  [push-sm-7] {
    left: 58.33333%;
  }
  [push-sm-8] {
    left: 66.66667%;
  }
  [push-sm-9] {
    left: 75%;
  }
  [push-sm-10] {
    left: 83.33333%;
  }
  [push-sm-11] {
    left: 91.66667%;
  }
  [push-sm-12] {
    left: 100%;
  }
  [offset-sm-0] {
    margin-left: 0%;
  }
  [offset-sm-1] {
    margin-left: 8.33333%;
  }
  [offset-sm-2] {
    margin-left: 16.66667%;
  }
  [offset-sm-3] {
    margin-left: 25%;
  }
  [offset-sm-4] {
    margin-left: 33.33333%;
  }
  [offset-sm-5] {
    margin-left: 41.66667%;
  }
  [offset-sm-6] {
    margin-left: 50%;
  }
  [offset-sm-7] {
    margin-left: 58.33333%;
  }
  [offset-sm-8] {
    margin-left: 66.66667%;
  }
  [offset-sm-9] {
    margin-left: 75%;
  }
  [offset-sm-10] {
    margin-left: 83.33333%;
  }
  [offset-sm-11] {
    margin-left: 91.66667%;
  }
}

[col-md-1] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-md-1] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-md-1] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-md-1] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-md-1] {
    padding: 5px;
  }
}

[col-md-2] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-md-2] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-md-2] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-md-2] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-md-2] {
    padding: 5px;
  }
}

[col-md-3] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-md-3] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-md-3] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-md-3] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-md-3] {
    padding: 5px;
  }
}

[col-md-4] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-md-4] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-md-4] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-md-4] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-md-4] {
    padding: 5px;
  }
}

[col-md-5] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-md-5] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-md-5] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-md-5] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-md-5] {
    padding: 5px;
  }
}

[col-md-6] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-md-6] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-md-6] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-md-6] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-md-6] {
    padding: 5px;
  }
}

[col-md-7] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-md-7] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-md-7] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-md-7] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-md-7] {
    padding: 5px;
  }
}

[col-md-8] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-md-8] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-md-8] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-md-8] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-md-8] {
    padding: 5px;
  }
}

[col-md-9] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-md-9] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-md-9] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-md-9] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-md-9] {
    padding: 5px;
  }
}

[col-md-10] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-md-10] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-md-10] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-md-10] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-md-10] {
    padding: 5px;
  }
}

[col-md-11] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-md-11] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-md-11] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-md-11] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-md-11] {
    padding: 5px;
  }
}

[col-md-12] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-md-12] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-md-12] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-md-12] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-md-12] {
    padding: 5px;
  }
}

[col-md] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-md] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-md] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-md] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-md] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-md] {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  [col-md-auto] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  [col-md-1] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    width: 8.33333%;
    max-width: 8.33333%;
  }
  [col-md-2] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    width: 16.66667%;
    max-width: 16.66667%;
  }
  [col-md-3] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    width: 25%;
    max-width: 25%;
  }
  [col-md-4] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    width: 33.33333%;
    max-width: 33.33333%;
  }
  [col-md-5] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    width: 41.66667%;
    max-width: 41.66667%;
  }
  [col-md-6] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
  }
  [col-md-7] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    width: 58.33333%;
    max-width: 58.33333%;
  }
  [col-md-8] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    width: 66.66667%;
    max-width: 66.66667%;
  }
  [col-md-9] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    width: 75%;
    max-width: 75%;
  }
  [col-md-10] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    width: 83.33333%;
    max-width: 83.33333%;
  }
  [col-md-11] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    width: 91.66667%;
    max-width: 91.66667%;
  }
  [col-md-12] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
  [pull-md-0] {
    right: auto;
  }
  [pull-md-1] {
    right: 8.33333%;
  }
  [pull-md-2] {
    right: 16.66667%;
  }
  [pull-md-3] {
    right: 25%;
  }
  [pull-md-4] {
    right: 33.33333%;
  }
  [pull-md-5] {
    right: 41.66667%;
  }
  [pull-md-6] {
    right: 50%;
  }
  [pull-md-7] {
    right: 58.33333%;
  }
  [pull-md-8] {
    right: 66.66667%;
  }
  [pull-md-9] {
    right: 75%;
  }
  [pull-md-10] {
    right: 83.33333%;
  }
  [pull-md-11] {
    right: 91.66667%;
  }
  [pull-md-12] {
    right: 100%;
  }
  [push-md-0] {
    left: auto;
  }
  [push-md-1] {
    left: 8.33333%;
  }
  [push-md-2] {
    left: 16.66667%;
  }
  [push-md-3] {
    left: 25%;
  }
  [push-md-4] {
    left: 33.33333%;
  }
  [push-md-5] {
    left: 41.66667%;
  }
  [push-md-6] {
    left: 50%;
  }
  [push-md-7] {
    left: 58.33333%;
  }
  [push-md-8] {
    left: 66.66667%;
  }
  [push-md-9] {
    left: 75%;
  }
  [push-md-10] {
    left: 83.33333%;
  }
  [push-md-11] {
    left: 91.66667%;
  }
  [push-md-12] {
    left: 100%;
  }
  [offset-md-0] {
    margin-left: 0%;
  }
  [offset-md-1] {
    margin-left: 8.33333%;
  }
  [offset-md-2] {
    margin-left: 16.66667%;
  }
  [offset-md-3] {
    margin-left: 25%;
  }
  [offset-md-4] {
    margin-left: 33.33333%;
  }
  [offset-md-5] {
    margin-left: 41.66667%;
  }
  [offset-md-6] {
    margin-left: 50%;
  }
  [offset-md-7] {
    margin-left: 58.33333%;
  }
  [offset-md-8] {
    margin-left: 66.66667%;
  }
  [offset-md-9] {
    margin-left: 75%;
  }
  [offset-md-10] {
    margin-left: 83.33333%;
  }
  [offset-md-11] {
    margin-left: 91.66667%;
  }
}

[col-lg-1] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-lg-1] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-lg-1] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-lg-1] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-lg-1] {
    padding: 5px;
  }
}

[col-lg-2] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-lg-2] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-lg-2] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-lg-2] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-lg-2] {
    padding: 5px;
  }
}

[col-lg-3] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-lg-3] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-lg-3] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-lg-3] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-lg-3] {
    padding: 5px;
  }
}

[col-lg-4] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-lg-4] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-lg-4] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-lg-4] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-lg-4] {
    padding: 5px;
  }
}

[col-lg-5] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-lg-5] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-lg-5] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-lg-5] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-lg-5] {
    padding: 5px;
  }
}

[col-lg-6] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-lg-6] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-lg-6] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-lg-6] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-lg-6] {
    padding: 5px;
  }
}

[col-lg-7] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-lg-7] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-lg-7] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-lg-7] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-lg-7] {
    padding: 5px;
  }
}

[col-lg-8] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-lg-8] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-lg-8] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-lg-8] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-lg-8] {
    padding: 5px;
  }
}

[col-lg-9] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-lg-9] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-lg-9] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-lg-9] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-lg-9] {
    padding: 5px;
  }
}

[col-lg-10] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-lg-10] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-lg-10] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-lg-10] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-lg-10] {
    padding: 5px;
  }
}

[col-lg-11] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-lg-11] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-lg-11] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-lg-11] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-lg-11] {
    padding: 5px;
  }
}

[col-lg-12] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-lg-12] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-lg-12] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-lg-12] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-lg-12] {
    padding: 5px;
  }
}

[col-lg] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-lg] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-lg] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-lg] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-lg] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-lg] {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  [col-lg-auto] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  [col-lg-1] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    width: 8.33333%;
    max-width: 8.33333%;
  }
  [col-lg-2] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    width: 16.66667%;
    max-width: 16.66667%;
  }
  [col-lg-3] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    width: 25%;
    max-width: 25%;
  }
  [col-lg-4] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    width: 33.33333%;
    max-width: 33.33333%;
  }
  [col-lg-5] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    width: 41.66667%;
    max-width: 41.66667%;
  }
  [col-lg-6] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
  }
  [col-lg-7] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    width: 58.33333%;
    max-width: 58.33333%;
  }
  [col-lg-8] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    width: 66.66667%;
    max-width: 66.66667%;
  }
  [col-lg-9] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    width: 75%;
    max-width: 75%;
  }
  [col-lg-10] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    width: 83.33333%;
    max-width: 83.33333%;
  }
  [col-lg-11] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    width: 91.66667%;
    max-width: 91.66667%;
  }
  [col-lg-12] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
  [pull-lg-0] {
    right: auto;
  }
  [pull-lg-1] {
    right: 8.33333%;
  }
  [pull-lg-2] {
    right: 16.66667%;
  }
  [pull-lg-3] {
    right: 25%;
  }
  [pull-lg-4] {
    right: 33.33333%;
  }
  [pull-lg-5] {
    right: 41.66667%;
  }
  [pull-lg-6] {
    right: 50%;
  }
  [pull-lg-7] {
    right: 58.33333%;
  }
  [pull-lg-8] {
    right: 66.66667%;
  }
  [pull-lg-9] {
    right: 75%;
  }
  [pull-lg-10] {
    right: 83.33333%;
  }
  [pull-lg-11] {
    right: 91.66667%;
  }
  [pull-lg-12] {
    right: 100%;
  }
  [push-lg-0] {
    left: auto;
  }
  [push-lg-1] {
    left: 8.33333%;
  }
  [push-lg-2] {
    left: 16.66667%;
  }
  [push-lg-3] {
    left: 25%;
  }
  [push-lg-4] {
    left: 33.33333%;
  }
  [push-lg-5] {
    left: 41.66667%;
  }
  [push-lg-6] {
    left: 50%;
  }
  [push-lg-7] {
    left: 58.33333%;
  }
  [push-lg-8] {
    left: 66.66667%;
  }
  [push-lg-9] {
    left: 75%;
  }
  [push-lg-10] {
    left: 83.33333%;
  }
  [push-lg-11] {
    left: 91.66667%;
  }
  [push-lg-12] {
    left: 100%;
  }
  [offset-lg-0] {
    margin-left: 0%;
  }
  [offset-lg-1] {
    margin-left: 8.33333%;
  }
  [offset-lg-2] {
    margin-left: 16.66667%;
  }
  [offset-lg-3] {
    margin-left: 25%;
  }
  [offset-lg-4] {
    margin-left: 33.33333%;
  }
  [offset-lg-5] {
    margin-left: 41.66667%;
  }
  [offset-lg-6] {
    margin-left: 50%;
  }
  [offset-lg-7] {
    margin-left: 58.33333%;
  }
  [offset-lg-8] {
    margin-left: 66.66667%;
  }
  [offset-lg-9] {
    margin-left: 75%;
  }
  [offset-lg-10] {
    margin-left: 83.33333%;
  }
  [offset-lg-11] {
    margin-left: 91.66667%;
  }
}

[col-xl-1] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-xl-1] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-xl-1] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-xl-1] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-xl-1] {
    padding: 5px;
  }
}

[col-xl-2] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-xl-2] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-xl-2] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-xl-2] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-xl-2] {
    padding: 5px;
  }
}

[col-xl-3] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-xl-3] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-xl-3] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-xl-3] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-xl-3] {
    padding: 5px;
  }
}

[col-xl-4] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-xl-4] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-xl-4] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-xl-4] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-xl-4] {
    padding: 5px;
  }
}

[col-xl-5] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-xl-5] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-xl-5] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-xl-5] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-xl-5] {
    padding: 5px;
  }
}

[col-xl-6] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-xl-6] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-xl-6] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-xl-6] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-xl-6] {
    padding: 5px;
  }
}

[col-xl-7] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-xl-7] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-xl-7] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-xl-7] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-xl-7] {
    padding: 5px;
  }
}

[col-xl-8] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-xl-8] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-xl-8] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-xl-8] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-xl-8] {
    padding: 5px;
  }
}

[col-xl-9] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-xl-9] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-xl-9] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-xl-9] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-xl-9] {
    padding: 5px;
  }
}

[col-xl-10] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-xl-10] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-xl-10] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-xl-10] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-xl-10] {
    padding: 5px;
  }
}

[col-xl-11] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-xl-11] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-xl-11] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-xl-11] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-xl-11] {
    padding: 5px;
  }
}

[col-xl-12] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-xl-12] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-xl-12] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-xl-12] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-xl-12] {
    padding: 5px;
  }
}

[col-xl] {
  padding: 5px;
}

@media (min-width: 576px) {
  [col-xl] {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  [col-xl] {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  [col-xl] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-xl] {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  [col-xl] {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  [col-xl-auto] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  [col-xl-1] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    width: 8.33333%;
    max-width: 8.33333%;
  }
  [col-xl-2] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    width: 16.66667%;
    max-width: 16.66667%;
  }
  [col-xl-3] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    width: 25%;
    max-width: 25%;
  }
  [col-xl-4] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    width: 33.33333%;
    max-width: 33.33333%;
  }
  [col-xl-5] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    width: 41.66667%;
    max-width: 41.66667%;
  }
  [col-xl-6] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
  }
  [col-xl-7] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    width: 58.33333%;
    max-width: 58.33333%;
  }
  [col-xl-8] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    width: 66.66667%;
    max-width: 66.66667%;
  }
  [col-xl-9] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    width: 75%;
    max-width: 75%;
  }
  [col-xl-10] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    width: 83.33333%;
    max-width: 83.33333%;
  }
  [col-xl-11] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    width: 91.66667%;
    max-width: 91.66667%;
  }
  [col-xl-12] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
  [pull-xl-0] {
    right: auto;
  }
  [pull-xl-1] {
    right: 8.33333%;
  }
  [pull-xl-2] {
    right: 16.66667%;
  }
  [pull-xl-3] {
    right: 25%;
  }
  [pull-xl-4] {
    right: 33.33333%;
  }
  [pull-xl-5] {
    right: 41.66667%;
  }
  [pull-xl-6] {
    right: 50%;
  }
  [pull-xl-7] {
    right: 58.33333%;
  }
  [pull-xl-8] {
    right: 66.66667%;
  }
  [pull-xl-9] {
    right: 75%;
  }
  [pull-xl-10] {
    right: 83.33333%;
  }
  [pull-xl-11] {
    right: 91.66667%;
  }
  [pull-xl-12] {
    right: 100%;
  }
  [push-xl-0] {
    left: auto;
  }
  [push-xl-1] {
    left: 8.33333%;
  }
  [push-xl-2] {
    left: 16.66667%;
  }
  [push-xl-3] {
    left: 25%;
  }
  [push-xl-4] {
    left: 33.33333%;
  }
  [push-xl-5] {
    left: 41.66667%;
  }
  [push-xl-6] {
    left: 50%;
  }
  [push-xl-7] {
    left: 58.33333%;
  }
  [push-xl-8] {
    left: 66.66667%;
  }
  [push-xl-9] {
    left: 75%;
  }
  [push-xl-10] {
    left: 83.33333%;
  }
  [push-xl-11] {
    left: 91.66667%;
  }
  [push-xl-12] {
    left: 100%;
  }
  [offset-xl-0] {
    margin-left: 0%;
  }
  [offset-xl-1] {
    margin-left: 8.33333%;
  }
  [offset-xl-2] {
    margin-left: 16.66667%;
  }
  [offset-xl-3] {
    margin-left: 25%;
  }
  [offset-xl-4] {
    margin-left: 33.33333%;
  }
  [offset-xl-5] {
    margin-left: 41.66667%;
  }
  [offset-xl-6] {
    margin-left: 50%;
  }
  [offset-xl-7] {
    margin-left: 58.33333%;
  }
  [offset-xl-8] {
    margin-left: 66.66667%;
  }
  [offset-xl-9] {
    margin-left: 75%;
  }
  [offset-xl-10] {
    margin-left: 83.33333%;
  }
  [offset-xl-11] {
    margin-left: 91.66667%;
  }
}

ion-icon {
  display: inline-block;
  font-size: 1.2em;
}

ion-icon[small] {
  min-height: 1.1em;
  font-size: 1.1em;
}

.icon-ios-primary {
  color: #327eff;
}

.icon-ios-secondary {
  color: #32db64;
}

.icon-ios-danger {
  color: #f53d3d;
}

.icon-ios-light {
  color: #f4f4f4;
}

.icon-ios-dark {
  color: #222;
}

.icon-md-primary {
  color: #327eff;
}

.icon-md-secondary {
  color: #32db64;
}

.icon-md-danger {
  color: #f53d3d;
}

.icon-md-light {
  color: #f4f4f4;
}

.icon-md-dark {
  color: #222;
}

.icon-wp-primary {
  color: #327eff;
}

.icon-wp-secondary {
  color: #32db64;
}

.icon-wp-danger {
  color: #f53d3d;
}

.icon-wp-light {
  color: #f4f4f4;
}

.icon-wp-dark {
  color: #222;
}

ion-img {
  display: inline-block;
  min-width: 20px;
  min-height: 20px;
  background: #eee;
  contain: strict;
}

ion-img img {
  -o-object-fit: cover;
  object-fit: cover;
}

ion-img.img-unloaded img {
  display: none;
}

ion-img.img-loaded img {
  display: block;
}

ion-infinite-scroll {
  display: block;
  width: 100%;
}

ion-infinite-scroll-content {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  min-height: 84px;
}

.infinite-loading {
  display: none;
  width: 100%;
  margin: 0 0 32px;
}

.infinite-loading-text {
  color: #666;
  margin: 4px 32px 0;
}

.infinite-loading-spinner .spinner-ios line,
.infinite-loading-spinner .spinner-ios-small line,
.infinite-loading-spinner .spinner-crescent circle {
  stroke: #666;
}

.infinite-loading-spinner .spinner-bubbles circle,
.infinite-loading-spinner .spinner-circles circle,
.infinite-loading-spinner .spinner-dots circle {
  fill: #666;
}

ion-infinite-scroll-content[state=loading] .infinite-loading {
  display: block;
}

ion-infinite-scroll-content[state=disabled] {
  display: none;
}

ion-input,
ion-textarea {
  position: relative;
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
}

.item-input ion-input,
.item-input ion-textarea {
  position: static;
}

.item.item-textarea {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.text-input {
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  display: inline-block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 92%;
  width: calc(100% - 10px);
  border: 0;
  background: transparent;
}

.text-input::-moz-placeholder {
  color: #999;
}

.text-input:-ms-input-placeholder {
  color: #999;
}

.text-input::-webkit-input-placeholder {
  text-indent: 0;
  color: #999;
}

textarea.text-input {
  display: block;
}

.text-input[disabled] {
  opacity: .4;
}

input.text-input:-webkit-autofill {
  background-color: transparent;
}

.platform-mobile textarea.text-input {
  resize: none;
}

.input-cover {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

.input[disabled] .input-cover {
  pointer-events: none;
}

.item-input-has-focus .input-cover,
.input-has-focus .input-cover {
  display: none;
}

.item-input-has-focus,
.input-has-focus {
  pointer-events: none;
}

.item-input-has-focus input,
.input-has-focus input,
.item-input-has-focus textarea,
.input-has-focus textarea,
.item-input-has-focus a,
.input-has-focus a,
.item-input-has-focus button,
.input-has-focus button {
  pointer-events: auto;
}

.text-input-clear-icon {
  margin: 0;
  padding: 0;
  background-position: center;
  position: absolute;
  top: 0;
  display: none;
  height: 100%;
  background-repeat: no-repeat;
}

.item-input-has-focus.item-input-has-value .text-input-clear-icon,
.input-has-focus.input-has-value .text-input-clear-icon {
  display: block;
}

.text-input-ios {
  margin: 11px 8px 11px 0;
  padding: 0;
  width: calc(100% - 8px);
}

.input-ios .inset-input {
  padding: 5.5px 8px;
  margin: 5.5px 16px 5.5px 0;
}

.item-ios.item-label-stacked .text-input,
.item-ios.item-label-floating .text-input {
  margin-left: 0;
  margin-top: 8px;
  margin-bottom: 8px;
  width: calc(100% - 8px);
}

.item-ios.item-label-stacked .label-ios + .input + .cloned-input,
.item-ios.item-label-floating .label-ios + .input + .cloned-input {
  margin-left: 0;
}

.item-label-stacked .select-ios,
.item-label-floating .select-ios {
  padding-left: 0;
  padding-top: 8px;
  padding-bottom: 8px;
}

.input-ios[clearInput] {
  position: relative;
}

.input-ios[clearInput] .text-input {
  padding-right: 30px;
}

.input-ios .text-input-clear-icon {
  right: 8px;
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><path%20fill='rgba(0,%200,%200,%200.5)'%20d='M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0S484.3,190.1,403.1,108.9z%20M352,340.2L340.2,352l-84.4-84.2l-84,83.8L160,339.8l84-83.8l-84-83.8l11.8-11.8l84,83.8l84.4-84.2l11.8,11.8L267.6,256L352,340.2z'/></svg>");
  width: 30px;
  background-size: 18px;
}

.text-input-md {
  margin: 13px 8px;
  padding: 0;
  width: calc(100% - 8px - 8px);
}

.input-md .inset-input {
  padding: 6.5px 8px;
  margin: 6.5px 16px;
}

.item-md.item-input.item-input-has-focus .item-inner,
.item-md.item-input.input-has-focus .item-inner {
  border-bottom-color: #327eff;
  -webkit-box-shadow: inset 0 -1px 0 0 #327eff;
  box-shadow: inset 0 -1px 0 0 #327eff;
}

.list-md .item-input.item-input-has-focus:last-child,
.list-md .item-input.input-has-focus:last-child {
  border-bottom-color: #327eff;
  -webkit-box-shadow: inset 0 -1px 0 0 #327eff;
  box-shadow: inset 0 -1px 0 0 #327eff;
}

.list-md .item-input.item-input-has-focus:last-child .item-inner,
.list-md .item-input.input-has-focus:last-child .item-inner {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.item-md.item-input.ng-valid.item-input-has-value:not(.input-has-focus):not(.item-input-has-focus) .item-inner,
.item-md.item-input.ng-valid.input-has-value:not(.input-has-focus):not(.item-input-has-focus) .item-inner {
  border-bottom-color: #32db64;
  -webkit-box-shadow: inset 0 -1px 0 0 #32db64;
  box-shadow: inset 0 -1px 0 0 #32db64;
}

.list-md .item-input.ng-valid.item-input-has-value:not(.input-has-focus):not(.item-input-has-focus):last-child,
.list-md .item-input.ng-valid.input-has-value:not(.input-has-focus):not(.item-input-has-focus):last-child {
  border-bottom-color: #32db64;
  -webkit-box-shadow: inset 0 -1px 0 0 #32db64;
  box-shadow: inset 0 -1px 0 0 #32db64;
}

.list-md .item-input.ng-valid.item-input-has-value:not(.input-has-focus):not(.item-input-has-focus):last-child .item-inner,
.list-md .item-input.ng-valid.input-has-value:not(.input-has-focus):not(.item-input-has-focus):last-child .item-inner {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.item-md.item-input.ng-invalid.ng-touched:not(.input-has-focus):not(.item-input-has-focus) .item-inner {
  border-bottom-color: #f53d3d;
  -webkit-box-shadow: inset 0 -1px 0 0 #f53d3d;
  box-shadow: inset 0 -1px 0 0 #f53d3d;
}

.list-md .item-input.ng-invalid.ng-touched:not(.input-has-focus):not(.item-input-has-focus):last-child {
  border-bottom-color: #f53d3d;
  -webkit-box-shadow: inset 0 -1px 0 0 #f53d3d;
  box-shadow: inset 0 -1px 0 0 #f53d3d;
}

.list-md .item-input.ng-invalid.ng-touched:not(.input-has-focus):not(.item-input-has-focus):last-child .item-inner {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.item-label-stacked .text-input-md,
.item-label-floating .text-input-md {
  margin-left: 0;
  margin-top: 8px;
  margin-bottom: 8px;
  width: calc(100% - 8px);
}

.item-label-stacked .select-md,
.item-label-floating .select-md {
  padding-left: 0;
  padding-top: 8px;
  padding-bottom: 8px;
}

.input-md[clearInput] {
  position: relative;
}

.input-md[clearInput] .text-input {
  padding-right: 30px;
}

.input-md .text-input-clear-icon {
  right: 8px;
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><polygon%20fill='%235b5b5b'%20points='405,136.798%20375.202,107%20256,226.202%20136.798,107%20107,136.798%20226.202,256%20107,375.202%20136.798,405%20256,285.798%20375.202,405%20405,375.202%20285.798,256'/></svg>");
  width: 30px;
  background-size: 22px;
}

.text-input-wp {
  margin: 13px 8px;
  padding: 0 8px;
  width: calc(100% - 8px - 8px);
  border: 2px solid rgba(0, 0, 0, 0.5);
  line-height: 3rem;
}

.item-wp .inset-input {
  padding: 6.5px 8px;
  margin: 6.5px 16px;
}

.item-wp.item-input.item-input-has-focus .text-input,
.item-wp.item-input.input-has-focus .text-input {
  border-color: #327eff;
}

.item-wp.item-input.ng-valid.item-input-has-value:not(.input-has-focus):not(.item-input-has-focus) .text-input,
.item-wp.item-input.ng-valid.input-has-value:not(.input-has-focus):not(.item-input-has-focus) .text-input {
  border-color: #32db64;
}

.item-wp.item-input.ng-invalid.ng-touched:not(.input-has-focus):not(.item-input-has-focus) .text-input {
  border-color: #f53d3d;
}

.item-label-stacked .text-input-wp,
.item-label-floating .text-input-wp,
.item-label-stacked .select-wp,
.item-label-floating .select-wp {
  margin-left: 0;
  margin-top: 8px;
  margin-bottom: 8px;
  width: calc(100% - 8px);
}

.item-wp.item-label-stacked [item-right],
.item-wp.item-label-floating [item-right],
.item-wp.item-label-stacked [item-end],
.item-wp.item-label-floating [item-end] {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.input-wp[clearInput] {
  position: relative;
}

.input-wp[clearInput] .text-input {
  padding-right: 30px;
}

.input-wp .text-input-clear-icon {
  right: 8px;
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><polygon%20fill='rgba(0,%200,%200,%200.5)'%20points='405,136.798%20375.202,107%20256,226.202%20136.798,107%20107,136.798%20226.202,256%20107,375.202%20136.798,405%20256,285.798%20375.202,405%20405,375.202%20285.798,256'/></svg>");
  width: 30px;
  background-size: 22px;
}

.item {
  contain: content;
}

.item-block {
  margin: 0;
  padding: 0;
  text-align: initial;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  min-height: 4.4rem;
  border: 0;
  font-weight: normal;
  line-height: normal;
  text-decoration: none;
  color: inherit;
}

.item-inner {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: inherit;
  -webkit-box-direction: inherit;
  -webkit-flex-direction: inherit;
  -ms-flex-direction: inherit;
  flex-direction: inherit;
  -webkit-box-align: inherit;
  -webkit-align-items: inherit;
  -ms-flex-align: inherit;
  align-items: inherit;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  min-height: inherit;
  border: 0;
}

.input-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: inherit;
  -webkit-box-direction: inherit;
  -webkit-flex-direction: inherit;
  -ms-flex-direction: inherit;
  flex-direction: inherit;
  -webkit-box-align: inherit;
  -webkit-align-items: inherit;
  -ms-flex-align: inherit;
  align-items: inherit;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  text-overflow: ellipsis;
}

.item[no-lines],
.item.item[no-lines] .item-inner {
  border: 0;
}

ion-item-group {
  display: block;
}

ion-item-divider {
  margin: 0;
  padding: 0;
  z-index: 100;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  min-height: 30px;
}

ion-item-divider[sticky] {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

[vertical-align-top],
ion-input.item {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.item > ion-icon[small]:first-child,
.item-inner > ion-icon[small]:first-child {
  min-width: 18px;
}

.item > ion-icon:first-child,
.item-inner > ion-icon:first-child {
  text-align: center;
  min-width: 24px;
}

.item > ion-icon,
.item-inner > ion-icon {
  min-height: 2.8rem;
  font-size: 2.8rem;
  line-height: 1;
}

.item > ion-icon[large],
.item-inner > ion-icon[large] {
  min-height: 3.2rem;
  font-size: 3.2rem;
}

.item > ion-icon[small],
.item-inner > ion-icon[small] {
  min-height: 1.8rem;
  font-size: 1.8rem;
}

ion-avatar,
ion-thumbnail {
  display: block;
  line-height: 1;
}

ion-avatar img,
ion-thumbnail img {
  display: block;
}

.item-cover {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  cursor: pointer;
}

ion-reorder {
  -webkit-transform: translate3d(300%,  0,  0);
  transform: translate3d(300%,  0,  0);
  display: none;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 40px;
  height: 100%;
  font-size: 1.7em;
  opacity: .25;
  -webkit-transition: -webkit-transform 140ms ease-in;
  transition: -webkit-transform 140ms ease-in;
  transition: transform 140ms ease-in;
  transition: transform 140ms ease-in, -webkit-transform 140ms ease-in;
  pointer-events: all;
  -ms-touch-action: none;
  touch-action: none;
}

.reorder-side-start ion-reorder {
  -webkit-transform: translate3d(-300%,  0,  0);
  transform: translate3d(-300%,  0,  0);
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
}

ion-reorder ion-icon {
  pointer-events: none;
}

.reorder-enabled ion-reorder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.reorder-visible ion-reorder {
  -webkit-transform: translate3d(0,  0,  0);
  transform: translate3d(0,  0,  0);
}

.reorder-list-active .item,
.reorder-list-active .item-wrapper {
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
  will-change: transform;
}

.reorder-list-active .item-inner {
  pointer-events: none;
}

.item-wrapper.reorder-active,
.item.reorder-active,
.reorder-active {
  z-index: 4;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  opacity: .8;
  -webkit-transition: none;
  transition: none;
  pointer-events: none;
}

ion-item-sliding {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
}

ion-item-sliding .item {
  position: static;
}

ion-item-options {
  position: absolute;
  z-index: 1;
  display: none;
  height: 100%;
  font-size: 14px;
  visibility: hidden;
  top: 0;
  right: 0;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

ion-item-options[side=left] {
  right: auto;
  left: 0;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

ion-item-options .button {
  margin: 0;
  padding: 0 0.7em;
  border-radius: 0;
  height: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

ion-item-options .button:last-child {
  padding-right: 0.7em;
}

@media screen and (orientation: landscape) {
  ion-item-options .button:last-child {
    padding-right: calc(constant(safe-area-inset-right) + 0.7em);
    padding-right: calc(env(safe-area-inset-right) + 0.7em);
  }
}

ion-item-options:not([icon-left]) .button:not([icon-only]) .button-inner,
ion-item-options:not([icon-start]) .button:not([icon-only]) .button-inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

ion-item-options:not([icon-left]) .button:not([icon-only]) ion-icon,
ion-item-options:not([icon-start]) .button:not([icon-only]) ion-icon {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0.3em;
}

ion-item-sliding.active-slide .item,
ion-item-sliding.active-slide .item.activated {
  position: relative;
  z-index: 2;
  opacity: 1;
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.36, 0.66, 0.04, 1);
  transition: -webkit-transform 500ms cubic-bezier(0.36, 0.66, 0.04, 1);
  transition: transform 500ms cubic-bezier(0.36, 0.66, 0.04, 1);
  transition: transform 500ms cubic-bezier(0.36, 0.66, 0.04, 1), -webkit-transform 500ms cubic-bezier(0.36, 0.66, 0.04, 1);
  pointer-events: none;
  will-change: transform;
}

ion-item-sliding.active-slide ion-item-options {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

ion-item-sliding.active-slide.active-options-left ion-item-options[side=left],
ion-item-sliding.active-slide.active-options-right ion-item-options:not([side=left]) {
  width: 100%;
  visibility: visible;
}

button[expandable] {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition-duration: 0;
  transition-duration: 0;
  -webkit-transition-property: none;
  transition-property: none;
  -webkit-transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
  transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
}

ion-item-sliding.active-swipe-right button[expandable] {
  -webkit-transition-duration: .6s;
  transition-duration: .6s;
  -webkit-transition-property: padding-left;
  transition-property: padding-left;
  padding-left: 90%;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

ion-item-sliding.active-swipe-left button[expandable] {
  -webkit-transition-duration: .6s;
  transition-duration: .6s;
  -webkit-transition-property: padding-right;
  transition-property: padding-right;
  padding-right: 90%;
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
}

.item-ios {
  padding-left: 16px;
  padding-left: 16px;
  border-radius: 0;
  position: relative;
  font-size: 1.7rem;
  color: #000;
  background-color: #fff;
  -webkit-transition: background-color 200ms linear;
  transition: background-color 200ms linear;
}

@media screen and (orientation: landscape) {
  .item-ios {
    padding-left: calc(constant(safe-area-inset-left) + 16px);
    padding-left: calc(env(safe-area-inset-left) + 16px);
  }
}

.item-ios.activated {
  background-color: #d9d9d9;
  -webkit-transition-duration: 0ms;
  transition-duration: 0ms;
}

.item-ios h1 {
  margin: 0 0 2px;
  font-size: 2.4rem;
  font-weight: normal;
}

.item-ios h2 {
  margin: 0 0 2px;
  font-size: 1.7rem;
  font-weight: normal;
}

.item-ios h3,
.item-ios h4,
.item-ios h5,
.item-ios h6 {
  margin: 0 0 3px;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: normal;
}

.item-ios p {
  overflow: inherit;
  font-size: 1.4rem;
  line-height: normal;
  text-overflow: inherit;
  color: #8e9093;
  margin: 0 0 2px;
}

.item-ios h2:last-child,
.item-ios h3:last-child,
.item-ios h4:last-child,
.item-ios h5:last-child,
.item-ios h6:last-child,
.item-ios p:last-child {
  margin-bottom: 0;
}

.item-ios.item-block .item-inner {
  padding-right: 8px;
  padding-right: 8px;
  border-bottom: 0.55px solid #c8c7cc;
}

@media screen and (orientation: landscape) {
  .item-ios.item-block .item-inner {
    padding-right: calc(constant(safe-area-inset-right) + 8px);
    padding-right: calc(env(safe-area-inset-right) + 8px);
  }
}

.item-ios [item-left],
.item-ios [item-start] {
  margin: 8px 16px 8px 0;
}

.item-ios [item-right],
.item-ios [item-end] {
  margin: 8px;
}

.item-ios ion-icon[item-left],
.item-ios ion-icon[item-right],
.item-ios ion-icon[item-start],
.item-ios ion-icon[item-end] {
  margin-left: 0;
  margin-top: 9px;
  margin-bottom: 8px;
}

.item-ios .item-button {
  padding: 0 0.5em;
  height: 24px;
  font-size: 1.3rem;
}

.item-ios .item-button[icon-only] ion-icon,
.item-ios .item-button[icon-only] {
  padding: 0 1px;
}

.item-ios ion-avatar[item-left],
.item-ios ion-thumbnail[item-left],
.item-ios ion-avatar[item-start],
.item-ios ion-thumbnail[item-start] {
  margin: 8px 16px 8px 0;
}

.item-ios ion-avatar[item-right],
.item-ios ion-thumbnail[item-right],
.item-ios ion-avatar[item-end],
.item-ios ion-thumbnail[item-end] {
  margin: 8px;
}

.item-ios ion-avatar {
  min-width: 36px;
  min-height: 36px;
}

.item-ios ion-avatar ion-img,
.item-ios ion-avatar img {
  border-radius: 50%;
  overflow: hidden;
  width: 36px;
  height: 36px;
}

.item-ios ion-thumbnail {
  min-width: 56px;
  min-height: 56px;
}

.item-ios ion-thumbnail ion-img,
.item-ios ion-thumbnail img {
  width: 56px;
  height: 56px;
}

.item-ios[detail-push] .item-inner,
button.item-ios:not([detail-none]) .item-inner,
a.item-ios:not([detail-none]) .item-inner {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2012%2020'><path%20d='M2,20l-2-2l8-8L0,2l2-2l10,10L2,20z'%20fill='%23c8c7cc'/></svg>");
  padding-right: 32px;
  background-position: right 14px center;
  background-position: right calc(14px + constant(safe-area-inset-right)) center;
  background-position: right calc(14px + env(safe-area-inset-right)) center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
}

ion-item-group .item-ios:first-child .item-inner {
  border-top-width: 0;
}

ion-item-group .item-ios:last-child .item-inner,
ion-item-group .item-wrapper:last-child .item-ios .item-inner {
  border: 0;
}

.item-divider-ios {
  padding-left: 16px;
  padding-left: 16px;
  color: #222;
  background-color: #f7f7f7;
}

@media screen and (orientation: landscape) {
  .item-divider-ios {
    padding-left: calc(constant(safe-area-inset-left) + 16px);
    padding-left: calc(env(safe-area-inset-left) + 16px);
  }
}

.item-ios .text-ios-primary {
  color: #327eff;
}

.item-ios-primary,
.item-divider-ios-primary {
  color: #fff;
  background-color: #327eff;
}

.item-ios-primary p,
.item-divider-ios-primary p {
  color: #fff;
}

.item-ios-primary.activated,
.item-divider-ios-primary.activated {
  background-color: #2e74eb;
}

.item-ios .text-ios-secondary {
  color: #32db64;
}

.item-ios-secondary,
.item-divider-ios-secondary {
  color: #fff;
  background-color: #32db64;
}

.item-ios-secondary p,
.item-divider-ios-secondary p {
  color: #fff;
}

.item-ios-secondary.activated,
.item-divider-ios-secondary.activated {
  background-color: #2ec95c;
}

.item-ios .text-ios-danger {
  color: #f53d3d;
}

.item-ios-danger,
.item-divider-ios-danger {
  color: #fff;
  background-color: #f53d3d;
}

.item-ios-danger p,
.item-divider-ios-danger p {
  color: #fff;
}

.item-ios-danger.activated,
.item-divider-ios-danger.activated {
  background-color: #e13838;
}

.item-ios .text-ios-light {
  color: #f4f4f4;
}

.item-ios-light,
.item-divider-ios-light {
  color: #000;
  background-color: #f4f4f4;
}

.item-ios-light p,
.item-divider-ios-light p {
  color: #000;
}

.item-ios-light.activated,
.item-divider-ios-light.activated {
  background-color: #e0e0e0;
}

.item-ios .text-ios-dark {
  color: #222;
}

.item-ios-dark,
.item-divider-ios-dark {
  color: #fff;
  background-color: #222;
}

.item-ios-dark p,
.item-divider-ios-dark p {
  color: #fff;
}

.item-ios-dark.activated,
.item-divider-ios-dark.activated {
  background-color: #343434;
}

.list-ios ion-item-sliding {
  background-color: #fff;
}

.item-md {
  padding-left: 16px;
  padding-right: 0;
  position: relative;
  font-size: 1.6rem;
  font-weight: normal;
  text-transform: none;
  color: #000;
  background-color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.item-md.activated {
  background-color: #f1f1f1;
}

.item-md[no-lines] {
  border-width: 0;
}

.item-md h1 {
  margin: 0 0 2px;
  font-size: 2.4rem;
  font-weight: normal;
}

.item-md h2 {
  margin: 2px 0;
  font-size: 1.6rem;
  font-weight: normal;
}

.item-md h3,
.item-md h4,
.item-md h5,
.item-md h6 {
  margin: 2px 0;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: normal;
}

.item-md p {
  margin: 0 0 2px;
  overflow: inherit;
  font-size: 1.4rem;
  line-height: normal;
  text-overflow: inherit;
  color: #666;
}

.item-md.item-block .item-inner {
  padding-right: 8px;
  border-bottom: 1px solid #dedede;
}

.item-md [item-left],
.item-md [item-right],
.item-md [item-start],
.item-md [item-end] {
  margin: 9px 8px 9px 0;
}

.item-md ion-icon[item-left],
.item-md ion-icon[item-right],
.item-md ion-icon[item-start],
.item-md ion-icon[item-end] {
  margin-left: 0;
  margin-top: 11px;
  margin-bottom: 10px;
}

.item-md .item-button {
  padding: 0 0.6em;
  height: 25px;
  font-size: 1.2rem;
}

.item-md .item-button[icon-only] ion-icon,
.item-md .item-button[icon-only] {
  padding: 0 1px;
}

.item-md ion-icon[item-left] + .item-inner,
.item-md ion-icon[item-left] + .item-input,
.item-md ion-icon[item-start] + .item-inner,
.item-md ion-icon[item-start] + .item-input {
  margin-left: 24px;
}

.item-md ion-avatar[item-left],
.item-md ion-thumbnail[item-left],
.item-md ion-avatar[item-start],
.item-md ion-thumbnail[item-start] {
  margin: 8px 16px 8px 0;
}

.item-md ion-avatar[item-right],
.item-md ion-thumbnail[item-right],
.item-md ion-avatar[item-end],
.item-md ion-thumbnail[item-end] {
  margin: 8px;
}

.item-md ion-avatar {
  min-width: 40px;
  min-height: 40px;
}

.item-md ion-avatar ion-img,
.item-md ion-avatar img {
  border-radius: 50%;
  overflow: hidden;
  width: 40px;
  height: 40px;
}

.item-md ion-thumbnail {
  min-width: 80px;
  min-height: 80px;
}

.item-md ion-thumbnail ion-img,
.item-md ion-thumbnail img {
  width: 80px;
  height: 80px;
}

ion-item-group .item-md:first-child .item-inner {
  border-top-width: 0;
}

ion-item-group .item-md:last-child .item-inner,
ion-item-group .item-md .item-wrapper:last-child .item-inner {
  border: 0;
}

.item-divider-md {
  padding-left: 16px;
  border-bottom: 1px solid #dedede;
  font-size: 1.4rem;
  color: #858585;
  background-color: #fff;
}

.item-md .text-md-primary {
  color: #327eff;
}

.item-md-primary,
.item-divider-md-primary {
  color: #fff;
  background-color: #327eff;
}

.item-md-primary p,
.item-divider-md-primary p {
  color: #fff;
}

.item-md-primary.activated,
.item-divider-md-primary.activated {
  background-color: #2e74eb;
}

.item-md .text-md-secondary {
  color: #32db64;
}

.item-md-secondary,
.item-divider-md-secondary {
  color: #fff;
  background-color: #32db64;
}

.item-md-secondary p,
.item-divider-md-secondary p {
  color: #fff;
}

.item-md-secondary.activated,
.item-divider-md-secondary.activated {
  background-color: #2ec95c;
}

.item-md .text-md-danger {
  color: #f53d3d;
}

.item-md-danger,
.item-divider-md-danger {
  color: #fff;
  background-color: #f53d3d;
}

.item-md-danger p,
.item-divider-md-danger p {
  color: #fff;
}

.item-md-danger.activated,
.item-divider-md-danger.activated {
  background-color: #e13838;
}

.item-md .text-md-light {
  color: #f4f4f4;
}

.item-md-light,
.item-divider-md-light {
  color: #000;
  background-color: #f4f4f4;
}

.item-md-light p,
.item-divider-md-light p {
  color: #000;
}

.item-md-light.activated,
.item-divider-md-light.activated {
  background-color: #e0e0e0;
}

.item-md .text-md-dark {
  color: #222;
}

.item-md-dark,
.item-divider-md-dark {
  color: #fff;
  background-color: #222;
}

.item-md-dark p,
.item-divider-md-dark p {
  color: #fff;
}

.item-md-dark.activated,
.item-divider-md-dark.activated {
  background-color: #343434;
}

.list-md ion-item-sliding {
  background-color: #fff;
}

.item-md ion-reorder {
  font-size: 1.5em;
  opacity: .3;
}

.item-wp {
  padding-left: 16px;
  padding-right: 0;
  position: relative;
  font-size: 1.6rem;
  font-weight: normal;
  text-transform: none;
  color: #000;
  background-color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.item-wp.activated {
  background-color: #aaa;
}

.item-wp[no-lines] {
  border-width: 0;
}

.item-wp h1 {
  margin: 0 0 2px;
  font-size: 2.4rem;
  font-weight: normal;
}

.item-wp h2 {
  margin: 2px 0;
  font-size: 1.6rem;
  font-weight: normal;
}

.item-wp h3,
.item-wp h4,
.item-wp h5,
.item-wp h6 {
  margin: 2px 0;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: normal;
}

.item-wp p {
  margin: 0 0 2px;
  overflow: inherit;
  font-size: 1.4rem;
  line-height: normal;
  text-overflow: inherit;
  color: #666;
}

.item-wp.item-block .item-inner {
  padding-right: 8px;
  border-bottom: 1px solid transparent;
}

.item-wp [item-left],
.item-wp [item-right],
.item-wp [item-start],
.item-wp [item-end] {
  margin: 9px 8px 9px 0;
}

.item-wp ion-icon[item-left],
.item-wp ion-icon[item-right],
.item-wp ion-icon[item-start],
.item-wp ion-icon[item-end] {
  margin-left: 0;
  margin-top: 11px;
  margin-bottom: 10px;
}

.item-wp .item-button {
  padding: 0 0.6em;
  height: 25px;
  font-size: 1.2rem;
}

.item-wp .item-button[icon-only] ion-icon,
.item-wp .item-button[icon-only] {
  padding: 0 1px;
}

.item-wp[text-wrap] ion-label {
  font-size: 1.4rem;
  line-height: 1.5;
}

.item-wp ion-icon[item-left] + .item-inner,
.item-wp ion-icon[item-left] + .item-input,
.item-wp ion-icon[item-start] + .item-inner,
.item-wp ion-icon[item-start] + .item-input {
  margin-left: 8px;
}

.item-wp ion-avatar[item-left],
.item-wp ion-thumbnail[item-left],
.item-wp ion-avatar[item-start],
.item-wp ion-thumbnail[item-start] {
  margin: 8px 16px 8px 0;
}

.item-wp ion-avatar[item-right],
.item-wp ion-thumbnail[item-right],
.item-wp ion-avatar[item-end],
.item-wp ion-thumbnail[item-end] {
  margin: 8px;
}

.item-wp ion-avatar {
  min-width: 40px;
  min-height: 40px;
}

.item-wp ion-avatar ion-img,
.item-wp ion-avatar img {
  border-radius: 50%;
  overflow: hidden;
  width: 40px;
  height: 40px;
}

.item-wp ion-thumbnail {
  min-width: 80px;
  min-height: 80px;
}

.item-wp ion-thumbnail ion-img,
.item-wp ion-thumbnail img {
  width: 80px;
  height: 80px;
}

.item-divider-wp {
  padding-left: 16px;
  border-bottom: 1px solid transparent;
  font-size: 2rem;
  color: #000;
  background-color: #fff;
}

.item-wp .text-wp-primary {
  color: #327eff;
}

.item-wp-primary,
.item-divider-wp-primary {
  color: #fff;
  background-color: #327eff;
}

.item-wp-primary p,
.item-divider-wp-primary p {
  color: #fff;
}

.item-wp-primary.activated,
.item-divider-wp-primary.activated {
  background-color: #2e74eb;
}

.item-wp .text-wp-secondary {
  color: #32db64;
}

.item-wp-secondary,
.item-divider-wp-secondary {
  color: #fff;
  background-color: #32db64;
}

.item-wp-secondary p,
.item-divider-wp-secondary p {
  color: #fff;
}

.item-wp-secondary.activated,
.item-divider-wp-secondary.activated {
  background-color: #2ec95c;
}

.item-wp .text-wp-danger {
  color: #f53d3d;
}

.item-wp-danger,
.item-divider-wp-danger {
  color: #fff;
  background-color: #f53d3d;
}

.item-wp-danger p,
.item-divider-wp-danger p {
  color: #fff;
}

.item-wp-danger.activated,
.item-divider-wp-danger.activated {
  background-color: #e13838;
}

.item-wp .text-wp-light {
  color: #f4f4f4;
}

.item-wp-light,
.item-divider-wp-light {
  color: #000;
  background-color: #f4f4f4;
}

.item-wp-light p,
.item-divider-wp-light p {
  color: #000;
}

.item-wp-light.activated,
.item-divider-wp-light.activated {
  background-color: #e0e0e0;
}

.item-wp .text-wp-dark {
  color: #222;
}

.item-wp-dark,
.item-divider-wp-dark {
  color: #fff;
  background-color: #222;
}

.item-wp-dark p,
.item-divider-wp-dark p {
  color: #fff;
}

.item-wp-dark.activated,
.item-divider-wp-dark.activated {
  background-color: #343434;
}

.list-wp ion-item-sliding {
  background-color: #fff;
}

ion-label {
  margin: 0;
  display: block;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.item-input ion-label {
  -webkit-box-flex: initial;
  -webkit-flex: initial;
  -ms-flex: initial;
  flex: initial;
  max-width: 200px;
  pointer-events: none;
}

[text-wrap] ion-label {
  white-space: normal;
}

ion-label[fixed] {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100px;
  -ms-flex: 0 0 100px;
  flex: 0 0 100px;
  width: 100px;
  min-width: 100px;
  max-width: 200px;
}

.item-label-stacked ion-label,
.item-label-floating ion-label {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  width: auto;
  max-width: 100%;
}

ion-label[stacked],
ion-label[floating] {
  margin-bottom: 0;
}

.item-label-stacked .input-wrapper,
.item-label-floating .input-wrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.item-label-stacked ion-select,
.item-label-floating ion-select {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  max-width: 100%;
}

.label-ios {
  margin: 11px 8px 11px 0;
}

.label-ios + ion-input .text-input,
.label-ios + ion-textarea .text-input,
.label-ios + .input + .cloned-input {
  margin-left: 16px;
  width: calc(100% - (16px / 2) - 16px);
}

.label-ios[stacked] {
  margin-bottom: 4px;
  font-size: 1.2rem;
}

.label-ios[floating] {
  margin-bottom: 0;
  -webkit-transform: translate3d(0,  27px,  0);
  transform: translate3d(0,  27px,  0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: -webkit-transform 150ms ease-in-out;
  transition: -webkit-transform 150ms ease-in-out;
  transition: transform 150ms ease-in-out;
  transition: transform 150ms ease-in-out, -webkit-transform 150ms ease-in-out;
}

.item-input-has-focus .label-ios[floating],
.input-has-focus .label-ios[floating],
.item-input-has-value .label-ios[floating],
.input-has-value .label-ios[floating] {
  -webkit-transform: translate3d(0,  0,  0) scale(0.8);
  transform: translate3d(0,  0,  0) scale(0.8);
}

.item-ios.item-label-stacked [item-right],
.item-ios.item-label-floating [item-right],
.item-ios.item-label-stacked [item-end],
.item-ios.item-label-floating [item-end] {
  margin-top: 6px;
  margin-bottom: 6px;
}

.label-ios-primary,
.item-input .label-ios-primary,
.item-select .label-ios-primary,
.item-datetime .label-ios-primary {
  color: #327eff;
}

.label-ios-secondary,
.item-input .label-ios-secondary,
.item-select .label-ios-secondary,
.item-datetime .label-ios-secondary {
  color: #32db64;
}

.label-ios-danger,
.item-input .label-ios-danger,
.item-select .label-ios-danger,
.item-datetime .label-ios-danger {
  color: #f53d3d;
}

.label-ios-light,
.item-input .label-ios-light,
.item-select .label-ios-light,
.item-datetime .label-ios-light {
  color: #f4f4f4;
}

.label-ios-dark,
.item-input .label-ios-dark,
.item-select .label-ios-dark,
.item-datetime .label-ios-dark {
  color: #222;
}

.label-md {
  margin: 13px 8px 13px 0;
}

[text-wrap] .label-md {
  font-size: 1.4rem;
  line-height: 1.5;
}

.item-input .label-md,
.item-select .label-md,
.item-datetime .label-md {
  color: #999;
}

.label-md[stacked] {
  font-size: 1.2rem;
}

.label-md[floating] {
  -webkit-transform: translate3d(0,  27px,  0);
  transform: translate3d(0,  27px,  0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: -webkit-transform 150ms ease-in-out;
  transition: -webkit-transform 150ms ease-in-out;
  transition: transform 150ms ease-in-out;
  transition: transform 150ms ease-in-out, -webkit-transform 150ms ease-in-out;
}

.label-md[stacked],
.label-md[floating] {
  margin-left: 0;
  margin-bottom: 0;
}

.item-input-has-focus .label-md[stacked],
.input-has-focus .label-md[stacked],
.item-input-has-focus .label-md[floating],
.input-has-focus .label-md[floating] {
  color: #327eff;
}

.item-input-has-focus .label-md[floating],
.input-has-focus .label-md[floating],
.item-input-has-value .label-md[floating],
.input-has-value .label-md[floating] {
  -webkit-transform: translate3d(0,  0,  0) scale(0.8);
  transform: translate3d(0,  0,  0) scale(0.8);
}

.item-md.item-label-stacked [item-right],
.item-md.item-label-floating [item-right],
.item-md.item-label-stacked [item-end],
.item-md.item-label-floating [item-end] {
  margin-top: 7px;
  margin-bottom: 7px;
}

.label-md-primary,
.item-input .label-md-primary,
.item-select .label-md-primary,
.item-datetime .label-md-primary {
  color: #327eff;
}

.label-md-secondary,
.item-input .label-md-secondary,
.item-select .label-md-secondary,
.item-datetime .label-md-secondary {
  color: #32db64;
}

.label-md-danger,
.item-input .label-md-danger,
.item-select .label-md-danger,
.item-datetime .label-md-danger {
  color: #f53d3d;
}

.label-md-light,
.item-input .label-md-light,
.item-select .label-md-light,
.item-datetime .label-md-light {
  color: #f4f4f4;
}

.label-md-dark,
.item-input .label-md-dark,
.item-select .label-md-dark,
.item-datetime .label-md-dark {
  color: #222;
}

.label-wp {
  margin: 13px 8px 13px 0;
}

.item-input .label-wp,
.item-select .label-wp,
.item-datetime .label-wp {
  color: #999;
}

.label-wp[stacked] {
  font-size: 1.2rem;
}

.label-wp[floating] {
  -webkit-transform: translate3d(8px,  34px,  0);
  transform: translate3d(8px,  34px,  0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.label-wp[stacked],
.label-wp[floating] {
  margin-left: 0;
  margin-bottom: 0;
}

.item-input-has-focus .label-wp[stacked],
.input-has-focus .label-wp[stacked],
.item-input-has-focus .label-wp[floating],
.input-has-focus .label-wp[floating] {
  color: #327eff;
}

.item-input-has-focus .label-wp[floating],
.input-has-focus .label-wp[floating],
.item-input-has-value .label-wp[floating],
.input-has-value .label-wp[floating] {
  -webkit-transform: translate3d(0,  0,  0) scale(0.8);
  transform: translate3d(0,  0,  0) scale(0.8);
}

.item-wp.item-label-stacked [item-right],
.item-wp.item-label-floating [item-right],
.item-wp.item-label-stacked [item-end],
.item-wp.item-label-floating [item-end] {
  margin-top: 13px;
  margin-bottom: 13px;
}

.label-wp-primary,
.item-input .label-wp-primary,
.item-select .label-wp-primary,
.item-datetime .label-wp-primary {
  color: #327eff;
}

.label-wp-secondary,
.item-input .label-wp-secondary,
.item-select .label-wp-secondary,
.item-datetime .label-wp-secondary {
  color: #32db64;
}

.label-wp-danger,
.item-input .label-wp-danger,
.item-select .label-wp-danger,
.item-datetime .label-wp-danger {
  color: #f53d3d;
}

.label-wp-light,
.item-input .label-wp-light,
.item-select .label-wp-light,
.item-datetime .label-wp-light {
  color: #f4f4f4;
}

.label-wp-dark,
.item-input .label-wp-dark,
.item-select .label-wp-dark,
.item-datetime .label-wp-dark {
  color: #222;
}

ion-list-header {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  min-height: 4rem;
}

ion-list {
  margin: 0;
  padding: 0;
  display: block;
  list-style-type: none;
}

ion-list[inset] {
  overflow: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.list-ios {
  margin: -1px 0 32px;
}

.list-ios > .item-block:first-child {
  border-top: 0.55px solid #c8c7cc;
}

.list-ios > .item-block:last-child,
.list-ios > .item-wrapper:last-child .item-block {
  border-bottom: 0.55px solid #c8c7cc;
}

.list-ios > .item-block:last-child .item-inner,
.list-ios > .item-wrapper:last-child .item-block .item-inner {
  border-bottom: 0;
}

.list-ios .item-block .item-inner {
  border-bottom: 0.55px solid #c8c7cc;
}

.list-ios .item[no-lines],
.list-ios .item[no-lines] .item-inner {
  border-width: 0;
}

.list-ios ion-item-options {
  border-bottom: 0.55px solid #c8c7cc;
}

.list-ios ion-item-options .button {
  margin: 0;
  border-radius: 0;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  min-height: 100%;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.list-ios ion-item-options .button::before {
  margin: 0 auto;
}

.list-ios:not([inset]) + .list-ios:not([inset]) ion-list-header {
  margin-top: -10px;
  padding-top: 0;
}

.list-ios[inset] {
  margin: 16px;
  border-radius: 4px;
}

.list-ios[inset] ion-list-header {
  background-color: #fff;
}

.list-ios[inset] .item {
  border-bottom: 1px solid #c8c7cc;
}

.list-ios[inset] .item-inner {
  border-bottom: 0;
}

.list-ios[inset] > .item:first-child,
.list-ios[inset] > .item-wrapper:first-child .item {
  border-top: 0;
}

.list-ios[inset] > .item:last-child,
.list-ios[inset] > .item-wrapper:last-child .item {
  border-bottom: 0;
}

.list-ios[inset] + ion-list[inset] {
  margin-top: 0;
}

.list-ios[no-lines] ion-list-header,
.list-ios[no-lines] ion-item-options,
.list-ios[no-lines] .item,
.list-ios[no-lines] .item .item-inner {
  border-width: 0;
}

.list-header-ios {
  padding-left: 16px;
  padding-left: 16px;
  position: relative;
  border-bottom: 0.55px solid #c8c7cc;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: #333;
  background: transparent;
}

@media screen and (orientation: landscape) {
  .list-header-ios {
    padding-left: calc(constant(safe-area-inset-left) + 16px);
    padding-left: calc(env(safe-area-inset-left) + 16px);
  }
}

.list-header-ios-primary {
  color: #fff;
  background-color: #327eff;
}

.list-header-ios-secondary {
  color: #fff;
  background-color: #32db64;
}

.list-header-ios-danger {
  color: #fff;
  background-color: #f53d3d;
}

.list-header-ios-light {
  color: #000;
  background-color: #f4f4f4;
}

.list-header-ios-dark {
  color: #fff;
  background-color: #222;
}

.list-md {
  margin: -1px 0 16px;
}

.list-md .item-block .item-inner {
  border-bottom: 1px solid #dedede;
}

.list-md > .item-block:last-child ion-label,
.list-md > .item-block:last-child .item-inner,
.list-md > .item-wrapper:last-child ion-label,
.list-md > .item-wrapper:last-child .item-inner {
  border-bottom: 0;
}

.list-md > ion-input:last-child::after {
  left: 0;
}

.list-md ion-item-options {
  border-bottom: 1px solid #dedede;
}

.list-md ion-item-options .button {
  margin: 0;
  border-radius: 0;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.list-md ion-item-options .button::before {
  margin: 0 auto;
}

.list-md .item[no-lines],
.list-md .item[no-lines] .item-inner {
  border-width: 0;
}

.list-md + ion-list ion-list-header {
  margin-top: -16px;
}

.list-md[inset] {
  margin: 16px;
  border-radius: 2px;
}

.list-md[inset] .item:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  border-top-width: 0;
}

.list-md[inset] .item:last-child {
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-bottom-width: 0;
}

.list-md[inset] .item-input {
  padding-left: 0;
  padding-right: 0;
}

.list-md[inset] + ion-list[inset] {
  margin-top: 0;
}

.list-md[inset] ion-list-header {
  background-color: #fff;
}

.list-md[no-lines] .item-block,
.list-md[no-lines] ion-item-options,
.list-md[no-lines] .item .item-inner {
  border-width: 0;
}

.list-header-md {
  padding-left: 16px;
  margin-bottom: 13px;
  min-height: 4.5rem;
  border-top: 1px solid #dedede;
  font-size: 1.4rem;
  color: #757575;
}

.list-header-md-primary {
  color: #fff;
  background-color: #327eff;
}

.list-header-md-secondary {
  color: #fff;
  background-color: #32db64;
}

.list-header-md-danger {
  color: #fff;
  background-color: #f53d3d;
}

.list-header-md-light {
  color: #000;
  background-color: #f4f4f4;
}

.list-header-md-dark {
  color: #fff;
  background-color: #222;
}

.list-md .item-input:last-child {
  border-bottom: 1px solid #dedede;
}

.list-wp {
  margin: 0 0 16px;
}

.list-wp .item-block .item-inner {
  border-bottom: 1px solid transparent;
}

.list-wp > .item-block:first-child,
.list-wp > .item-wrapper:first-child .item-block {
  border-top: 1px solid transparent;
}

.list-wp > .item-block:last-child,
.list-wp > .item-wrapper:last-child .item-block {
  border-bottom: 1px solid transparent;
}

.list-wp > .item-block:last-child ion-label,
.list-wp > .item-block:last-child .item-inner,
.list-wp > .item-wrapper:last-child ion-label,
.list-wp > .item-wrapper:last-child .item-inner {
  border-bottom: 0;
}

.list-wp > ion-input:last-child::after {
  left: 0;
}

.list-wp ion-item-options .button {
  margin: 1px 0;
  border-radius: 0;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: calc(100% - 2px);
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.list-wp ion-item-options .button::before {
  margin: 0 auto;
}

.list-wp .item[no-lines],
.list-wp .item[no-lines] .item-inner {
  border-width: 0;
}

.list-wp + ion-list ion-list-header {
  margin-top: -16px;
  padding-top: 0;
}

.list-wp[inset] {
  margin: 16px;
  border-radius: 2px;
}

.list-wp[inset] .item:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  border-top-width: 0;
}

.list-wp[inset] .item:last-child {
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-bottom-width: 0;
}

.list-wp[inset] .item-input {
  padding-left: 0;
  padding-right: 0;
}

.list-wp[inset] + ion-list[inset] {
  margin-top: 0;
}

.list-wp[inset] ion-list-header {
  background-color: #fff;
}

.list-wp[no-lines] .item,
.list-wp[no-lines] .item .item-inner {
  border-width: 0;
}

.list-header-wp {
  padding-left: 16px;
  border-bottom: 1px solid transparent;
  font-size: 2rem;
  color: #000;
}

.list-header-wp-primary {
  color: #fff;
  background-color: #327eff;
}

.list-header-wp-secondary {
  color: #fff;
  background-color: #32db64;
}

.list-header-wp-danger {
  color: #fff;
  background-color: #f53d3d;
}

.list-header-wp-light {
  color: #000;
  background-color: #f4f4f4;
}

.list-header-wp-dark {
  color: #fff;
  background-color: #222;
}

ion-loading {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  contain: strict;
}

.loading-wrapper {
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
}

.loading-ios .loading-wrapper {
  border-radius: 8px;
  max-width: 270px;
  max-height: 90%;
  color: #000;
  background: #f8f8f8;
  padding: 24px 34px;
}

.loading-ios .loading-content {
  font-weight: bold;
}

.loading-ios .loading-spinner + .loading-content {
  margin-left: 16px;
}

.loading-ios .spinner-ios line,
.loading-ios .spinner-ios-small line {
  stroke: #69717d;
}

.loading-ios .spinner-bubbles circle {
  fill: #69717d;
}

.loading-ios .spinner-circles circle {
  fill: #69717d;
}

.loading-ios .spinner-crescent circle {
  stroke: #69717d;
}

.loading-ios .spinner-dots circle {
  fill: #69717d;
}

.loading-md .loading-wrapper {
  border-radius: 2px;
  max-width: 280px;
  max-height: 90%;
  color: rgba(0, 0, 0, 0.5);
  background: #fafafa;
  -webkit-box-shadow: 0 16px 20px rgba(0, 0, 0, 0.4);
  box-shadow: 0 16px 20px rgba(0, 0, 0, 0.4);
  padding: 24px;
}

.loading-md .loading-spinner + .loading-content {
  margin-left: 16px;
}

.loading-md .spinner-ios line,
.loading-md .spinner-ios-small line {
  stroke: #327eff;
}

.loading-md .spinner-bubbles circle {
  fill: #327eff;
}

.loading-md .spinner-circles circle {
  fill: #327eff;
}

.loading-md .spinner-crescent circle {
  stroke: #327eff;
}

.loading-md .spinner-dots circle {
  fill: #327eff;
}

.loading-wp .loading-wrapper {
  border-radius: 2px;
  max-width: 280px;
  max-height: 90%;
  color: #fff;
  background: #000;
  padding: 20px;
}

.loading-wp .loading-spinner + .loading-content {
  margin-left: 16px;
}

.loading-wp .spinner-ios line,
.loading-wp .spinner-ios-small line {
  stroke: #fff;
}

.loading-wp .spinner-bubbles circle {
  fill: #fff;
}

.loading-wp .spinner-circles circle {
  fill: #fff;
}

.loading-wp .spinner-crescent circle {
  stroke: #fff;
}

.loading-wp .spinner-dots circle {
  fill: #fff;
}

ion-menu {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  display: none;
  contain: strict;
}

ion-menu.show-menu {
  display: block;
}

.menu-inner {
  left: 0;
  right: auto;
  top: 0;
  bottom: 0;
  -webkit-transform: translate3d(-9999px,  0,  0);
  transform: translate3d(-9999px,  0,  0);
  position: absolute;
  display: block;
  width: 304px;
  height: 100%;
  contain: strict;
}

.menu-inner > ion-header,
.menu-inner > ion-content,
.menu-inner > ion-footer {
  position: absolute;
}

ion-menu[side=left] > .menu-inner {
  right: auto;
  left: 0;
}

ion-menu[side=right] > .menu-inner {
  right: 0;
  left: auto;
}

ion-menu[side=end] > .menu-inner {
  left: auto;
  right: 0;
}

ion-menu ion-backdrop {
  z-index: -1;
  display: none;
  opacity: .01;
}

.menu-content {
  -webkit-transform: translate3d(0,  0,  0);
  transform: translate3d(0,  0,  0);
}

.menu-content-open {
  cursor: pointer;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

.menu-content-open ion-pane,
.menu-content-open ion-content,
.menu-content-open .toolbar {
  pointer-events: none;
}

@media (max-width: 340px) {
  .menu-inner {
    width: 264px;
  }
}

ion-menu[type=reveal] {
  z-index: 0;
}

ion-menu[type=reveal].show-menu .menu-inner {
  -webkit-transform: translate3d(0,  0,  0);
  transform: translate3d(0,  0,  0);
}

ion-menu[type=overlay] {
  z-index: 80;
}

ion-menu[type=overlay] .show-backdrop {
  display: block;
}

.ios .menu-inner {
  background: #fff;
}

.ios .menu-content-reveal {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.ios .menu-content-push {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.ios ion-menu[type=overlay] .menu-inner {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.md .menu-inner {
  background: #fff;
}

.md .menu-content-reveal {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.md .menu-content-push {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.md ion-menu[type=overlay] .menu-inner {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.wp .menu-inner {
  background: #f2f2f2;
}

ion-modal {
  left: 0;
  top: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  contain: strict;
}

@media not all and (min-width: 768px) and (min-height: 600px) {
  ion-modal ion-backdrop {
    visibility: hidden;
  }
}

.modal-wrapper {
  z-index: 10;
  height: 100%;
  contain: strict;
}

@media only screen and (min-width: 768px) and (min-height: 600px) {
  .modal-wrapper {
    left: calc(50% - (600px/2));
    top: calc(50% - (500px/2));
    position: absolute;
    width: 600px;
    height: 500px;
  }
}

@media only screen and (min-width: 768px) and (min-height: 768px) {
  .modal-wrapper {
    left: calc(50% - (600px/2));
    top: calc(50% - (600px/2));
    position: absolute;
    width: 600px;
    height: 600px;
  }
}

.ios .modal-wrapper {
  -webkit-transform: translate3d(0,  100%,  0);
  transform: translate3d(0,  100%,  0);
}

@media only screen and (min-width: 768px) and (min-height: 600px) {
  .ios .modal-wrapper {
    border-radius: 10px;
    overflow: hidden;
  }
}

.md .modal-wrapper {
  -webkit-transform: translate3d(0,  40px,  0);
  transform: translate3d(0,  40px,  0);
  opacity: .01;
}

@media only screen and (min-width: 768px) and (min-height: 600px) {
  .md .modal-wrapper {
    border-radius: 2px;
    overflow: hidden;
    -webkit-box-shadow: 0 28px 48px rgba(0, 0, 0, 0.4);
    box-shadow: 0 28px 48px rgba(0, 0, 0, 0.4);
  }
}

.wp .modal-wrapper {
  -webkit-transform: translate3d(0,  40px,  0);
  transform: translate3d(0,  40px,  0);
  opacity: .01;
}

.note-ios {
  color: #aeacb4;
}

.note-ios-primary {
  color: #327eff;
}

.note-ios-secondary {
  color: #32db64;
}

.note-ios-danger {
  color: #f53d3d;
}

.note-ios-light {
  color: #f4f4f4;
}

.note-ios-dark {
  color: #222;
}

.note-md {
  color: #c5c5c5;
}

.note-md-primary {
  color: #327eff;
}

.note-md-secondary {
  color: #32db64;
}

.note-md-danger {
  color: #f53d3d;
}

.note-md-light {
  color: #f4f4f4;
}

.note-md-dark {
  color: #222;
}

.note-wp {
  color: rgba(0, 0, 0, 0.5);
}

.note-wp-primary {
  color: #327eff;
}

.note-wp-secondary {
  color: #32db64;
}

.note-wp-danger {
  color: #f53d3d;
}

.note-wp-light {
  color: #f4f4f4;
}

.note-wp-dark {
  color: #222;
}

ion-picker-cmp {
  left: 0;
  top: 0;
  position: absolute;
  z-index: 1000;
  display: block;
  width: 100%;
  height: 100%;
  contain: strict;
}

.picker-toolbar {
  z-index: 1;
  width: 100%;
  contain: strict;
}

.picker-wrapper {
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: translate3d(0,  100%,  0);
  transform: translate3d(0,  100%,  0);
  position: absolute;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  contain: strict;
}

.picker-columns {
  margin-bottom: constant(safe-area-inset-bottom);
  margin-bottom: env(safe-area-inset-bottom);
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  contain: strict;
}

.picker-col {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  contain: content;
}

.picker-opts {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 100%;
}

.picker-prefix {
  text-align: right;
  text-align: end;
  position: relative;
  -webkit-box-flex: 2;
  -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2;
  min-width: 45%;
  max-width: 50%;
  white-space: nowrap;
}

.picker-suffix {
  text-align: left;
  text-align: start;
  position: relative;
  -webkit-box-flex: 2;
  -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2;
  min-width: 45%;
  max-width: 50%;
  white-space: nowrap;
}

.picker-opt {
  left: 0;
  top: 0;
  text-align: center;
  position: absolute;
  display: block;
  overflow: hidden;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  will-change: transform;
  contain: strict;
}

.picker-opt.picker-opt-disabled {
  pointer-events: none;
}

.picker-opt-disabled {
  opacity: 0;
}

.picker-opts-left {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.picker-opts-right {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.picker-above-highlight,
.picker-below-highlight {
  display: none;
  pointer-events: none;
}

.picker-ios .picker-wrapper {
  height: 260px;
  border-top: 1px solid #c8c7cc;
  background: #fff;
}

.picker-ios .picker-toolbar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 44px;
  border-bottom: 0.55px solid #c8c7cc;
  background: #fff;
}

.picker-ios .picker-toolbar-button {
  text-align: right;
  text-align: end;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.picker-ios .picker-toolbar-button:last-child .picker-button {
  font-weight: 600;
}

.picker-ios .picker-toolbar-cancel {
  text-align: left;
  text-align: start;
  font-weight: normal;
}

.picker-ios .picker-button,
.picker-ios .picker-button.activated {
  margin: 0;
  height: 44px;
  color: #327eff;
  background: transparent;
}

.picker-columns {
  height: 215px;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.picker-ios .picker-col {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  padding: 0 4px;
}

.picker-ios .picker-prefix,
.picker-ios .picker-suffix,
.picker-ios .picker-opts {
  top: 77px;
  font-size: 20px;
  line-height: 42px;
  color: #000;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  pointer-events: none;
}

.picker-ios .picker-opt {
  margin: 0;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  height: 4.6rem;
  font-size: 20px;
  line-height: 42px;
  color: #000;
  background: transparent;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  pointer-events: auto;
  padding: 0;
}

.picker-ios .picker-above-highlight {
  left: 0;
  top: 0;
  -webkit-transform: translate3d(0,  0,  90px);
  transform: translate3d(0,  0,  90px);
  position: absolute;
  z-index: 10;
  display: block;
  width: 100%;
  height: 81px;
  border-bottom: 1px solid #c8c7cc;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, white), to(rgba(255, 255, 255, 0.7)));
  background: linear-gradient(to bottom, white 20%, rgba(255, 255, 255, 0.7) 100%);
}

.picker-ios .picker-below-highlight {
  left: 0;
  top: 115px;
  -webkit-transform: translate3d(0,  0,  90px);
  transform: translate3d(0,  0,  90px);
  position: absolute;
  z-index: 11;
  display: block;
  width: 100%;
  height: 119px;
  border-top: 1px solid #c8c7cc;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, white), to(rgba(255, 255, 255, 0.7)));
  background: linear-gradient(to top, white 30%, rgba(255, 255, 255, 0.7) 100%);
}

.picker-md .picker-wrapper {
  height: 260px;
  border-top: 0.55px solid #dedede;
  background: #fff;
}

.picker-md .picker-toolbar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: 44px;
  background: #fff;
}

.picker-md .picker-button,
.picker-md .picker-button.activated {
  margin: 0;
  height: 44px;
  color: #327eff;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.picker-md .picker-columns {
  height: 216px;
  -webkit-perspective: 1800px;
  perspective: 1800px;
}

.picker-md .picker-col {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  padding: 0 8px;
}

.picker-md .picker-prefix,
.picker-md .picker-suffix,
.picker-md .picker-opts {
  top: 77px;
  font-size: 22px;
  line-height: 42px;
  color: #000;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  pointer-events: none;
}

.picker-md .picker-opt {
  margin: 0;
  height: 4.3rem;
  font-size: 22px;
  line-height: 42px;
  color: #000;
  background: transparent;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  pointer-events: auto;
  padding: 0;
}

.picker-md .picker-prefix,
.picker-md .picker-suffix,
.picker-md .picker-opt.picker-opt-selected {
  color: #327eff;
}

.picker-md .picker-above-highlight {
  left: 0;
  top: 0;
  -webkit-transform: translate3d(0,  0,  90px);
  transform: translate3d(0,  0,  90px);
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 81px;
  border-bottom: 1px solid #dedede;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, white), to(rgba(255, 255, 255, 0.7)));
  background: linear-gradient(to bottom, white 20%, rgba(255, 255, 255, 0.7) 100%);
}

.picker-md .picker-below-highlight {
  left: 0;
  top: 115px;
  -webkit-transform: translate3d(0,  0,  90px);
  transform: translate3d(0,  0,  90px);
  position: absolute;
  z-index: 11;
  width: 100%;
  height: 119px;
  border-top: 1px solid #dedede;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, white), to(rgba(255, 255, 255, 0.7)));
  background: linear-gradient(to top, white 30%, rgba(255, 255, 255, 0.7) 100%);
}

.picker-wp .picker-wrapper {
  height: 260px;
  border-top: 0.55px solid transparent;
  background: #fff;
}

.picker-wp .picker-toolbar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: 44px;
  border-width: 0.55px;
  background: #fff;
}

.picker-wp .picker-toolbar-button {
  text-align: right;
  text-align: end;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.picker-wp .picker-toolbar-cancel {
  text-align: left;
  text-align: start;
  font-weight: normal;
}

.picker-wp .picker-button,
.picker-wp .picker-button.activated {
  margin: 0;
  height: 44px;
  color: #327eff;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.picker-wp .picker-columns {
  height: 216px;
  -webkit-perspective: 1800px;
  perspective: 1800px;
}

.picker-wp .picker-col {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  padding: 0 4px;
}

.picker-wp .picker-prefix,
.picker-wp .picker-suffix,
.picker-wp .picker-opts {
  top: 77px;
  font-size: 22px;
  line-height: 42px;
  color: #000;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  pointer-events: none;
}

.picker-wp .picker-opt {
  margin: 0;
  height: 4.2rem;
  font-size: 22px;
  line-height: 42px;
  color: #000;
  background: transparent;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  pointer-events: auto;
  padding: 0;
}

.picker-wp .picker-prefix,
.picker-wp .picker-suffix,
.picker-wp .picker-opt-selected {
  color: #327eff;
}

.picker-wp .picker-above-highlight {
  left: 0;
  top: 0;
  -webkit-transform: translate3d(0,  0,  90px);
  transform: translate3d(0,  0,  90px);
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 81px;
  border-bottom: 1px solid transparent;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, white), to(rgba(255, 255, 255, 0.7)));
  background: linear-gradient(to bottom, white 20%, rgba(255, 255, 255, 0.7) 100%);
}

.picker-wp .picker-below-highlight {
  left: 0;
  top: 115px;
  -webkit-transform: translate3d(0,  0,  90px);
  transform: translate3d(0,  0,  90px);
  position: absolute;
  z-index: 11;
  width: 100%;
  height: 119px;
  border-top: 1px solid transparent;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, white), to(rgba(255, 255, 255, 0.7)));
  background: linear-gradient(to top, white 30%, rgba(255, 255, 255, 0.7) 100%);
}

ion-popover {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.popover-wrapper {
  z-index: 10;
  opacity: 0;
}

.popover-content {
  position: absolute;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.popover-content ion-content,
.popover-content .scroll-content {
  contain: none;
}

.popover-content .scroll-content {
  position: relative;
}

.popover-ios .popover-content {
  border-radius: 10px;
  width: 200px;
  min-width: 0;
  min-height: 0;
  max-height: 90%;
  color: #000;
  background: #fff;
}

.popover-ios .popover-arrow {
  position: absolute;
  display: block;
  overflow: hidden;
  width: 20px;
  height: 10px;
}

.popover-ios .popover-arrow::after {
  left: 3px;
  top: 3px;
  border-radius: 3px;
  position: absolute;
  z-index: 10;
  width: 14px;
  height: 14px;
  background-color: #fff;
  content: "";
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.popover-ios.popover-bottom .popover-arrow {
  top: auto;
  bottom: -10px;
}

.popover-ios.popover-bottom .popover-arrow::after {
  top: -6px;
}

.popover-ios .item-ios {
  padding-left: 16px;
}

.popover-ios .item-ios[detail-push] .item-inner,
.popover-ios button.item-ios:not([detail-none]) .item-inner,
.popover-ios a.item-ios:not([detail-none]) .item-inner {
  background-position: right 14px center;
}

.popover-md .popover-content {
  border-radius: 2px;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  width: 250px;
  min-width: 0;
  min-height: 0;
  max-height: 90%;
  color: #000;
  background: #fff;
  -webkit-box-shadow: 0 3px 12px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 12px 2px rgba(0, 0, 0, 0.3);
}

.popover-md .popover-viewport {
  opacity: 0;
  -webkit-transition-delay: 100ms;
  transition-delay: 100ms;
}

.popover-wp .popover-content {
  border-radius: 0;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  width: 200px;
  min-width: 0;
  min-height: 0;
  max-height: 90%;
  border: 2px solid #ccc;
  color: #000;
  background: #fff;
}

.popover-wp .popover-viewport {
  opacity: 0;
  -webkit-transition-delay: 100ms;
  transition-delay: 100ms;
}

.radio-ios {
  position: relative;
  display: inline-block;
}

.radio-ios .radio-icon {
  position: relative;
  display: block;
  width: 16px;
  height: 21px;
}

.radio-ios .radio-checked .radio-inner {
  left: 7px;
  top: 4px;
  position: absolute;
  width: 5px;
  height: 12px;
  border-width: 2px;
  border-top-width: 0;
  border-left-width: 0;
  border-style: solid;
  border-color: #327eff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.radio-ios.radio-disabled,
.item-ios.item-radio-disabled ion-label {
  opacity: 0.3;
  pointer-events: none;
}

.item-ios .radio-ios {
  position: static;
  display: block;
  margin: 8px 11px 8px 8px;
}

.item-ios .radio-ios[item-left], .item-ios .radio-ios[item-start] {
  margin: 8px 21px 8px 3px;
}

.item-radio.item-ios ion-label {
  margin-left: 0;
}

.item-radio-checked.item-ios ion-label {
  color: #327eff;
}

.item-radio-ios-primary.item-radio-checked ion-label {
  color: #327eff;
}

.radio-ios-primary .radio-checked {
  color: #327eff;
}

.radio-ios-primary .radio-checked .radio-inner {
  border-color: #327eff;
}

.item-radio-ios-secondary.item-radio-checked ion-label {
  color: #32db64;
}

.radio-ios-secondary .radio-checked {
  color: #32db64;
}

.radio-ios-secondary .radio-checked .radio-inner {
  border-color: #32db64;
}

.item-radio-ios-danger.item-radio-checked ion-label {
  color: #f53d3d;
}

.radio-ios-danger .radio-checked {
  color: #f53d3d;
}

.radio-ios-danger .radio-checked .radio-inner {
  border-color: #f53d3d;
}

.item-radio-ios-light.item-radio-checked ion-label {
  color: #f4f4f4;
}

.radio-ios-light .radio-checked {
  color: #f4f4f4;
}

.radio-ios-light .radio-checked .radio-inner {
  border-color: #f4f4f4;
}

.item-radio-ios-dark.item-radio-checked ion-label {
  color: #222;
}

.radio-ios-dark .radio-checked {
  color: #222;
}

.radio-ios-dark .radio-checked .radio-inner {
  border-color: #222;
}

.radio-md {
  position: relative;
  display: inline-block;
}

.radio-md .radio-icon {
  left: 0;
  top: 0;
  margin: 0;
  border-radius: 50%;
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  border-width: 2px;
  border-style: solid;
  border-color: #787878;
}

.radio-md .radio-inner {
  left: 2px;
  top: 2px;
  border-radius: 50%;
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #327eff;
  -webkit-transform: scale3d(0, 0, 0);
  transform: scale3d(0, 0, 0);
  -webkit-transition: -webkit-transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.radio-md .radio-checked {
  border-color: #327eff;
}

.radio-md .radio-checked .radio-inner {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.radio-md.radio-disabled,
.item-md.item-radio-disabled ion-label {
  opacity: 0.3;
  pointer-events: none;
}

.item-md .radio-md {
  position: static;
  display: block;
  margin: 9px 10px 9px 0;
}

.item-md .radio-md[item-left], .item-md .radio-md[item-start] {
  margin: 11px 36px 10px 4px;
}

.item-radio.item-md ion-label {
  margin-left: 0;
}

.item-radio-checked.item-md ion-label {
  color: #327eff;
}

.item-radio-md-primary.item-radio-checked ion-label {
  color: #327eff;
}

.radio-md-primary .radio-checked {
  border-color: #327eff;
}

.radio-md-primary .radio-inner {
  background-color: #327eff;
}

.item-radio-md-secondary.item-radio-checked ion-label {
  color: #32db64;
}

.radio-md-secondary .radio-checked {
  border-color: #32db64;
}

.radio-md-secondary .radio-inner {
  background-color: #32db64;
}

.item-radio-md-danger.item-radio-checked ion-label {
  color: #f53d3d;
}

.radio-md-danger .radio-checked {
  border-color: #f53d3d;
}

.radio-md-danger .radio-inner {
  background-color: #f53d3d;
}

.item-radio-md-light.item-radio-checked ion-label {
  color: #f4f4f4;
}

.radio-md-light .radio-checked {
  border-color: #f4f4f4;
}

.radio-md-light .radio-inner {
  background-color: #f4f4f4;
}

.item-radio-md-dark.item-radio-checked ion-label {
  color: #222;
}

.radio-md-dark .radio-checked {
  border-color: #222;
}

.radio-md-dark .radio-inner {
  background-color: #222;
}

.radio-wp {
  position: relative;
  display: inline-block;
}

.radio-wp .radio-icon {
  left: 0;
  top: 0;
  margin: 0;
  border-radius: 50%;
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  border-width: 2px;
  border-style: solid;
  border-color: #333;
}

.radio-wp .radio-inner {
  left: 2px;
  top: 2px;
  border-radius: 50%;
  position: absolute;
  display: none;
  width: 8px;
  height: 8px;
  background-color: #333;
}

.radio-wp .radio-checked {
  border-color: #327eff;
}

.radio-wp .radio-checked .radio-inner {
  display: block;
}

.radio-wp.radio-disabled,
.item-wp.item-radio-disabled ion-label {
  opacity: 0.3;
  pointer-events: none;
}

.item-wp .radio-wp {
  position: static;
  display: block;
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
  margin: 9px 20px 9px 4px;
}

.item-wp .radio-wp[item-right], .item-wp .radio-wp[item-end] {
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  margin: 11px 10px 10px 0;
}

.item-radio.item-wp ion-label {
  margin-left: 0;
}

.radio-wp-primary .radio-checked {
  border-color: #327eff;
}

.radio-wp-secondary .radio-checked {
  border-color: #32db64;
}

.radio-wp-danger .radio-checked {
  border-color: #f53d3d;
}

.radio-wp-light .radio-checked {
  border-color: #f4f4f4;
}

.radio-wp-dark .radio-checked {
  border-color: #222;
}

.item-range .item-inner {
  overflow: visible;
  width: 100%;
}

.item-range .input-wrapper {
  overflow: visible;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.item-range ion-range {
  width: 100%;
}

.item-range ion-range ion-label {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

ion-range {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

ion-range ion-label {
  -webkit-box-flex: initial;
  -webkit-flex: initial;
  -ms-flex: initial;
  flex: initial;
}

ion-range ion-icon {
  min-height: 2.4rem;
  font-size: 2.4rem;
  line-height: 1;
}

.range-slider {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  cursor: pointer;
}

.range-ios {
  padding: 8px 16px;
}

.range-ios [range-left] {
  margin: 0 20px 0 0;
}

.range-ios [range-right] {
  margin: 0 0 0 20px;
}

.range-ios.range-has-pin {
  padding-top: 20px;
}

.range-ios .range-slider {
  height: 42px;
}

.range-ios .range-bar {
  left: 0;
  top: 21px;
  border-radius: 1px;
  position: absolute;
  width: 100%;
  height: 1px;
  background: #bdbdbd;
  pointer-events: none;
}

.range-ios.range-pressed .range-bar-active {
  will-change: left, right;
}

.range-ios.range-pressed .range-knob-handle {
  will-change: left;
}

.range-ios .range-bar-active {
  bottom: 0;
  width: auto;
  background: #327eff;
}

.range-ios .range-knob-handle {
  left: 0;
  top: 21px;
  margin-left: -21px;
  margin-top: -21px;
  text-align: center;
  position: absolute;
  width: 42px;
  height: 42px;
}

.range-ios .range-knob {
  left: 7px;
  top: 7px;
  border-radius: 50%;
  position: absolute;
  width: 28px;
  height: 28px;
  background: #fff;
  -webkit-box-shadow: 0 3px 1px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.13), 0 0 0 1px rgba(0, 0, 0, 0.02);
  box-shadow: 0 3px 1px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.13), 0 0 0 1px rgba(0, 0, 0, 0.02);
  pointer-events: none;
}

.range-ios .range-tick {
  margin-left: -0.5px;
  border-radius: 0;
  position: absolute;
  top: 17.5px;
  width: 1px;
  height: 8px;
  background: #bdbdbd;
  pointer-events: none;
}

.range-ios .range-tick-active {
  background: #327eff;
}

.range-ios .range-pin {
  text-align: center;
  border-radius: 50px;
  -webkit-transform: translate3d(0,  28px,  0) scale(0.01);
  transform: translate3d(0,  28px,  0) scale(0.01);
  position: relative;
  top: -20px;
  display: inline-block;
  min-width: 28px;
  font-size: 12px;
  color: #000;
  background: transparent;
  -webkit-transition: -webkit-transform 120ms ease;
  transition: -webkit-transform 120ms ease;
  transition: transform 120ms ease;
  transition: transform 120ms ease, -webkit-transform 120ms ease;
  padding: 8px;
}

.range-ios .range-knob-pressed .range-pin {
  -webkit-transform: translate3d(0,  0,  0) scale(1);
  transform: translate3d(0,  0,  0) scale(1);
}

.range-ios.range-disabled {
  opacity: .5;
}

.range-ios-primary .range-bar-active,
.range-ios-primary .range-tick-active {
  background: #327eff;
}

.range-ios-secondary .range-bar-active,
.range-ios-secondary .range-tick-active {
  background: #32db64;
}

.range-ios-danger .range-bar-active,
.range-ios-danger .range-tick-active {
  background: #f53d3d;
}

.range-ios-light .range-bar-active,
.range-ios-light .range-tick-active {
  background: #f4f4f4;
}

.range-ios-dark .range-bar-active,
.range-ios-dark .range-tick-active {
  background: #222;
}

.range-md {
  padding: 8px;
}

.range-md [range-left] {
  margin: 0 12px 0 0;
}

.range-md [range-right] {
  margin: 0 0 0 12px;
}

.range-md.range-has-pin {
  padding-top: 28px;
}

.range-md .range-slider {
  height: 42px;
}

.range-md .range-bar {
  left: 0;
  top: 21px;
  position: absolute;
  width: 100%;
  height: 2px;
  background: #bdbdbd;
  pointer-events: none;
}

.range-md.range-pressed .range-bar-active {
  will-change: left, right;
}

.range-md.range-pressed .range-knob-handle {
  will-change: left;
}

.range-md .range-bar-active {
  bottom: 0;
  width: auto;
  background: #327eff;
}

.range-md .range-knob-handle {
  left: 0;
  top: 21px;
  margin-left: -21px;
  margin-top: -21px;
  text-align: center;
  position: absolute;
  width: 42px;
  height: 42px;
}

.range-md .range-knob {
  left: 12px;
  top: 13px;
  border-radius: 50%;
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  background: #327eff;
  -webkit-transform: scale(0.67);
  transform: scale(0.67);
  -webkit-transition-duration: 120ms;
  transition-duration: 120ms;
  -webkit-transition-property: background-color, border, -webkit-transform;
  transition-property: background-color, border, -webkit-transform;
  transition-property: transform, background-color, border;
  transition-property: transform, background-color, border, -webkit-transform;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  pointer-events: none;
}

.range-md .range-tick {
  margin-left: -1px;
  border-radius: 50%;
  position: absolute;
  top: 21px;
  z-index: 1;
  width: 2px;
  height: 2px;
  background: #000;
  pointer-events: none;
}

.range-md .range-tick-active {
  background: #000;
}

.range-md .range-pin {
  padding: 8px 0;
  text-align: center;
  border-radius: 50%;
  -webkit-transform: translate3d(0,  28px,  0) scale(0.01);
  transform: translate3d(0,  28px,  0) scale(0.01);
  position: relative;
  top: -20px;
  display: inline-block;
  min-width: 28px;
  height: 28px;
  font-size: 12px;
  color: #fff;
  background: #327eff;
  -webkit-transition: background-color 120ms ease, -webkit-transform 120ms ease;
  transition: background-color 120ms ease, -webkit-transform 120ms ease;
  transition: transform 120ms ease, background-color 120ms ease;
  transition: transform 120ms ease, background-color 120ms ease, -webkit-transform 120ms ease;
}

.range-md .range-pin::before {
  left: 50%;
  top: 3px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 0;
  margin-left: -13px;
  position: absolute;
  z-index: -1;
  width: 26px;
  height: 26px;
  background: #327eff;
  content: "";
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: background-color 120ms ease;
  transition: background-color 120ms ease;
}

.range-md .range-knob-pressed .range-pin {
  -webkit-transform: translate3d(0,  0,  0) scale(1);
  transform: translate3d(0,  0,  0) scale(1);
}

.range-md:not(.range-has-pin) .range-knob-pressed .range-knob {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.range-md .range-knob-min.range-knob-min .range-knob {
  border: 2px solid #bdbdbd;
  background: #fff;
}

.range-md .range-knob-min.range-knob-min .range-pin,
.range-md .range-knob-min.range-knob-min .range-pin::before {
  color: #fff;
  background: #bdbdbd;
}

.range-md.range-disabled .range-bar-active {
  background-color: #bdbdbd;
}

.range-md.range-disabled .range-knob {
  outline: 5px solid #fff;
  background-color: #bdbdbd;
  -webkit-transform: scale(0.55);
  transform: scale(0.55);
}

.range-md-primary .range-md .range-knob-min.range-knob-min .range-knob {
  border: 2px solid #bdbdbd;
  background: #fff;
}

.range-md-primary .range-md .range-knob-min.range-knob-min .range-pin,
.range-md-primary .range-md .range-knob-min.range-knob-min .range-pin::before {
  color: #fff;
  background: #bdbdbd;
}

.range-md-primary .range-bar-active,
.range-md-primary .range-knob,
.range-md-primary .range-pin,
.range-md-primary .range-pin::before {
  background: #327eff;
}

.range-md-secondary .range-md .range-knob-min.range-knob-min .range-knob {
  border: 2px solid #bdbdbd;
  background: #fff;
}

.range-md-secondary .range-md .range-knob-min.range-knob-min .range-pin,
.range-md-secondary .range-md .range-knob-min.range-knob-min .range-pin::before {
  color: #fff;
  background: #bdbdbd;
}

.range-md-secondary .range-bar-active,
.range-md-secondary .range-knob,
.range-md-secondary .range-pin,
.range-md-secondary .range-pin::before {
  background: #32db64;
}

.range-md-danger .range-md .range-knob-min.range-knob-min .range-knob {
  border: 2px solid #bdbdbd;
  background: #fff;
}

.range-md-danger .range-md .range-knob-min.range-knob-min .range-pin,
.range-md-danger .range-md .range-knob-min.range-knob-min .range-pin::before {
  color: #fff;
  background: #bdbdbd;
}

.range-md-danger .range-bar-active,
.range-md-danger .range-knob,
.range-md-danger .range-pin,
.range-md-danger .range-pin::before {
  background: #f53d3d;
}

.range-md-light .range-md .range-knob-min.range-knob-min .range-knob {
  border: 2px solid #bdbdbd;
  background: #fff;
}

.range-md-light .range-md .range-knob-min.range-knob-min .range-pin,
.range-md-light .range-md .range-knob-min.range-knob-min .range-pin::before {
  color: #fff;
  background: #bdbdbd;
}

.range-md-light .range-bar-active,
.range-md-light .range-knob,
.range-md-light .range-pin,
.range-md-light .range-pin::before {
  background: #f4f4f4;
}

.range-md-dark .range-md .range-knob-min.range-knob-min .range-knob {
  border: 2px solid #bdbdbd;
  background: #fff;
}

.range-md-dark .range-md .range-knob-min.range-knob-min .range-pin,
.range-md-dark .range-md .range-knob-min.range-knob-min .range-pin::before {
  color: #fff;
  background: #bdbdbd;
}

.range-md-dark .range-bar-active,
.range-md-dark .range-knob,
.range-md-dark .range-pin,
.range-md-dark .range-pin::before {
  background: #222;
}

.range-wp {
  padding: 8px;
}

.range-wp [range-left] {
  margin: 0 12px 0 0;
}

.range-wp [range-right] {
  margin: 0 0 0 12px;
}

.range-wp.range-has-pin {
  padding-top: 28px;
}

.range-wp .range-slider {
  height: 42px;
}

.range-wp .range-bar {
  left: 0;
  top: 21px;
  position: absolute;
  width: 100%;
  height: 2px;
  background: #bdbdbd;
  pointer-events: none;
}

.range-wp.range-pressed .range-bar-active {
  will-change: left, right;
}

.range-wp.range-pressed .range-knob-handle {
  will-change: left;
}

.range-wp .range-bar-active {
  bottom: 0;
  width: auto;
  background: #327eff;
}

.range-wp .range-knob-handle {
  left: 0;
  top: 21px;
  margin-left: -21px;
  margin-top: -21px;
  text-align: center;
  position: absolute;
  width: 42px;
  height: 42px;
}

.range-wp .range-knob {
  left: 17px;
  top: 10px;
  border-radius: 4px;
  position: absolute;
  width: 8px;
  height: 24px;
  background: #327eff;
  pointer-events: none;
}

.range-wp .range-tick {
  margin-left: -1px;
  border-radius: 4px;
  position: absolute;
  top: 19px;
  width: 2px;
  height: 6px;
  background: #bdbdbd;
  pointer-events: none;
}

.range-wp .range-tick-active {
  background: #327eff;
}

.range-wp .range-pin {
  text-align: center;
  border-radius: 50px;
  -webkit-transform: translate3d(0,  28px,  0) scale(0.01);
  transform: translate3d(0,  28px,  0) scale(0.01);
  position: relative;
  top: -24px;
  display: inline-block;
  min-width: 28px;
  font-size: 12px;
  color: #fff;
  background: #327eff;
  -webkit-transition: -webkit-transform 120ms ease;
  transition: -webkit-transform 120ms ease;
  transition: transform 120ms ease;
  transition: transform 120ms ease, -webkit-transform 120ms ease;
  padding: 8px;
}

.range-wp .range-knob-pressed .range-pin {
  -webkit-transform: translate3d(0,  0,  0) scale(1);
  transform: translate3d(0,  0,  0) scale(1);
}

.range-wp.range-disabled {
  opacity: .5;
}

.range-wp-primary .range-bar-active,
.range-wp-primary .range-tick-active,
.range-wp-primary .range-knob,
.range-wp-primary .range-pin {
  background: #327eff;
}

.range-wp-secondary .range-bar-active,
.range-wp-secondary .range-tick-active,
.range-wp-secondary .range-knob,
.range-wp-secondary .range-pin {
  background: #32db64;
}

.range-wp-danger .range-bar-active,
.range-wp-danger .range-tick-active,
.range-wp-danger .range-knob,
.range-wp-danger .range-pin {
  background: #f53d3d;
}

.range-wp-light .range-bar-active,
.range-wp-light .range-tick-active,
.range-wp-light .range-knob,
.range-wp-light .range-pin {
  background: #f4f4f4;
}

.range-wp-dark .range-bar-active,
.range-wp-dark .range-tick-active,
.range-wp-dark .range-knob,
.range-wp-dark .range-pin {
  background: #222;
}

ion-refresher {
  left: 0;
  top: 0;
  position: absolute;
  z-index: 0;
  display: none;
  width: 100%;
  height: 60px;
}

ion-refresher.refresher-active {
  display: block;
}

.has-refresher > .scroll-content {
  margin-top: -1px;
  border-top: 1px solid #ddd;
  -webkit-transition: -webkit-transform 320ms cubic-bezier(0.36, 0.66, 0.04, 1);
  transition: -webkit-transform 320ms cubic-bezier(0.36, 0.66, 0.04, 1);
  transition: transform 320ms cubic-bezier(0.36, 0.66, 0.04, 1);
  transition: transform 320ms cubic-bezier(0.36, 0.66, 0.04, 1), -webkit-transform 320ms cubic-bezier(0.36, 0.66, 0.04, 1);
}

ion-refresher-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.refresher-pulling,
.refresher-refreshing {
  display: none;
  width: 100%;
}

.refresher-pulling-icon,
.refresher-refreshing-icon {
  text-align: center;
  -webkit-transform-origin: center;
  transform-origin: center;
  font-size: 30px;
  color: #000;
  -webkit-transition: 200ms;
  transition: 200ms;
}

.refresher-pulling-text,
.refresher-refreshing-text {
  text-align: center;
  font-size: 16px;
  color: #000;
}

.refresher-refreshing .spinner-ios line,
.refresher-refreshing .spinner-ios-small line,
.refresher-refreshing .spinner-crescent circle {
  stroke: #000;
}

.refresher-refreshing .spinner-bubbles circle,
.refresher-refreshing .spinner-circles circle,
.refresher-refreshing .spinner-dots circle {
  fill: #000;
}

ion-refresher-content[state=pulling] .refresher-pulling {
  display: block;
}

ion-refresher-content[state=ready] .refresher-pulling {
  display: block;
}

ion-refresher-content[state=ready] .refresher-pulling-icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

ion-refresher-content[state=refreshing] .refresher-refreshing {
  display: block;
}

ion-refresher-content[state=cancelling] .refresher-pulling {
  display: block;
}

ion-refresher-content[state=cancelling] .refresher-pulling-icon {
  -webkit-transform: scale(0);
  transform: scale(0);
}

ion-refresher-content[state=completing] .refresher-refreshing {
  display: block;
}

ion-refresher-content[state=completing] .refresher-refreshing-icon {
  -webkit-transform: scale(0);
  transform: scale(0);
}

ion-scroll {
  position: relative;
  display: block;
}

ion-scroll.scroll-x .scroll-content {
  overflow-x: auto;
}

ion-scroll.scroll-y .scroll-content {
  overflow-y: auto;
}

ion-scroll[center] .scroll-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

ion-scroll .scroll-content {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  overflow-y: hidden;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}

ion-searchbar {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.searchbar-icon {
  pointer-events: none;
}

.searchbar-input-container {
  position: relative;
  display: block;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  width: 100%;
}

.searchbar-input {
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  border: 0;
  font-family: inherit;
}

.searchbar-clear-icon {
  margin: 0;
  padding: 0;
  display: none;
  min-height: 0;
}

.searchbar-has-value.searchbar-has-focus .searchbar-clear-icon {
  display: block;
}

.searchbar-ios {
  padding: 0 8px;
  min-height: 44px;
  border-top: 0.55px solid transparent;
  border-bottom: 0.55px solid rgba(0, 0, 0, 0.05);
  background: rgba(0, 0, 0, 0.2);
}

.searchbar-ios .searchbar-search-icon {
  left: 9px;
  top: 9px;
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2013%2013'><path%20fill='rgba(0,%200,%200,%200.5)'%20d='M5,1c2.2,0,4,1.8,4,4S7.2,9,5,9S1,7.2,1,5S2.8,1,5,1%20M5,0C2.2,0,0,2.2,0,5s2.2,5,5,5s5-2.2,5-5S7.8,0,5,0%20L5,0z'/><line%20stroke='rgba(0,%200,%200,%200.5)'%20stroke-miterlimit='10'%20x1='12.6'%20y1='12.6'%20x2='8.2'%20y2='8.2'/></svg>");
  margin-left: calc(50% - 60px);
  position: absolute;
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-size: 13px;
}

.searchbar-ios .searchbar-input {
  padding: 0 28px;
  border-radius: 5px;
  height: 3rem;
  font-size: 1.4rem;
  font-weight: 400;
  color: #000;
  background-color: #fff;
}

.searchbar-ios .searchbar-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.searchbar-ios .searchbar-input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.searchbar-ios .searchbar-input::-webkit-input-placeholder {
  text-indent: 0;
  color: rgba(0, 0, 0, 0.5);
}

.searchbar-ios .searchbar-clear-icon {
  right: 0;
  top: 0;
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><path%20fill='rgba(0,%200,%200,%200.5)'%20d='M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0S484.3,190.1,403.1,108.9z%20M352,340.2L340.2,352l-84.4-84.2l-84,83.8L160,339.8l84-83.8l-84-83.8l11.8-11.8l84,83.8l84.4-84.2l11.8,11.8L267.6,256L352,340.2z'/></svg>");
  background-position: center;
  position: absolute;
  width: 30px;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 18px;
}

.searchbar-ios .searchbar-ios-cancel {
  padding: 0 0 0 8px;
  margin-left: 0;
  display: none;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 30px;
  cursor: pointer;
}

.searchbar-ios.searchbar-left-aligned .searchbar-search-icon {
  margin-left: 0;
}

.searchbar-ios.searchbar-left-aligned .searchbar-input {
  padding-left: 30px;
}

.searchbar-ios.searchbar-show-cancel.searchbar-has-focus .searchbar-ios-cancel {
  display: block;
}

.toolbar .searchbar-ios {
  border-bottom-width: 0;
  background: transparent;
}

.toolbar .searchbar-ios .searchbar-input {
  background: rgba(0, 0, 0, 0.08);
}

.toolbar .searchbar-ios .searchbar-ios-cancel {
  padding: 0;
}

.toolbar .searchbar-ios.searchbar-has-focus .searchbar-ios-cancel {
  padding-left: 8px;
}

.searchbar-ios .searchbar-md-cancel {
  display: none;
}

.searchbar-ios-primary .searchbar-ios-cancel {
  color: #327eff;
}

.searchbar-ios-primary .searchbar-ios-cancel:hover:not(.disable-hover) {
  color: #2e74eb;
}

.toolbar-ios-primary .searchbar-ios .searchbar-search-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2013%2013'><path%20fill='rgba(255,%20255,%20255,%200.5)'%20d='M5,1c2.2,0,4,1.8,4,4S7.2,9,5,9S1,7.2,1,5S2.8,1,5,1%20M5,0C2.2,0,0,2.2,0,5s2.2,5,5,5s5-2.2,5-5S7.8,0,5,0%20L5,0z'/><line%20stroke='rgba(255,%20255,%20255,%200.5)'%20stroke-miterlimit='10'%20x1='12.6'%20y1='12.6'%20x2='8.2'%20y2='8.2'/></svg>");
}

.toolbar-ios-primary .searchbar-ios .searchbar-input {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.toolbar-ios-primary .searchbar-ios .searchbar-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-primary .searchbar-ios .searchbar-input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-primary .searchbar-ios .searchbar-input::-webkit-input-placeholder {
  text-indent: 0;
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-primary .searchbar-ios .searchbar-clear-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><path%20fill='rgba(255,%20255,%20255,%200.5)'%20d='M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0S484.3,190.1,403.1,108.9z%20M352,340.2L340.2,352l-84.4-84.2l-84,83.8L160,339.8l84-83.8l-84-83.8l11.8-11.8l84,83.8l84.4-84.2l11.8,11.8L267.6,256L352,340.2z'/></svg>");
}

.toolbar-ios-primary .searchbar-ios .searchbar-ios-cancel {
  color: #fff;
}

.searchbar-ios-secondary .searchbar-ios-cancel {
  color: #32db64;
}

.searchbar-ios-secondary .searchbar-ios-cancel:hover:not(.disable-hover) {
  color: #2ec95c;
}

.toolbar-ios-secondary .searchbar-ios .searchbar-search-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2013%2013'><path%20fill='rgba(255,%20255,%20255,%200.5)'%20d='M5,1c2.2,0,4,1.8,4,4S7.2,9,5,9S1,7.2,1,5S2.8,1,5,1%20M5,0C2.2,0,0,2.2,0,5s2.2,5,5,5s5-2.2,5-5S7.8,0,5,0%20L5,0z'/><line%20stroke='rgba(255,%20255,%20255,%200.5)'%20stroke-miterlimit='10'%20x1='12.6'%20y1='12.6'%20x2='8.2'%20y2='8.2'/></svg>");
}

.toolbar-ios-secondary .searchbar-ios .searchbar-input {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.toolbar-ios-secondary .searchbar-ios .searchbar-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-secondary .searchbar-ios .searchbar-input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-secondary .searchbar-ios .searchbar-input::-webkit-input-placeholder {
  text-indent: 0;
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-secondary .searchbar-ios .searchbar-clear-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><path%20fill='rgba(255,%20255,%20255,%200.5)'%20d='M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0S484.3,190.1,403.1,108.9z%20M352,340.2L340.2,352l-84.4-84.2l-84,83.8L160,339.8l84-83.8l-84-83.8l11.8-11.8l84,83.8l84.4-84.2l11.8,11.8L267.6,256L352,340.2z'/></svg>");
}

.toolbar-ios-secondary .searchbar-ios .searchbar-ios-cancel {
  color: #fff;
}

.searchbar-ios-danger .searchbar-ios-cancel {
  color: #f53d3d;
}

.searchbar-ios-danger .searchbar-ios-cancel:hover:not(.disable-hover) {
  color: #e13838;
}

.toolbar-ios-danger .searchbar-ios .searchbar-search-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2013%2013'><path%20fill='rgba(255,%20255,%20255,%200.5)'%20d='M5,1c2.2,0,4,1.8,4,4S7.2,9,5,9S1,7.2,1,5S2.8,1,5,1%20M5,0C2.2,0,0,2.2,0,5s2.2,5,5,5s5-2.2,5-5S7.8,0,5,0%20L5,0z'/><line%20stroke='rgba(255,%20255,%20255,%200.5)'%20stroke-miterlimit='10'%20x1='12.6'%20y1='12.6'%20x2='8.2'%20y2='8.2'/></svg>");
}

.toolbar-ios-danger .searchbar-ios .searchbar-input {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.toolbar-ios-danger .searchbar-ios .searchbar-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-danger .searchbar-ios .searchbar-input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-danger .searchbar-ios .searchbar-input::-webkit-input-placeholder {
  text-indent: 0;
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-danger .searchbar-ios .searchbar-clear-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><path%20fill='rgba(255,%20255,%20255,%200.5)'%20d='M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0S484.3,190.1,403.1,108.9z%20M352,340.2L340.2,352l-84.4-84.2l-84,83.8L160,339.8l84-83.8l-84-83.8l11.8-11.8l84,83.8l84.4-84.2l11.8,11.8L267.6,256L352,340.2z'/></svg>");
}

.toolbar-ios-danger .searchbar-ios .searchbar-ios-cancel {
  color: #fff;
}

.searchbar-ios-light .searchbar-ios-cancel {
  color: #f4f4f4;
}

.searchbar-ios-light .searchbar-ios-cancel:hover:not(.disable-hover) {
  color: #e0e0e0;
}

.toolbar-ios-light .searchbar-ios .searchbar-search-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2013%2013'><path%20fill='rgba(0,%200,%200,%200.5)'%20d='M5,1c2.2,0,4,1.8,4,4S7.2,9,5,9S1,7.2,1,5S2.8,1,5,1%20M5,0C2.2,0,0,2.2,0,5s2.2,5,5,5s5-2.2,5-5S7.8,0,5,0%20L5,0z'/><line%20stroke='rgba(0,%200,%200,%200.5)'%20stroke-miterlimit='10'%20x1='12.6'%20y1='12.6'%20x2='8.2'%20y2='8.2'/></svg>");
}

.toolbar-ios-light .searchbar-ios .searchbar-input {
  color: #000;
  background: rgba(0, 0, 0, 0.08);
}

.toolbar-ios-light .searchbar-ios .searchbar-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.toolbar-ios-light .searchbar-ios .searchbar-input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.toolbar-ios-light .searchbar-ios .searchbar-input::-webkit-input-placeholder {
  text-indent: 0;
  color: rgba(0, 0, 0, 0.5);
}

.toolbar-ios-light .searchbar-ios .searchbar-clear-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><path%20fill='rgba(0,%200,%200,%200.5)'%20d='M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0S484.3,190.1,403.1,108.9z%20M352,340.2L340.2,352l-84.4-84.2l-84,83.8L160,339.8l84-83.8l-84-83.8l11.8-11.8l84,83.8l84.4-84.2l11.8,11.8L267.6,256L352,340.2z'/></svg>");
}

.toolbar-ios-light .searchbar-ios .searchbar-ios-cancel {
  color: #327eff;
}

.searchbar-ios-dark .searchbar-ios-cancel {
  color: #222;
}

.searchbar-ios-dark .searchbar-ios-cancel:hover:not(.disable-hover) {
  color: #343434;
}

.toolbar-ios-dark .searchbar-ios .searchbar-search-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2013%2013'><path%20fill='rgba(255,%20255,%20255,%200.5)'%20d='M5,1c2.2,0,4,1.8,4,4S7.2,9,5,9S1,7.2,1,5S2.8,1,5,1%20M5,0C2.2,0,0,2.2,0,5s2.2,5,5,5s5-2.2,5-5S7.8,0,5,0%20L5,0z'/><line%20stroke='rgba(255,%20255,%20255,%200.5)'%20stroke-miterlimit='10'%20x1='12.6'%20y1='12.6'%20x2='8.2'%20y2='8.2'/></svg>");
}

.toolbar-ios-dark .searchbar-ios .searchbar-input {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.toolbar-ios-dark .searchbar-ios .searchbar-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-dark .searchbar-ios .searchbar-input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-dark .searchbar-ios .searchbar-input::-webkit-input-placeholder {
  text-indent: 0;
  color: rgba(255, 255, 255, 0.5);
}

.toolbar-ios-dark .searchbar-ios .searchbar-clear-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><path%20fill='rgba(255,%20255,%20255,%200.5)'%20d='M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0S484.3,190.1,403.1,108.9z%20M352,340.2L340.2,352l-84.4-84.2l-84,83.8L160,339.8l84-83.8l-84-83.8l11.8-11.8l84,83.8l84.4-84.2l11.8,11.8L267.6,256L352,340.2z'/></svg>");
}

.toolbar-ios-dark .searchbar-ios .searchbar-ios-cancel {
  color: #fff;
}

.searchbar-ios.searchbar-animated.searchbar-show-cancel .searchbar-ios-cancel {
  display: block;
}

.searchbar-ios.searchbar-animated .searchbar-search-icon,
.searchbar-ios.searchbar-animated .searchbar-input {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.searchbar-animated.searchbar-has-focus .searchbar-ios-cancel {
  opacity: 1;
  pointer-events: auto;
}

.searchbar-animated .searchbar-ios-cancel {
  margin-right: -100%;
  -webkit-transform: translate3d(0,  0,  0);
  transform: translate3d(0,  0,  0);
  opacity: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  pointer-events: none;
}

.searchbar-md {
  background: inherit;
  padding: 8px;
}

.searchbar-md .searchbar-search-icon {
  left: 16px;
  top: 11px;
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><path%20fill='%235b5b5b'%20d='M337.509,305.372h-17.501l-6.571-5.486c20.791-25.232,33.922-57.054,33.922-93.257C347.358,127.632,283.896,64,205.135,64C127.452,64,64,127.632,64,206.629s63.452,142.628,142.225,142.628c35.011,0,67.831-13.167,92.991-34.008l6.561,5.487v17.551L415.18,448L448,415.086L337.509,305.372z%20M206.225,305.372c-54.702,0-98.463-43.887-98.463-98.743c0-54.858,43.761-98.742,98.463-98.742c54.7,0,98.462,43.884,98.462,98.742C304.687,261.485,260.925,305.372,206.225,305.372z'/></svg>");
  width: 21px;
  height: 21px;
}

.searchbar-md .searchbar-md-cancel {
  left: 10px;
  top: 0;
  margin: 0;
  display: none;
  width: 21px;
  height: 100%;
}

.searchbar-md .searchbar-search-icon,
.searchbar-md .searchbar-md-cancel {
  position: absolute;
  background-repeat: no-repeat;
  background-size: 20px;
}

.searchbar-md .searchbar-search-icon.activated,
.searchbar-md .searchbar-md-cancel.activated {
  background-color: transparent;
}

.searchbar-md .searchbar-input {
  padding: 6px 55px;
  border-radius: 2px;
  background-position: left 8px center;
  height: auto;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 3rem;
  color: #141414;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.searchbar-md .searchbar-input::-moz-placeholder {
  color: #aeaeae;
}

.searchbar-md .searchbar-input:-ms-input-placeholder {
  color: #aeaeae;
}

.searchbar-md .searchbar-input::-webkit-input-placeholder {
  text-indent: 0;
  color: #aeaeae;
}

.searchbar-md .searchbar-clear-icon {
  right: 13px;
  top: 0;
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><polygon%20fill='%235b5b5b'%20points='405,136.798%20375.202,107%20256,226.202%20136.798,107%20107,136.798%20226.202,256%20107,375.202%20136.798,405%20256,285.798%20375.202,405%20405,375.202%20285.798,256'/></svg>");
  padding: 0;
  background-position: center;
  position: absolute;
  width: 22px;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 22px;
}

.searchbar-md .searchbar-clear-icon.activated {
  background-color: transparent;
}

.searchbar-md.searchbar-has-focus.searchbar-show-cancel .searchbar-search-icon {
  display: none;
}

.searchbar-md.searchbar-has-focus.searchbar-show-cancel .searchbar-md-cancel {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.toolbar .searchbar-md {
  padding: 3px;
}

.toolbar .searchbar-md .searchbar-md-cancel {
  left: 14px;
}

.searchbar-md .searchbar-ios-cancel {
  display: none;
}

.searchbar-wp {
  background: transparent;
  padding: 8px;
}

.searchbar-wp .searchbar-input-container {
  border: 2px solid rgba(0, 0, 0, 0.5);
}

.searchbar-wp .searchbar-search-icon {
  right: 8px;
  top: 5px;
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><path%20fill='%23858585'%20d='M337.509,305.372h-17.501l-6.571-5.486c20.791-25.232,33.922-57.054,33.922-93.257C347.358,127.632,283.896,64,205.135,64C127.452,64,64,127.632,64,206.629s63.452,142.628,142.225,142.628c35.011,0,67.831-13.167,92.991-34.008l6.561,5.487v17.551L415.18,448L448,415.086L337.509,305.372z%20M206.225,305.372c-54.702,0-98.463-43.887-98.463-98.743c0-54.858,43.761-98.742,98.463-98.742c54.7,0,98.462,43.884,98.462,98.742C304.687,261.485,260.925,305.372,206.225,305.372z'/></svg>");
  position: absolute;
  width: 21px;
  height: 21px;
  background-repeat: no-repeat;
  background-size: 20px;
}

.searchbar-wp .searchbar-search-icon.activated {
  background-color: transparent;
}

.searchbar-wp .searchbar-input {
  padding: 0 8px;
  border-radius: 0;
  background-position: left 8px center;
  height: auto;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 3rem;
  color: #141414;
  background-color: #fff;
}

.searchbar-wp .searchbar-input::-moz-placeholder {
  color: #858585;
}

.searchbar-wp .searchbar-input:-ms-input-placeholder {
  color: #858585;
}

.searchbar-wp .searchbar-input::-webkit-input-placeholder {
  text-indent: 0;
  color: #858585;
}

.searchbar-wp .searchbar-clear-icon {
  right: 8px;
  top: 0;
  background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><polygon%20fill='%23858585'%20points='405,136.798%20375.202,107%20256,226.202%20136.798,107%20107,136.798%20226.202,256%20107,375.202%20136.798,405%20256,285.798%20375.202,405%20405,375.202%20285.798,256'/></svg>");
  padding: 0;
  background-position: center;
  position: absolute;
  width: 22px;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 22px;
}

.searchbar-wp .searchbar-clear-icon.activated {
  background-color: transparent;
}

.searchbar-wp.searchbar-has-focus .searchbar-input-container {
  border-color: #327eff;
}

.searchbar-wp.searchbar-has-value .searchbar-search-icon {
  display: none;
}

.searchbar-wp .searchbar-ios-cancel {
  display: none;
}

.searchbar-wp .searchbar-md-cancel {
  display: none;
}

.toolbar .searchbar-wp {
  padding: 2px;
}

.searchbar-wp-primary.searchbar-has-focus .searchbar-input-container {
  border-color: #327eff;
}

.searchbar-wp-secondary.searchbar-has-focus .searchbar-input-container {
  border-color: #32db64;
}

.searchbar-wp-danger.searchbar-has-focus .searchbar-input-container {
  border-color: #f53d3d;
}

.searchbar-wp-light.searchbar-has-focus .searchbar-input-container {
  border-color: #f4f4f4;
}

.searchbar-wp-dark.searchbar-has-focus .searchbar-input-container {
  border-color: #222;
}

ion-segment {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.segment-button {
  margin-left: 0;
  margin-right: 0;
  text-align: center;
  position: relative;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}

.segment-ios .segment-button {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 0;
  height: 3.2rem;
  border-width: 1px;
  border-style: solid;
  border-color: #327eff;
  font-size: 1.3rem;
  line-height: 3rem;
  color: #327eff;
  background-color: transparent;
}

.segment-ios .segment-button ion-icon {
  font-size: 2.6rem;
  line-height: 2.8rem;
}

.segment-ios .segment-button.segment-activated {
  color: #fff;
  background-color: #327eff;
  opacity: 1;
  -webkit-transition: 100ms all linear;
  transition: 100ms all linear;
}

.segment-ios .segment-button:hover:not(.segment-activated) {
  background-color: rgba(50, 126, 255, 0.1);
  -webkit-transition: 100ms all linear;
  transition: 100ms all linear;
}

.segment-ios .segment-button:active:not(.segment-activated) {
  background-color: rgba(50, 126, 255, 0.16);
  -webkit-transition: 100ms all linear;
  transition: 100ms all linear;
}

.segment-ios .segment-button:first-of-type {
  border-top-left-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 4px;
  margin-right: 0;
}

.segment-ios .segment-button:not(:first-of-type) {
  border-left-width: 0;
}

.segment-ios .segment-button:last-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 0;
  margin-left: 0;
  border-left-width: 0;
}

[dir="rtl"] .segment-ios .segment-button:first-of-type {
  border-left-width: 0;
}

[dir="rtl"] .segment-ios .segment-button:last-of-type {
  border-left-width: 1px;
}

.segment-ios.segment-disabled {
  opacity: .4;
  pointer-events: none;
}

.segment-ios .segment-button-disabled {
  color: rgba(50, 126, 255, 0.3);
  pointer-events: none;
}

.toolbar-ios .segment-ios {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
}

.toolbar-ios .segment-button {
  max-width: 100px;
  height: 2.6rem;
  font-size: 1.2rem;
  line-height: 2.5rem;
}

.toolbar-ios .segment-button ion-icon {
  font-size: 2.2rem;
  line-height: 2.4rem;
}

.segment-ios-primary .segment-button {
  border-color: #327eff;
  color: #327eff;
}

.segment-ios-primary .segment-button:hover:not(.segment-activated) {
  background-color: rgba(50, 126, 255, 0.1);
}

.segment-ios-primary .segment-button:active:not(.segment-activated) {
  background-color: rgba(50, 126, 255, 0.16);
}

.segment-ios-primary .segment-button.segment-activated {
  color: #fff;
  background-color: #327eff;
}

.segment-ios-primary .segment-button-disabled {
  color: rgba(50, 126, 255, 0.3);
}

.toolbar-ios-primary .segment-ios .segment-button.segment-activated {
  color: #327eff;
}

.segment-ios-secondary .segment-button {
  border-color: #32db64;
  color: #32db64;
}

.segment-ios-secondary .segment-button:hover:not(.segment-activated) {
  background-color: rgba(50, 219, 100, 0.1);
}

.segment-ios-secondary .segment-button:active:not(.segment-activated) {
  background-color: rgba(50, 219, 100, 0.16);
}

.segment-ios-secondary .segment-button.segment-activated {
  color: #fff;
  background-color: #32db64;
}

.segment-ios-secondary .segment-button-disabled {
  color: rgba(50, 219, 100, 0.3);
}

.toolbar-ios-secondary .segment-ios .segment-button.segment-activated {
  color: #32db64;
}

.segment-ios-danger .segment-button {
  border-color: #f53d3d;
  color: #f53d3d;
}

.segment-ios-danger .segment-button:hover:not(.segment-activated) {
  background-color: rgba(245, 61, 61, 0.1);
}

.segment-ios-danger .segment-button:active:not(.segment-activated) {
  background-color: rgba(245, 61, 61, 0.16);
}

.segment-ios-danger .segment-button.segment-activated {
  color: #fff;
  background-color: #f53d3d;
}

.segment-ios-danger .segment-button-disabled {
  color: rgba(245, 61, 61, 0.3);
}

.toolbar-ios-danger .segment-ios .segment-button.segment-activated {
  color: #f53d3d;
}

.segment-ios-light .segment-button {
  border-color: #f4f4f4;
  color: #f4f4f4;
}

.segment-ios-light .segment-button:hover:not(.segment-activated) {
  background-color: rgba(244, 244, 244, 0.1);
}

.segment-ios-light .segment-button:active:not(.segment-activated) {
  background-color: rgba(244, 244, 244, 0.16);
}

.segment-ios-light .segment-button.segment-activated {
  color: #000;
  background-color: #f4f4f4;
}

.segment-ios-light .segment-button-disabled {
  color: rgba(244, 244, 244, 0.3);
}

.toolbar-ios-light .segment-ios .segment-button.segment-activated {
  color: #f4f4f4;
}

.segment-ios-dark .segment-button {
  border-color: #222;
  color: #222;
}

.segment-ios-dark .segment-button:hover:not(.segment-activated) {
  background-color: rgba(34, 34, 34, 0.1);
}

.segment-ios-dark .segment-button:active:not(.segment-activated) {
  background-color: rgba(34, 34, 34, 0.16);
}

.segment-ios-dark .segment-button.segment-activated {
  color: #fff;
  background-color: #222;
}

.segment-ios-dark .segment-button-disabled {
  color: rgba(34, 34, 34, 0.3);
}

.toolbar-ios-dark .segment-ios .segment-button.segment-activated {
  color: #222;
}

.segment-md .segment-button {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 0;
  height: 4.2rem;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-bottom-color: rgba(0, 0, 0, 0.1);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 4rem;
  text-transform: uppercase;
  color: #327eff;
  background-color: transparent;
  opacity: 0.7;
  -webkit-transition: 100ms all linear;
  transition: 100ms all linear;
  padding: 0 6px;
}

.segment-md .segment-button ion-icon {
  font-size: 2.6rem;
  line-height: 4rem;
}

.segment-md .segment-button.activated, .segment-md .segment-button.segment-activated {
  border-color: #327eff;
  opacity: 1;
}

.segment-md.segment-disabled,
.segment-md .segment-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.toolbar .segment-md {
  margin: 0 auto;
}

.toolbar .segment-md .segment-button.activated,
.toolbar .segment-md .segment-button.segment-activated {
  opacity: 1;
}

.segment-md-primary .segment-button {
  color: #327eff;
}

.segment-md-primary .segment-button.activated, .segment-md-primary .segment-button.segment-activated {
  border-color: #327eff;
  color: #327eff;
  opacity: 1;
}

.segment-md-secondary .segment-button {
  color: #32db64;
}

.segment-md-secondary .segment-button.activated, .segment-md-secondary .segment-button.segment-activated {
  border-color: #32db64;
  color: #32db64;
  opacity: 1;
}

.segment-md-danger .segment-button {
  color: #f53d3d;
}

.segment-md-danger .segment-button.activated, .segment-md-danger .segment-button.segment-activated {
  border-color: #f53d3d;
  color: #f53d3d;
  opacity: 1;
}

.segment-md-light .segment-button {
  color: #f4f4f4;
}

.segment-md-light .segment-button.activated, .segment-md-light .segment-button.segment-activated {
  border-color: #f4f4f4;
  color: #f4f4f4;
  opacity: 1;
}

.segment-md-dark .segment-button {
  color: #222;
}

.segment-md-dark .segment-button.activated, .segment-md-dark .segment-button.segment-activated {
  border-color: #222;
  color: #222;
  opacity: 1;
}

.segment-wp {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.segment-wp .segment-button {
  height: 4rem;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 4rem;
  text-transform: uppercase;
  color: #000;
  background-color: transparent;
  opacity: 0.5;
  padding: 0 6px;
}

.segment-wp .segment-button.segment-activated {
  opacity: 1;
}

.segment-wp .segment-button ion-icon {
  font-size: 2.6rem;
  line-height: 4rem;
}

.segment-wp.segment-disabled,
.segment-wp .segment-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.toolbar .segment-wp {
  margin: 0 auto;
}

.segment-wp-primary .segment-button {
  color: #327eff;
}

.segment-wp-primary .segment-button.activated, .segment-wp-primary .segment-button.segment-activated {
  border-color: #327eff;
  color: #327eff;
  opacity: 1;
}

.segment-wp-secondary .segment-button {
  color: #32db64;
}

.segment-wp-secondary .segment-button.activated, .segment-wp-secondary .segment-button.segment-activated {
  border-color: #32db64;
  color: #32db64;
  opacity: 1;
}

.segment-wp-danger .segment-button {
  color: #f53d3d;
}

.segment-wp-danger .segment-button.activated, .segment-wp-danger .segment-button.segment-activated {
  border-color: #f53d3d;
  color: #f53d3d;
  opacity: 1;
}

.segment-wp-light .segment-button {
  color: #f4f4f4;
}

.segment-wp-light .segment-button.activated, .segment-wp-light .segment-button.segment-activated {
  border-color: #f4f4f4;
  color: #f4f4f4;
  opacity: 1;
}

.segment-wp-dark .segment-button {
  color: #222;
}

.segment-wp-dark .segment-button.activated, .segment-wp-dark .segment-button.segment-activated {
  border-color: #222;
  color: #222;
  opacity: 1;
}

ion-select {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  max-width: 45%;
}

.select-text {
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 16px;
  font-size: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.item-multiple-inputs ion-select {
  position: relative;
}

.select-disabled,
.item-select-disabled ion-label {
  opacity: .4;
  pointer-events: none;
}

.select-popover ion-list {
  margin: -1px 0;
}

.select-ios {
  padding: 11px 8px 11px 16px;
}

.select-ios .select-placeholder {
  color: #999;
}

.select-ios .select-icon {
  position: relative;
  width: 12px;
  height: 18px;
}

.select-ios .select-icon .select-icon-inner {
  left: 5px;
  top: 50%;
  margin-top: -2px;
  position: absolute;
  width: 0;
  height: 0;
  border-top: 5px solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  color: #999;
  pointer-events: none;
}

.select-md {
  padding: 13px 8px 13px 16px;
}

.select-md .select-placeholder {
  color: #999;
}

.select-md .item-select ion-label {
  margin-left: 0;
}

.select-md .select-icon {
  position: relative;
  width: 12px;
  height: 19px;
}

.select-md .select-icon .select-icon-inner {
  left: 5px;
  top: 50%;
  margin-top: -3px;
  position: absolute;
  width: 0;
  height: 0;
  border-top: 5px solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  color: #999;
  pointer-events: none;
}

.select-wp {
  margin: 13px 8px;
  padding: 0 8px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 100%;
  border: 2px solid rgba(0, 0, 0, 0.5);
  line-height: 3rem;
}

.select-wp .select-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.item-wp.item-select ion-label {
  margin-left: 0;
}

.select-wp .select-icon {
  position: relative;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  width: 18px;
  height: 18px;
}

.select-wp .select-icon .select-icon-inner {
  left: 5px;
  top: 3px;
  position: absolute;
  display: block;
  width: 9px;
  height: 9px;
  border-top: 2px solid rgba(0, 0, 0, 0.5);
  border-right: 2px solid rgba(0, 0, 0, 0.5);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  pointer-events: none;
}

.select-wp .select-text {
  min-height: 3rem;
}

.hidden-show-when {
  display: none !important;
}

.hidden-hide-when {
  display: none !important;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  padding: 0;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0,  0,  0);
  transform: translate3d(0,  0,  0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  margin: 0 auto;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-slide {
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 18px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-container .swiper-notification {
  left: 0;
  top: 0;
  position: absolute;
  z-index: -1000;
  opacity: 0;
  pointer-events: none;
}

.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
  top: 50%;
  margin-top: -22px;
  background-position: center;
  position: absolute;
  z-index: 10;
  width: 27px;
  height: 44px;
  background-repeat: no-repeat;
  background-size: 27px 44px;
  cursor: pointer;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  cursor: auto;
  opacity: .35;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  left: auto;
  right: 10px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-pagination {
  text-align: center;
  -webkit-transform: translate3d(0,  0,  0);
  transform: translate3d(0,  0,  0);
  position: absolute;
  z-index: 10;
  -webkit-transition: 300ms;
  transition: 300ms;
  pointer-events: none;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  left: 0;
  bottom: 10px;
  width: 100%;
}

.swiper-pagination-bullet {
  border-radius: 100%;
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #000;
  opacity: .2;
  pointer-events: auto;
}

button.swiper-pagination-bullet {
  margin: 0;
  padding: 0;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff;
}

.swiper-pagination-bullet-active {
  background: #327eff;
  opacity: 1;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0,  -50%,  0);
  transform: translate3d(0,  -50%,  0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0;
  display: block;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}

.swiper-pagination-progress {
  position: absolute;
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progress .swiper-pagination-progressbar {
  left: 0;
  top: 0;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #327eff;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progress {
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
}

.swiper-container-vertical > .swiper-pagination-progress {
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
}

.swiper-pagination-progress.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.5);
}

.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  background: #fff;
}

.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  background: #000;
}

.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  left: 0;
  top: 0;
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-cube,
.swiper-container-flip {
  overflow: visible;
}

.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
  z-index: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  pointer-events: none;
}

.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-slide {
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  visibility: visible;
  pointer-events: auto;
}

.swiper-container-cube .swiper-cube-shadow {
  left: 0;
  bottom: 0;
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  -webkit-transition-property: opacity;
  transition-property: opacity;
  pointer-events: none;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-zoom-container {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  background: rgba(0, 0, 0, 0.1);
  -ms-touch-action: none;
  touch-action: none;
}

.swiper-container-horizontal > .swiper-scrollbar {
  left: 1%;
  bottom: 3px;
  position: absolute;
  z-index: 50;
  width: 98%;
  height: 5px;
}

.swiper-container-vertical > .swiper-scrollbar {
  right: 3px;
  top: 1%;
  position: absolute;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  left: 0;
  top: 0;
  border-radius: 10px;
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-lazy-preloader {
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  position: absolute;
  z-index: 10;
  width: 42px;
  height: 42px;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader::after {
  background-position: 50%;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
}

.swiper-lazy-preloader-white::after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

ion-slides {
  display: block;
  width: 100%;
  height: 100%;
}

.slide-zoom {
  text-align: center;
  display: block;
  width: 100%;
}

.swiper-slide img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}

ion-spinner {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 28px;
}

ion-spinner svg {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

ion-spinner.spinner-paused svg {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.spinner-ios line,
.spinner-ios-small line {
  stroke-width: 4px;
  stroke-linecap: round;
}

.spinner-ios svg,
.spinner-ios-small svg {
  -webkit-animation: spinner-fade-out 1s linear infinite;
  animation: spinner-fade-out 1s linear infinite;
}

.spinner-bubbles svg {
  -webkit-animation: spinner-scale-out 1s linear infinite;
  animation: spinner-scale-out 1s linear infinite;
}

.spinner-circles svg {
  -webkit-animation: spinner-fade-out 1s linear infinite;
  animation: spinner-fade-out 1s linear infinite;
}

.spinner-crescent circle {
  fill: transparent;
  stroke-width: 4px;
  stroke-dasharray: 128px;
  stroke-dashoffset: 82px;
}

.spinner-crescent svg {
  -webkit-animation: spinner-rotate 1s linear infinite;
  animation: spinner-rotate 1s linear infinite;
}

.spinner-dots circle {
  stroke-width: 0;
}

.spinner-dots svg {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-animation: spinner-dots 1s linear infinite;
  animation: spinner-dots 1s linear infinite;
}

@-webkit-keyframes spinner-fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes spinner-fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes spinner-scale-out {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
  }
}

@keyframes spinner-scale-out {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
  }
}

@-webkit-keyframes spinner-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinner-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spinner-dots {
  0% {
    opacity: .9;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50% {
    opacity: .3;
    -webkit-transform: scale(0.4, 0.4);
    transform: scale(0.4, 0.4);
  }
  100% {
    opacity: .9;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@keyframes spinner-dots {
  0% {
    opacity: .9;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50% {
    opacity: .3;
    -webkit-transform: scale(0.4, 0.4);
    transform: scale(0.4, 0.4);
  }
  100% {
    opacity: .9;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

.spinner-ios-ios line,
.spinner-ios-ios-small line {
  stroke: #69717d;
}

.spinner-ios-bubbles circle {
  fill: #000;
}

.spinner-ios-circles circle {
  fill: #69717d;
}

.spinner-ios-crescent circle {
  stroke: #000;
}

.spinner-ios-dots circle {
  fill: #444;
}

.spinner-ios-primary.spinner-ios line,
.spinner-ios-primary.spinner-ios-small line,
.spinner-ios-primary.spinner-crescent circle {
  stroke: #327eff;
}

.spinner-ios-primary.spinner-bubbles circle,
.spinner-ios-primary.spinner-circles circle,
.spinner-ios-primary.spinner-dots circle {
  fill: #327eff;
}

.spinner-ios-secondary.spinner-ios line,
.spinner-ios-secondary.spinner-ios-small line,
.spinner-ios-secondary.spinner-crescent circle {
  stroke: #32db64;
}

.spinner-ios-secondary.spinner-bubbles circle,
.spinner-ios-secondary.spinner-circles circle,
.spinner-ios-secondary.spinner-dots circle {
  fill: #32db64;
}

.spinner-ios-danger.spinner-ios line,
.spinner-ios-danger.spinner-ios-small line,
.spinner-ios-danger.spinner-crescent circle {
  stroke: #f53d3d;
}

.spinner-ios-danger.spinner-bubbles circle,
.spinner-ios-danger.spinner-circles circle,
.spinner-ios-danger.spinner-dots circle {
  fill: #f53d3d;
}

.spinner-ios-light.spinner-ios line,
.spinner-ios-light.spinner-ios-small line,
.spinner-ios-light.spinner-crescent circle {
  stroke: #f4f4f4;
}

.spinner-ios-light.spinner-bubbles circle,
.spinner-ios-light.spinner-circles circle,
.spinner-ios-light.spinner-dots circle {
  fill: #f4f4f4;
}

.spinner-ios-dark.spinner-ios line,
.spinner-ios-dark.spinner-ios-small line,
.spinner-ios-dark.spinner-crescent circle {
  stroke: #222;
}

.spinner-ios-dark.spinner-bubbles circle,
.spinner-ios-dark.spinner-circles circle,
.spinner-ios-dark.spinner-dots circle {
  fill: #222;
}

.spinner-md-ios line,
.spinner-md-ios-small line {
  stroke: #69717d;
}

.spinner-md-bubbles circle {
  fill: #000;
}

.spinner-md-circles circle {
  fill: #69717d;
}

.spinner-md-crescent circle {
  stroke: #000;
}

.spinner-md-dots circle {
  fill: #444;
}

.spinner-md-primary.spinner-ios line,
.spinner-md-primary.spinner-ios-small line,
.spinner-md-primary.spinner-crescent circle {
  stroke: #327eff;
}

.spinner-md-primary.spinner-bubbles circle,
.spinner-md-primary.spinner-circles circle,
.spinner-md-primary.spinner-dots circle {
  fill: #327eff;
}

.spinner-md-secondary.spinner-ios line,
.spinner-md-secondary.spinner-ios-small line,
.spinner-md-secondary.spinner-crescent circle {
  stroke: #32db64;
}

.spinner-md-secondary.spinner-bubbles circle,
.spinner-md-secondary.spinner-circles circle,
.spinner-md-secondary.spinner-dots circle {
  fill: #32db64;
}

.spinner-md-danger.spinner-ios line,
.spinner-md-danger.spinner-ios-small line,
.spinner-md-danger.spinner-crescent circle {
  stroke: #f53d3d;
}

.spinner-md-danger.spinner-bubbles circle,
.spinner-md-danger.spinner-circles circle,
.spinner-md-danger.spinner-dots circle {
  fill: #f53d3d;
}

.spinner-md-light.spinner-ios line,
.spinner-md-light.spinner-ios-small line,
.spinner-md-light.spinner-crescent circle {
  stroke: #f4f4f4;
}

.spinner-md-light.spinner-bubbles circle,
.spinner-md-light.spinner-circles circle,
.spinner-md-light.spinner-dots circle {
  fill: #f4f4f4;
}

.spinner-md-dark.spinner-ios line,
.spinner-md-dark.spinner-ios-small line,
.spinner-md-dark.spinner-crescent circle {
  stroke: #222;
}

.spinner-md-dark.spinner-bubbles circle,
.spinner-md-dark.spinner-circles circle,
.spinner-md-dark.spinner-dots circle {
  fill: #222;
}

.spinner-wp-ios line,
.spinner-wp-ios-small line {
  stroke: #69717d;
}

.spinner-wp-bubbles circle {
  fill: #000;
}

.spinner-wp-circles circle {
  fill: #69717d;
}

.spinner-wp-crescent circle {
  stroke: #000;
}

.spinner-wp-dots circle {
  fill: #444;
}

.spinner-wp-primary.spinner-ios line,
.spinner-wp-primary.spinner-ios-small line,
.spinner-wp-primary.spinner-crescent circle {
  stroke: #327eff;
}

.spinner-wp-primary.spinner-bubbles circle,
.spinner-wp-primary.spinner-circles circle,
.spinner-wp-primary.spinner-dots circle {
  fill: #327eff;
}

.spinner-wp-secondary.spinner-ios line,
.spinner-wp-secondary.spinner-ios-small line,
.spinner-wp-secondary.spinner-crescent circle {
  stroke: #32db64;
}

.spinner-wp-secondary.spinner-bubbles circle,
.spinner-wp-secondary.spinner-circles circle,
.spinner-wp-secondary.spinner-dots circle {
  fill: #32db64;
}

.spinner-wp-danger.spinner-ios line,
.spinner-wp-danger.spinner-ios-small line,
.spinner-wp-danger.spinner-crescent circle {
  stroke: #f53d3d;
}

.spinner-wp-danger.spinner-bubbles circle,
.spinner-wp-danger.spinner-circles circle,
.spinner-wp-danger.spinner-dots circle {
  fill: #f53d3d;
}

.spinner-wp-light.spinner-ios line,
.spinner-wp-light.spinner-ios-small line,
.spinner-wp-light.spinner-crescent circle {
  stroke: #f4f4f4;
}

.spinner-wp-light.spinner-bubbles circle,
.spinner-wp-light.spinner-circles circle,
.spinner-wp-light.spinner-dots circle {
  fill: #f4f4f4;
}

.spinner-wp-dark.spinner-ios line,
.spinner-wp-dark.spinner-ios-small line,
.spinner-wp-dark.spinner-crescent circle {
  stroke: #222;
}

.spinner-wp-dark.spinner-bubbles circle,
.spinner-wp-dark.spinner-circles circle,
.spinner-wp-dark.spinner-dots circle {
  fill: #222;
}

.split-pane {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  contain: strict;
}

.split-pane-side:not(ion-menu) {
  display: none;
}

.split-pane-visible > .split-pane-side,
.split-pane-visible > .split-pane-main {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: relative;
  z-index: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.split-pane-visible > .split-pane-side {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
}

.split-pane-visible > .split-pane-main,
.split-pane-visible > ion-nav.split-pane-side,
.split-pane-visible > ion-tabs.split-pane-side,
.split-pane-visible > ion-menu.menu-enabled {
  display: block;
}

.split-pane-visible > ion-split-pane.split-pane-side,
.split-pane-visible > ion-split-pane.split-pane-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.split-pane-visible > ion-menu.menu-enabled > .menu-inner {
  left: 0;
  right: 0;
  width: auto;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-transform: none !important;
  transform: none !important;
}

.split-pane-visible > ion-menu.menu-enabled > .ion-backdrop {
  display: hidden !important;
}

.split-pane-visible > .split-pane-side[side=start] {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
}

.split-pane-visible > .split-pane-side[side=end] {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

.split-pane-visible > .split-pane-side[side=left] {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
}

.split-pane-visible > .split-pane-side[side=right] {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

.split-pane-ios.split-pane-visible > .split-pane-side {
  min-width: 270px;
  max-width: 28%;
  border-right: 0.55px solid #c8c7cc;
  border-left: 0;
}

.split-pane-ios.split-pane-visible > .split-pane-side[side=right] {
  border-right: 0;
  border-left: 0.55px solid #c8c7cc;
}

.split-pane-md.split-pane-visible > .split-pane-side {
  min-width: 270px;
  max-width: 28%;
  border-right: 1px solid #dedede;
  border-left: 0;
}

.split-pane-md.split-pane-visible > .split-pane-side[side=right] {
  border-right: 0;
  border-left: 1px solid #dedede;
}

.split-pane-wp.split-pane-visible > .split-pane-side {
  min-width: 270px;
  max-width: 28%;
  border-right: 1px solid transparent;
  border-left: 0;
}

.split-pane-wp.split-pane-visible > .split-pane-side[side=right] {
  border-right: 0;
  border-left: 1px solid transparent;
}

.tabbar {
  left: 0;
  bottom: 0;
  position: absolute;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  opacity: 0;
}

.tabbar-hidden .tabbar {
  display: none;
}

.tabbar.show-tabbar {
  opacity: 1;
}

[tabsPlacement=top] > .tabbar {
  top: 0;
  bottom: auto;
}

.tab-button {
  margin: 0;
  text-align: center;
  border-radius: 0;
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 0;
  text-decoration: none;
  background: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.tab-disabled {
  pointer-events: none;
}

.tab-disabled ion-badge,
.tab-disabled ion-icon,
.tab-disabled span {
  opacity: .4;
}

.tab-button-text {
  margin-top: 3px;
  margin-bottom: 2px;
}

.tab-button-text,
.tab-button-icon {
  display: none;
  overflow: hidden;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  min-width: 26px;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.has-icon .tab-button-icon,
.has-title .tab-button-text {
  display: block;
}

.has-title-only .tab-button-text {
  white-space: normal;
}

[tabsLayout=icon-bottom] .tab-button .tab-button-icon {
  -webkit-box-ordinal-group: 11;
  -webkit-order: 10;
  -ms-flex-order: 10;
  order: 10;
}

[tabsLayout=icon-left] .tab-button,
[tabsLayout=icon-right] .tab-button,
[tabsLayout=icon-start] .tab-button,
[tabsLayout=icon-end] .tab-button {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

[tabsLayout=icon-left] .tab-button .tab-button-icon,
[tabsLayout=icon-start] .tab-button .tab-button-icon {
  padding-right: 8px;
  text-align: right;
  text-align: end;
}

[tabsLayout=icon-right] .tab-button .tab-button-icon,
[tabsLayout=icon-end] .tab-button .tab-button-icon {
  padding-left: 8px;
  text-align: left;
  text-align: start;
  -webkit-box-ordinal-group: 11;
  -webkit-order: 10;
  -ms-flex-order: 10;
  order: 10;
}

.tab-hidden,
.tab-highlight,
[tabsLayout=icon-hide] .tab-button-icon,
[tabsLayout=title-hide] .tab-button-text {
  display: none;
}

.tab-badge {
  right: 4%;
  top: 6%;
  right: calc(50% - 50px);
  padding: 1px 6px;
  position: absolute;
  height: auto;
  font-size: 12px;
  line-height: 16px;
}

.has-icon .tab-badge {
  right: calc(50% - 30px);
}

[tabsLayout=icon-bottom] .tab-badge,
[tabsLayout=icon-left] .tab-badge,
[tabsLayout=icon-right] .tab-badge,
[tabsLayout=icon-start] .tab-badge,
[tabsLayout=icon-end] .tab-badge {
  right: calc(50% - 50px);
}

.tabs-ios .tabbar {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: 0.55px solid rgba(0, 0, 0, 0.3);
  background: #f8f8f8;
}

.tabs-ios[tabsPlacement=top] .tabbar {
  border-top: 0;
  border-bottom: 0.55px solid rgba(0, 0, 0, 0.3);
}

.tabs-ios .tab-button {
  max-width: 240px;
  min-height: 49px;
  font-size: 10px;
  font-weight: 500;
  color: #8c8c8c;
  padding: 0 2px;
}

.tabs-ios .tab-button:hover:not(.disable-hover),
.tabs-ios .tab-button[aria-selected=true] {
  color: #327eff;
}

.tabs-ios .tab-button[aria-selected=true] .tab-button-icon {
  color: #327eff;
}

.tabs-ios .tab-button-text {
  margin-top: 0;
  margin-bottom: 1px;
  min-height: 11px;
}

.tabs-ios .has-title-only .tab-button-text {
  font-size: 12px;
}

.tabs-ios .tab-button-icon {
  margin-top: 4px;
  margin-bottom: 1px;
  min-width: 35px;
  height: 30px;
  font-size: 30px;
  color: #8c8c8c;
}

.tabs-ios .tab-button-icon::before {
  vertical-align: top;
}

.tabs-ios[tabsLayout=icon-right] .tab-button .tab-button-text,
.tabs-ios[tabsLayout=icon-left] .tab-button .tab-button-text,
.tabs-ios[tabsLayout=icon-end] .tab-button .tab-button-text,
.tabs-ios[tabsLayout=icon-start] .tab-button .tab-button-text {
  font-size: 1.4rem;
  line-height: 1.1;
}

.tabs-ios[tabsLayout=icon-right] .tab-button ion-icon,
.tabs-ios[tabsLayout=icon-left] .tab-button ion-icon,
.tabs-ios[tabsLayout=icon-end] .tab-button ion-icon,
.tabs-ios[tabsLayout=icon-start] .tab-button ion-icon {
  min-width: 24px;
  height: 26px;
  font-size: 24px;
}

.tabs-ios[tabsLayout=icon-hide] .tab-button,
.tabs-ios .tab-button.has-title-only {
  min-height: 41px;
}

.tabs-ios[tabsLayout=icon-hide] .tab-button .tab-button-text,
.tabs-ios .tab-button.has-title-only .tab-button-text {
  margin: 2px 0;
  font-size: 1.4rem;
  line-height: 1.1;
}

.tabs-ios[tabsLayout=title-hide] .tab-button,
.tabs-ios .tab-button.icon-only {
  min-height: 41px;
}

.tabs-ios-primary .tabbar {
  border-color: #005efe;
  background-color: #327eff;
}

.tabs-ios-primary .tab-button,
.tabs-ios-primary .tab-button-icon,
.tabs-ios-primary .tab-button:hover:not(.disable-hover),
.tabs-ios-primary .tab-button:hover:not(.disable-hover) .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-ios-primary .tab-button[aria-selected=true],
.tabs-ios-primary .tab-button[aria-selected=true] .tab-button-icon {
  color: #fff;
}

.tabs-ios-secondary .tabbar {
  border-color: #21b94e;
  background-color: #32db64;
}

.tabs-ios-secondary .tab-button,
.tabs-ios-secondary .tab-button-icon,
.tabs-ios-secondary .tab-button:hover:not(.disable-hover),
.tabs-ios-secondary .tab-button:hover:not(.disable-hover) .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-ios-secondary .tab-button[aria-selected=true],
.tabs-ios-secondary .tab-button[aria-selected=true] .tab-button-icon {
  color: #fff;
}

.tabs-ios-danger .tabbar {
  border-color: #f30d0d;
  background-color: #f53d3d;
}

.tabs-ios-danger .tab-button,
.tabs-ios-danger .tab-button-icon,
.tabs-ios-danger .tab-button:hover:not(.disable-hover),
.tabs-ios-danger .tab-button:hover:not(.disable-hover) .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-ios-danger .tab-button[aria-selected=true],
.tabs-ios-danger .tab-button[aria-selected=true] .tab-button-icon {
  color: #fff;
}

.tabs-ios-light .tabbar {
  border-color: #dbdbdb;
  background-color: #f4f4f4;
}

.tabs-ios-light .tab-button,
.tabs-ios-light .tab-button-icon,
.tabs-ios-light .tab-button:hover:not(.disable-hover),
.tabs-ios-light .tab-button:hover:not(.disable-hover) .tab-button-icon {
  color: rgba(0, 0, 0, 0.7);
}

.tabs-ios-light .tab-button[aria-selected=true],
.tabs-ios-light .tab-button[aria-selected=true] .tab-button-icon {
  color: #000;
}

.tabs-ios-dark .tabbar {
  border-color: #090909;
  background-color: #222;
}

.tabs-ios-dark .tab-button,
.tabs-ios-dark .tab-button-icon,
.tabs-ios-dark .tab-button:hover:not(.disable-hover),
.tabs-ios-dark .tab-button:hover:not(.disable-hover) .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-ios-dark .tab-button[aria-selected=true],
.tabs-ios-dark .tab-button[aria-selected=true] .tab-button-icon {
  color: #fff;
}

.tabs-md .tabbar {
  background: #f8f8f8;
}

.tabs-md .tab-button {
  min-height: 5.6rem;
  font-weight: normal;
  color: rgba(60, 60, 60, 0.7);
  padding: 0;
}

.tabs-md .tab-button[aria-selected=true] {
  color: #327eff;
  padding: 0;
}

.tabs-md .tab-button-text {
  font-size: 1.2rem;
  text-transform: none;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  margin: 0;
  -webkit-transform-origin: 50% 80%;
  transform-origin: 50% 80%;
}

.tabs-md .tab-button[aria-selected=true] .tab-button-text {
  -webkit-transform: scale3d(1.16667, 1.16667, 1);
  transform: scale3d(1.16667, 1.16667, 1);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.tabs-md[tabsLayout=icon-top] .has-icon .tab-button-text {
  margin-top: 4px;
  margin-bottom: 0;
}

.tabs-md[tabsLayout=icon-bottom] .tab-button .tab-button-text {
  margin-top: 0;
}

.tabs-md .tab-button-icon {
  margin-top: 1px;
  min-width: 2.4rem;
  font-size: 2.4rem;
  color: rgba(60, 60, 60, 0.7);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transform-origin: 50% 150%;
  transform-origin: 50% 150%;
}

.tabs-md .tab-button[aria-selected=true] .tab-button-icon {
  color: #327eff;
  -webkit-transform: translate3d(0,  -2px,  0);
  transform: translate3d(0,  -2px,  0);
}

.tabs-md[tabsLayout=icon-right] .tab-button[aria-selected=true] .tab-button-icon,
.tabs-md[tabsLayout=icon-end] .tab-button[aria-selected=true] .tab-button-icon {
  -webkit-transform: translate3d(2px,  0,  0);
  transform: translate3d(2px,  0,  0);
}

.tabs-md[tabsLayout=icon-bottom] .tab-button[aria-selected=true] .tab-button-icon {
  -webkit-transform: translate3d(0,  2px,  0);
  transform: translate3d(0,  2px,  0);
}

.tabs-md[tabsLayout=icon-left] .tab-button[aria-selected=true] .tab-button-icon,
.tabs-md[tabsLayout=icon-start] .tab-button[aria-selected=true] .tab-button-icon {
  -webkit-transform: translate3d(-2px,  0,  0);
  transform: translate3d(-2px,  0,  0);
}

.tabs-md[tabsLayout=icon-hide] .tab-button,
.tabs-md[tabsLayout=title-hide] .tab-button,
.tabs-md .tab-button.icon-only,
.tabs-md .tab-button.has-title-only {
  padding: 0 10px;
}

.tabs-md[tabsHighlight=true] .tab-highlight {
  left: 0;
  bottom: 0;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  position: absolute;
  display: block;
  width: 1px;
  height: 2px;
  background: #327eff;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.tabs-md[tabsHighlight=true] .tab-highlight.animate {
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
}

.tabs-md[tabsHighlight=true][tabsPlacement=bottom] > .tabbar > .tab-highlight {
  top: 0;
}

.tabs-md-primary .tabbar {
  background-color: #327eff;
}

.tabs-md-primary .tab-button,
.tabs-md-primary .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-md-primary .tab-button:hover:not(.disable-hover),
.tabs-md-primary .tab-button[aria-selected=true],
.tabs-md-primary .tab-button[aria-selected=true] .tab-button-icon {
  color: #fff;
}

.tabs-md-primary[tabsHighlight=true] .tab-highlight {
  background: #fff;
}

.tabs-md-secondary .tabbar {
  background-color: #32db64;
}

.tabs-md-secondary .tab-button,
.tabs-md-secondary .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-md-secondary .tab-button:hover:not(.disable-hover),
.tabs-md-secondary .tab-button[aria-selected=true],
.tabs-md-secondary .tab-button[aria-selected=true] .tab-button-icon {
  color: #fff;
}

.tabs-md-secondary[tabsHighlight=true] .tab-highlight {
  background: #fff;
}

.tabs-md-danger .tabbar {
  background-color: #f53d3d;
}

.tabs-md-danger .tab-button,
.tabs-md-danger .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-md-danger .tab-button:hover:not(.disable-hover),
.tabs-md-danger .tab-button[aria-selected=true],
.tabs-md-danger .tab-button[aria-selected=true] .tab-button-icon {
  color: #fff;
}

.tabs-md-danger[tabsHighlight=true] .tab-highlight {
  background: #fff;
}

.tabs-md-light .tabbar {
  background-color: #f4f4f4;
}

.tabs-md-light .tab-button,
.tabs-md-light .tab-button-icon {
  color: rgba(0, 0, 0, 0.7);
}

.tabs-md-light .tab-button:hover:not(.disable-hover),
.tabs-md-light .tab-button[aria-selected=true],
.tabs-md-light .tab-button[aria-selected=true] .tab-button-icon {
  color: #000;
}

.tabs-md-light[tabsHighlight=true] .tab-highlight {
  background: #000;
}

.tabs-md-dark .tabbar {
  background-color: #222;
}

.tabs-md-dark .tab-button,
.tabs-md-dark .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-md-dark .tab-button:hover:not(.disable-hover),
.tabs-md-dark .tab-button[aria-selected=true],
.tabs-md-dark .tab-button[aria-selected=true] .tab-button-icon {
  color: #fff;
}

.tabs-md-dark[tabsHighlight=true] .tab-highlight {
  background: #fff;
}

.tabs-wp .tabbar {
  background: #f8f8f8;
}

.tabs-wp .tab-button {
  border-radius: 0;
  min-height: 4.8rem;
  border-bottom: 2px solid transparent;
  font-size: 1.2rem;
  font-weight: normal;
  color: rgba(140, 140, 140, 0.7);
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 12px 10px 5px;
}

.tabs-wp .tab-button[aria-selected=true] {
  border-bottom-color: #327eff;
  color: #327eff;
}

.tabs-wp .tab-button.activated {
  background: rgba(0, 0, 0, 0.1);
}

.tabs-wp[tabsPlacement=bottom] .tab-button {
  border-top: 2px solid transparent;
  border-bottom-width: 0;
}

.tabs-wp[tabsPlacement=bottom] .tab-button[aria-selected=true] {
  border-top-color: #327eff;
}

.tabs-wp .tab-button-text {
  margin-top: 5px;
  margin-bottom: 5px;
}

.tabs-wp .tab-button-icon {
  min-width: 2.4rem;
  font-size: 2.4rem;
  color: rgba(140, 140, 140, 0.7);
}

.tabs-wp .tab-button[aria-selected=true] .tab-button-icon {
  color: #327eff;
}

.tabs-wp[tabsLayout=icon-bottom] .tab-button {
  padding-top: 8px;
  padding-bottom: 8px;
}

.tabs-wp[tabsLayout=icon-right] .tab-button,
.tabs-wp[tabsLayout=icon-left] .tab-button,
.tabs-wp[tabsLayout=icon-end] .tab-button,
.tabs-wp[tabsLayout=icon-start] .tab-button {
  padding-bottom: 10px;
}

.tabs-wp[tabsLayout=icon-right] .tab-button ion-icon,
.tabs-wp[tabsLayout=icon-left] .tab-button ion-icon,
.tabs-wp[tabsLayout=icon-end] .tab-button ion-icon,
.tabs-wp[tabsLayout=icon-start] .tab-button ion-icon {
  min-width: 24px;
}

.tabs-wp[tabsLayout=icon-hide] .tab-button,
.tabs-wp[tabsLayout=title-hide] .tab-button,
.tabs-wp .tab-button.icon-only,
.tabs-wp .tab-button.has-title-only {
  padding: 6px 10px;
}

.tabs-wp-primary .tabbar {
  background-color: #327eff;
}

.tabs-wp-primary .tab-button,
.tabs-wp-primary .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-wp-primary .tab-button:hover:not(.disable-hover),
.tabs-wp-primary .tab-button:hover:not(.disable-hover) .tab-button-icon,
.tabs-wp-primary .tab-button[aria-selected=true],
.tabs-wp-primary .tab-button[aria-selected=true] .tab-button-icon {
  border-color: #fff;
  color: #fff;
}

.tabs-wp-secondary .tabbar {
  background-color: #32db64;
}

.tabs-wp-secondary .tab-button,
.tabs-wp-secondary .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-wp-secondary .tab-button:hover:not(.disable-hover),
.tabs-wp-secondary .tab-button:hover:not(.disable-hover) .tab-button-icon,
.tabs-wp-secondary .tab-button[aria-selected=true],
.tabs-wp-secondary .tab-button[aria-selected=true] .tab-button-icon {
  border-color: #fff;
  color: #fff;
}

.tabs-wp-danger .tabbar {
  background-color: #f53d3d;
}

.tabs-wp-danger .tab-button,
.tabs-wp-danger .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-wp-danger .tab-button:hover:not(.disable-hover),
.tabs-wp-danger .tab-button:hover:not(.disable-hover) .tab-button-icon,
.tabs-wp-danger .tab-button[aria-selected=true],
.tabs-wp-danger .tab-button[aria-selected=true] .tab-button-icon {
  border-color: #fff;
  color: #fff;
}

.tabs-wp-light .tabbar {
  background-color: #f4f4f4;
}

.tabs-wp-light .tab-button,
.tabs-wp-light .tab-button-icon {
  color: rgba(0, 0, 0, 0.7);
}

.tabs-wp-light .tab-button:hover:not(.disable-hover),
.tabs-wp-light .tab-button:hover:not(.disable-hover) .tab-button-icon,
.tabs-wp-light .tab-button[aria-selected=true],
.tabs-wp-light .tab-button[aria-selected=true] .tab-button-icon {
  border-color: #000;
  color: #000;
}

.tabs-wp-dark .tabbar {
  background-color: #222;
}

.tabs-wp-dark .tab-button,
.tabs-wp-dark .tab-button-icon {
  color: rgba(255, 255, 255, 0.7);
}

.tabs-wp-dark .tab-button:hover:not(.disable-hover),
.tabs-wp-dark .tab-button:hover:not(.disable-hover) .tab-button-icon,
.tabs-wp-dark .tab-button[aria-selected=true],
.tabs-wp-dark .tab-button[aria-selected=true] .tab-button-icon {
  border-color: #fff;
  color: #fff;
}

ion-toast {
  left: 0;
  top: 0;
  position: absolute;
  z-index: 1000;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  contain: strict;
}

.toast-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  pointer-events: auto;
  contain: content;
}

.toast-button {
  padding: 19px 16px 17px;
  font-size: 1.5rem;
}

.toast-message {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.toast-ios .toast-wrapper {
  left: 10px;
  right: 10px;
  margin: auto;
  border-radius: 0.65rem;
  position: absolute;
  z-index: 10;
  display: block;
  max-width: 700px;
  background: rgba(0, 0, 0, 0.9);
}

.toast-ios .toast-wrapper.toast-top {
  -webkit-transform: translate3d(0,  -100%,  0);
  transform: translate3d(0,  -100%,  0);
  margin: constant(safe-area-inset-top) auto auto;
  margin: env(safe-area-inset-top) auto auto;
  top: 0;
}

.toast-ios .toast-wrapper.toast-bottom {
  -webkit-transform: translate3d(0,  100%,  0);
  transform: translate3d(0,  100%,  0);
  margin: auto auto constant(safe-area-inset-bottom);
  margin: auto auto env(safe-area-inset-bottom);
  bottom: 0;
}

.toast-ios .toast-wrapper.toast-middle {
  opacity: .01;
}

.toast-ios .toast-message {
  font-size: 1.4rem;
  color: #fff;
  padding: 1.5rem;
}

.toast-md .toast-wrapper {
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  z-index: 10;
  display: block;
  width: 100%;
  max-width: 700px;
  background: #333;
}

.toast-md .toast-wrapper.toast-top {
  -webkit-transform: translate3d(0,  -100%,  0);
  transform: translate3d(0,  -100%,  0);
  top: 0;
}

.toast-md .toast-wrapper.toast-bottom {
  -webkit-transform: translate3d(0,  100%,  0);
  transform: translate3d(0,  100%,  0);
  bottom: 0;
}

.toast-md .toast-wrapper.toast-middle {
  opacity: .01;
}

.toast-md .toast-message {
  font-size: 1.5rem;
  color: #fff;
  padding: 19px 16px 17px;
}

.toast-wp .toast-wrapper {
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 0;
  position: absolute;
  z-index: 10;
  display: block;
  max-width: 700px;
  background: black;
}

.toast-wp .toast-wrapper.toast-top {
  top: 0;
  opacity: .01;
}

.toast-wp .toast-wrapper.toast-bottom {
  bottom: 0;
  opacity: .01;
}

.toast-wp .toast-wrapper.toast-middle {
  opacity: .01;
}

.toast-message {
  font-size: 1.4rem;
  color: #fff;
  padding: 1.5rem;
}

.toast-button {
  color: #fff;
}

.toggle-ios {
  position: relative;
  display: block;
  width: 51px;
  height: 32px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  contain: strict;
}

.toggle-ios .toggle-icon {
  border-radius: 16px;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #e6e6e6;
  -webkit-transition: background-color 300ms;
  transition: background-color 300ms;
  pointer-events: none;
}

.toggle-ios .toggle-icon::before {
  left: 2px;
  right: 2px;
  top: 2px;
  bottom: 2px;
  border-radius: 16px;
  position: absolute;
  background-color: #fff;
  content: "";
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
}

.toggle-ios .toggle-inner {
  left: 2px;
  top: 2px;
  border-radius: 14px;
  position: absolute;
  width: 28px;
  height: 28px;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16), 0 3px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16), 0 3px 1px rgba(0, 0, 0, 0.1);
  -webkit-transition: width 120ms ease-in-out 80ms, left 110ms ease-in-out 80ms, right 110ms ease-in-out 80ms, -webkit-transform 300ms;
  transition: width 120ms ease-in-out 80ms, left 110ms ease-in-out 80ms, right 110ms ease-in-out 80ms, -webkit-transform 300ms;
  transition: transform 300ms, width 120ms ease-in-out 80ms, left 110ms ease-in-out 80ms, right 110ms ease-in-out 80ms;
  transition: transform 300ms, width 120ms ease-in-out 80ms, left 110ms ease-in-out 80ms, right 110ms ease-in-out 80ms, -webkit-transform 300ms;
  will-change: transform;
  contain: strict;
}

.toggle-ios.toggle-checked .toggle-icon {
  background-color: #327eff;
}

.toggle-ios.toggle-activated .toggle-icon::before,
.toggle-ios.toggle-checked .toggle-icon::before {
  -webkit-transform: scale3d(0, 0, 0);
  transform: scale3d(0, 0, 0);
}

.toggle-ios.toggle-checked .toggle-inner {
  -webkit-transform: translate3d(19px,  0,  0);
  transform: translate3d(19px,  0,  0);
}

.toggle-ios.toggle-activated.toggle-checked .toggle-inner::before {
  -webkit-transform: scale3d(0, 0, 0);
  transform: scale3d(0, 0, 0);
}

.toggle-ios.toggle-activated .toggle-inner {
  width: 34px;
}

.toggle-ios.toggle-activated.toggle-checked .toggle-inner {
  left: -4px;
}

.toggle-ios.toggle-disabled,
.item-ios.item-toggle-disabled ion-label {
  opacity: 0.3;
  pointer-events: none;
}

.item-ios .toggle-ios {
  margin: 0;
  padding: 6px 8px 5px 16px;
}

.item-ios .toggle-ios[item-left],
.item-ios .toggle-ios[item-start] {
  padding: 6px 16px 5px 0;
}

.toggle-ios-primary.toggle-checked .toggle-icon {
  background-color: #327eff;
}

.toggle-ios-secondary.toggle-checked .toggle-icon {
  background-color: #32db64;
}

.toggle-ios-danger.toggle-checked .toggle-icon {
  background-color: #f53d3d;
}

.toggle-ios-light.toggle-checked .toggle-icon {
  background-color: #f4f4f4;
}

.toggle-ios-dark.toggle-checked .toggle-icon {
  background-color: #222;
}

.toggle-md {
  position: relative;
  display: block;
  width: 36px;
  height: 14px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  contain: strict;
  padding: 12px;
}

.toggle-md .toggle-icon {
  border-radius: 14px;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #dedede;
  -webkit-transition: background-color 300ms;
  transition: background-color 300ms;
  pointer-events: none;
}

.toggle-md .toggle-inner {
  left: 0;
  top: -3px;
  border-radius: 50%;
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, -webkit-transform;
  transition-property: transform, background-color;
  transition-property: transform, background-color, -webkit-transform;
  will-change: transform, background-color;
  contain: strict;
}

.toggle-md.toggle-checked .toggle-icon {
  background-color: #b2ceff;
}

.toggle-md.toggle-checked .toggle-inner {
  -webkit-transform: translate3d(16px,  0,  0);
  transform: translate3d(16px,  0,  0);
  background-color: #327eff;
}

.toggle-md.toggle-disabled,
.item-md.item-toggle-disabled ion-label {
  opacity: 0.3;
  pointer-events: none;
}

.toggle-md.toggle-disabled ion-radio {
  opacity: 0.3;
}

.item-md .toggle-md {
  cursor: pointer;
  margin: 0;
  padding: 12px 8px 12px 16px;
}

.item-md .toggle-md[item-left],
.item-md .toggle-md[item-start] {
  padding: 12px 18px 12px 2px;
}

.item-md.item-toggle ion-label {
  margin-left: 0;
}

.toggle-md-primary.toggle-checked .toggle-icon {
  background-color: #b2ceff;
}

.toggle-md-primary.toggle-checked .toggle-inner {
  background-color: #327eff;
}

.toggle-md-secondary.toggle-checked .toggle-icon {
  background-color: #9eeeb6;
}

.toggle-md-secondary.toggle-checked .toggle-inner {
  background-color: #32db64;
}

.toggle-md-danger.toggle-checked .toggle-icon {
  background-color: #fbb6b6;
}

.toggle-md-danger.toggle-checked .toggle-inner {
  background-color: #f53d3d;
}

.toggle-md-light.toggle-checked .toggle-icon {
  background-color: white;
}

.toggle-md-light.toggle-checked .toggle-inner {
  background-color: #f4f4f4;
}

.toggle-md-dark.toggle-checked .toggle-icon {
  background-color: #626262;
}

.toggle-md-dark.toggle-checked .toggle-inner {
  background-color: #222;
}

.toggle-wp {
  position: relative;
  display: block;
  width: 40px;
  height: 18px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  contain: strict;
}

.toggle-wp .toggle-icon {
  border-radius: 18px;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid #323232;
  background-color: transparent;
  pointer-events: none;
  contain: strict;
}

.toggle-wp .toggle-inner {
  left: 2px;
  top: 2px;
  border-radius: 50%;
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #323232;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, -webkit-transform;
  transition-property: transform, background-color;
  transition-property: transform, background-color, -webkit-transform;
  will-change: transform, background-color;
}

.toggle-wp.toggle-checked .toggle-icon {
  border-color: #327eff;
  background-color: #327eff;
}

.toggle-wp.toggle-checked .toggle-inner {
  -webkit-transform: translate3d(22px,  0,  0);
  transform: translate3d(22px,  0,  0);
  background-color: #fff;
}

.toggle-wp.toggle-disabled,
.item-wp.item-toggle-disabled ion-label {
  opacity: 0.3;
  pointer-events: none;
}

.toggle-wp.toggle-disabled ion-radio {
  opacity: 0.3;
}

.item-wp .toggle-wp {
  margin: 0;
  cursor: pointer;
  padding: 12px 8px 12px 16px;
}

.item-wp .toggle-wp[item-left],
.item-wp .toggle-wp[item-start] {
  padding: 12px 18px 12px 2px;
}

.item-wp.item-toggle ion-label {
  margin-left: 0;
}

.toggle-wp-primary.toggle-checked .toggle-icon {
  border-color: #327eff;
  background-color: #327eff;
}

.toggle-wp-primary.toggle-checked .toggle-inner {
  background-color: #fff;
}

.toggle-wp-secondary.toggle-checked .toggle-icon {
  border-color: #32db64;
  background-color: #32db64;
}

.toggle-wp-secondary.toggle-checked .toggle-inner {
  background-color: #fff;
}

.toggle-wp-danger.toggle-checked .toggle-icon {
  border-color: #f53d3d;
  background-color: #f53d3d;
}

.toggle-wp-danger.toggle-checked .toggle-inner {
  background-color: #fff;
}

.toggle-wp-light.toggle-checked .toggle-icon {
  border-color: #f4f4f4;
  background-color: #f4f4f4;
}

.toggle-wp-light.toggle-checked .toggle-inner {
  background-color: #000;
}

.toggle-wp-dark.toggle-checked .toggle-icon {
  border-color: #222;
  background-color: #222;
}

.toggle-wp-dark.toggle-checked .toggle-inner {
  background-color: #fff;
}

ion-toolbar {
  position: relative;
  z-index: 10;
}

.toolbar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  contain: content;
}

.toolbar-background {
  left: 0;
  top: 0;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  pointer-events: none;
  contain: strict;
}

ion-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.toolbar-title {
  display: block;
  overflow: hidden;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

ion-buttons {
  margin: 0 0.2rem;
  display: block;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  pointer-events: none;
}

ion-buttons button,
ion-buttons a,
ion-buttons input,
ion-buttons textarea,
ion-buttons div {
  pointer-events: auto;
}

.toolbar[transparent] .toolbar-background {
  border-color: transparent;
  background: transparent;
}

ion-buttons,
.bar-button-menutoggle {
  z-index: 99;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

ion-navbar.toolbar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.bar-button {
  margin: 0;
  padding: 0;
  text-align: center;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  display: inline-block;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
  cursor: pointer;
  vertical-align: top;
  vertical-align: -webkit-baseline-middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.bar-button::after {
  left: -2px;
  right: -2px;
  top: -7px;
  bottom: -6px;
  position: absolute;
  content: "";
}

.bar-button-menutoggle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.back-button {
  display: none;
}

.back-button.show-back-button {
  display: inline-block;
}

.back-button-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.toolbar-ios {
  padding: 4px;
  padding-left: 4px;
  padding-right: 4px;
  min-height: 44px;
}

@media screen and (orientation: landscape) {
  .toolbar-ios {
    padding-left: calc(constant(safe-area-inset-left) + 4px);
    padding-right: calc(constant(safe-area-inset-right) + 4px);
    padding-left: calc(env(safe-area-inset-left) + 4px);
    padding-right: calc(env(safe-area-inset-right) + 4px);
  }
}

.toolbar-background-ios {
  background: #f8f8f8;
}

.header-ios .toolbar-background-ios,
.footer-ios .toolbar-background-ios {
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.3);
}

.header-ios .toolbar-ios:last-child .toolbar-background-ios {
  border-width: 0 0 0.55px;
}

.footer-ios .toolbar-ios:first-child .toolbar-background-ios {
  border-width: 0.55px 0 0;
}

.header-ios[no-border] .toolbar-ios:last-child .toolbar-background-ios {
  border-bottom-width: 0;
}

.footer-ios[no-border] .toolbar-ios:first-child .toolbar-background-ios {
  border-top-width: 0;
}

.toolbar-content-ios {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
  -ms-flex-order: 4;
  order: 4;
  min-width: 0;
}

.toolbar-title-ios {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 600;
  color: #000;
  pointer-events: auto;
}

.toolbar-ios ion-title {
  left: 0;
  top: 0;
  padding: 0 90px 1px;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  pointer-events: none;
}

.bar-buttons-ios {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.bar-buttons-ios[left] {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
}

.bar-buttons-ios[end] {
  text-align: right;
  text-align: end;
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
  -ms-flex-order: 5;
  order: 5;
}

.bar-buttons-ios[right] {
  text-align: right;
  -webkit-box-ordinal-group: 7;
  -webkit-order: 6;
  -ms-flex-order: 6;
  order: 6;
}

.bar-button-ios {
  padding: 0 4px;
  border-radius: 4px;
  height: 32px;
  border: 0;
  font-size: 1.7rem;
}

.bar-button-outline-ios {
  border-width: 1px;
  border-style: solid;
  border-color: #327eff;
  color: #327eff;
  background-color: transparent;
}

.bar-button-outline-ios:hover:not(.disable-hover) {
  opacity: .4;
}

.bar-button-outline-ios.activated {
  color: #fff;
  background-color: #327eff;
}

.bar-button-solid-ios {
  color: #fff;
  background-color: #327eff;
}

.bar-button-solid-ios:hover:not(.disable-hover) {
  color: #fff;
  opacity: .4;
}

.bar-button-solid-ios.activated {
  color: #fff;
  background-color: #2e74eb;
  opacity: .4;
}

.bar-button-ios.bar-button-icon-start ion-icon {
  padding-right: 0.3em;
  font-size: 1.4em;
  line-height: .67;
  pointer-events: none;
}

.bar-button-ios.bar-button-icon-end ion-icon {
  padding-left: 0.4em;
  font-size: 1.4em;
  line-height: .67;
  pointer-events: none;
}

.bar-button-ios[icon-only] {
  padding: 0;
  min-width: .9em;
}

.bar-button-ios[icon-only] ion-icon {
  padding: 0 0.1em;
  font-size: 1.8em;
  line-height: .67;
  pointer-events: none;
}

.back-button-ios {
  margin: 0;
  z-index: 99;
  overflow: visible;
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  min-height: 3.2rem;
  line-height: 1;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.back-button-icon-ios {
  margin: -1px 0 0;
  display: inherit;
  min-width: 18px;
  font-size: 3.4rem;
}

.back-button-text-ios {
  letter-spacing: -.01em;
}

.bar-button-menutoggle-ios {
  margin: 0 6px;
  padding: 0;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  min-width: 36px;
}

.bar-button-menutoggle-ios ion-icon {
  padding: 0 6px;
  font-size: 2.8rem;
}

.bar-button-menutoggle-ios[end],
.bar-button-menutoggle-ios[right] {
  -webkit-box-ordinal-group: 8;
  -webkit-order: 7;
  -ms-flex-order: 7;
  order: 7;
}

.bar-button-default-ios,
.bar-button-default.bar-button-ios-default,
.bar-button-clear-ios-default {
  color: #327eff;
  background-color: transparent;
}

.bar-button-default-ios:hover:not(.disable-hover),
.bar-button-default.bar-button-ios-default:hover:not(.disable-hover),
.bar-button-clear-ios-default:hover:not(.disable-hover) {
  color: #327eff;
}

.bar-button-default-ios.activated,
.bar-button-default.bar-button-ios-default.activated,
.bar-button-clear-ios-default.activated {
  opacity: .4;
}

.bar-button-clear-ios,
.bar-button-default.bar-button-ios-clear,
.bar-button-clear-ios-clear {
  color: #327eff;
  background-color: transparent;
}

.bar-button-clear-ios:hover:not(.disable-hover),
.bar-button-default.bar-button-ios-clear:hover:not(.disable-hover),
.bar-button-clear-ios-clear:hover:not(.disable-hover) {
  color: #327eff;
}

.bar-button-clear-ios.activated,
.bar-button-default.bar-button-ios-clear.activated,
.bar-button-clear-ios-clear.activated {
  opacity: .4;
}

.toolbar-ios-primary .toolbar-background-ios {
  background: #327eff;
}

.toolbar-ios-primary .toolbar-title-ios,
.toolbar-ios-primary .bar-button-clear-ios,
.toolbar-ios-primary .bar-button-default-ios {
  color: #fff;
}

.toolbar-ios-primary .bar-button-primary-ios,
.toolbar-ios-primary .bar-button-default.bar-button-ios-primary,
.toolbar-ios-primary .bar-button-clear-ios-primary {
  color: #327eff;
  background-color: transparent;
}

.toolbar-ios-primary .bar-button-primary-ios:hover:not(.disable-hover),
.toolbar-ios-primary .bar-button-default.bar-button-ios-primary:hover:not(.disable-hover),
.toolbar-ios-primary .bar-button-clear-ios-primary:hover:not(.disable-hover) {
  color: #327eff;
}

.toolbar-ios-primary .bar-button-primary-ios.activated,
.toolbar-ios-primary .bar-button-default.bar-button-ios-primary.activated,
.toolbar-ios-primary .bar-button-clear-ios-primary.activated {
  opacity: .4;
}

.toolbar-ios-primary .bar-button-outline-ios-primary {
  border-color: #327eff;
  color: #327eff;
  background-color: transparent;
}

.toolbar-ios-primary .bar-button-outline-ios-primary.activated {
  color: #fff;
  background-color: #327eff;
}

.toolbar-ios-primary .bar-button-solid-ios-primary {
  color: #fff;
  background-color: #327eff;
}

.toolbar-ios-primary .bar-button-solid-ios-primary.activated {
  color: #fff;
  background-color: #2e74eb;
}

.toolbar-ios-primary .bar-button-secondary-ios,
.toolbar-ios-primary .bar-button-default.bar-button-ios-secondary,
.toolbar-ios-primary .bar-button-clear-ios-secondary {
  color: #32db64;
  background-color: transparent;
}

.toolbar-ios-primary .bar-button-secondary-ios:hover:not(.disable-hover),
.toolbar-ios-primary .bar-button-default.bar-button-ios-secondary:hover:not(.disable-hover),
.toolbar-ios-primary .bar-button-clear-ios-secondary:hover:not(.disable-hover) {
  color: #32db64;
}

.toolbar-ios-primary .bar-button-secondary-ios.activated,
.toolbar-ios-primary .bar-button-default.bar-button-ios-secondary.activated,
.toolbar-ios-primary .bar-button-clear-ios-secondary.activated {
  opacity: .4;
}

.toolbar-ios-primary .bar-button-outline-ios-secondary {
  border-color: #32db64;
  color: #32db64;
  background-color: transparent;
}

.toolbar-ios-primary .bar-button-outline-ios-secondary.activated {
  color: #fff;
  background-color: #32db64;
}

.toolbar-ios-primary .bar-button-solid-ios-secondary {
  color: #fff;
  background-color: #32db64;
}

.toolbar-ios-primary .bar-button-solid-ios-secondary.activated {
  color: #fff;
  background-color: #2ec95c;
}

.toolbar-ios-primary .bar-button-danger-ios,
.toolbar-ios-primary .bar-button-default.bar-button-ios-danger,
.toolbar-ios-primary .bar-button-clear-ios-danger {
  color: #f53d3d;
  background-color: transparent;
}

.toolbar-ios-primary .bar-button-danger-ios:hover:not(.disable-hover),
.toolbar-ios-primary .bar-button-default.bar-button-ios-danger:hover:not(.disable-hover),
.toolbar-ios-primary .bar-button-clear-ios-danger:hover:not(.disable-hover) {
  color: #f53d3d;
}

.toolbar-ios-primary .bar-button-danger-ios.activated,
.toolbar-ios-primary .bar-button-default.bar-button-ios-danger.activated,
.toolbar-ios-primary .bar-button-clear-ios-danger.activated {
  opacity: .4;
}

.toolbar-ios-primary .bar-button-outline-ios-danger {
  border-color: #f53d3d;
  color: #f53d3d;
  background-color: transparent;
}

.toolbar-ios-primary .bar-button-outline-ios-danger.activated {
  color: #fff;
  background-color: #f53d3d;
}

.toolbar-ios-primary .bar-button-solid-ios-danger {
  color: #fff;
  background-color: #f53d3d;
}

.toolbar-ios-primary .bar-button-solid-ios-danger.activated {
  color: #fff;
  background-color: #e13838;
}

.toolbar-ios-primary .bar-button-light-ios,
.toolbar-ios-primary .bar-button-default.bar-button-ios-light,
.toolbar-ios-primary .bar-button-clear-ios-light {
  color: #f4f4f4;
  background-color: transparent;
}

.toolbar-ios-primary .bar-button-light-ios:hover:not(.disable-hover),
.toolbar-ios-primary .bar-button-default.bar-button-ios-light:hover:not(.disable-hover),
.toolbar-ios-primary .bar-button-clear-ios-light:hover:not(.disable-hover) {
  color: #f4f4f4;
}

.toolbar-ios-primary .bar-button-light-ios.activated,
.toolbar-ios-primary .bar-button-default.bar-button-ios-light.activated,
.toolbar-ios-primary .bar-button-clear-ios-light.activated {
  opacity: .4;
}

.toolbar-ios-primary .bar-button-outline-ios-light {
  border-color: #f4f4f4;
  color: #f4f4f4;
  background-color: transparent;
}

.toolbar-ios-primary .bar-button-outline-ios-light.activated {
  color: #000;
  background-color: #f4f4f4;
}

.toolbar-ios-primary .bar-button-solid-ios-light {
  color: #000;
  background-color: #f4f4f4;
}

.toolbar-ios-primary .bar-button-solid-ios-light.activated {
  color: #000;
  background-color: #e0e0e0;
}

.toolbar-ios-primary .bar-button-dark-ios,
.toolbar-ios-primary .bar-button-default.bar-button-ios-dark,
.toolbar-ios-primary .bar-button-clear-ios-dark {
  color: #222;
  background-color: transparent;
}

.toolbar-ios-primary .bar-button-dark-ios:hover:not(.disable-hover),
.toolbar-ios-primary .bar-button-default.bar-button-ios-dark:hover:not(.disable-hover),
.toolbar-ios-primary .bar-button-clear-ios-dark:hover:not(.disable-hover) {
  color: #222;
}

.toolbar-ios-primary .bar-button-dark-ios.activated,
.toolbar-ios-primary .bar-button-default.bar-button-ios-dark.activated,
.toolbar-ios-primary .bar-button-clear-ios-dark.activated {
  opacity: .4;
}

.toolbar-ios-primary .bar-button-outline-ios-dark {
  border-color: #222;
  color: #222;
  background-color: transparent;
}

.toolbar-ios-primary .bar-button-outline-ios-dark.activated {
  color: #fff;
  background-color: #222;
}

.toolbar-ios-primary .bar-button-solid-ios-dark {
  color: #fff;
  background-color: #222;
}

.toolbar-ios-primary .bar-button-solid-ios-dark.activated {
  color: #fff;
  background-color: #343434;
}

.bar-button-primary-ios,
.bar-button-default.bar-button-ios-primary,
.bar-button-clear-ios-primary {
  color: #327eff;
  background-color: transparent;
}

.bar-button-primary-ios:hover:not(.disable-hover),
.bar-button-default.bar-button-ios-primary:hover:not(.disable-hover),
.bar-button-clear-ios-primary:hover:not(.disable-hover) {
  color: #327eff;
}

.bar-button-primary-ios.activated,
.bar-button-default.bar-button-ios-primary.activated,
.bar-button-clear-ios-primary.activated {
  opacity: .4;
}

.bar-button-outline-ios-primary {
  border-color: #327eff;
  color: #327eff;
  background-color: transparent;
}

.bar-button-outline-ios-primary.activated {
  color: #fff;
  background-color: #327eff;
}

.bar-button-solid-ios-primary {
  color: #fff;
  background-color: #327eff;
}

.bar-button-solid-ios-primary.activated {
  color: #fff;
  background-color: #2e74eb;
}

.toolbar-ios-secondary .toolbar-background-ios {
  background: #32db64;
}

.toolbar-ios-secondary .toolbar-title-ios,
.toolbar-ios-secondary .bar-button-clear-ios,
.toolbar-ios-secondary .bar-button-default-ios {
  color: #fff;
}

.toolbar-ios-secondary .bar-button-primary-ios,
.toolbar-ios-secondary .bar-button-default.bar-button-ios-primary,
.toolbar-ios-secondary .bar-button-clear-ios-primary {
  color: #327eff;
  background-color: transparent;
}

.toolbar-ios-secondary .bar-button-primary-ios:hover:not(.disable-hover),
.toolbar-ios-secondary .bar-button-default.bar-button-ios-primary:hover:not(.disable-hover),
.toolbar-ios-secondary .bar-button-clear-ios-primary:hover:not(.disable-hover) {
  color: #327eff;
}

.toolbar-ios-secondary .bar-button-primary-ios.activated,
.toolbar-ios-secondary .bar-button-default.bar-button-ios-primary.activated,
.toolbar-ios-secondary .bar-button-clear-ios-primary.activated {
  opacity: .4;
}

.toolbar-ios-secondary .bar-button-outline-ios-primary {
  border-color: #327eff;
  color: #327eff;
  background-color: transparent;
}

.toolbar-ios-secondary .bar-button-outline-ios-primary.activated {
  color: #fff;
  background-color: #327eff;
}

.toolbar-ios-secondary .bar-button-solid-ios-primary {
  color: #fff;
  background-color: #327eff;
}

.toolbar-ios-secondary .bar-button-solid-ios-primary.activated {
  color: #fff;
  background-color: #2e74eb;
}

.toolbar-ios-secondary .bar-button-secondary-ios,
.toolbar-ios-secondary .bar-button-default.bar-button-ios-secondary,
.toolbar-ios-secondary .bar-button-clear-ios-secondary {
  color: #32db64;
  background-color: transparent;
}

.toolbar-ios-secondary .bar-button-secondary-ios:hover:not(.disable-hover),
.toolbar-ios-secondary .bar-button-default.bar-button-ios-secondary:hover:not(.disable-hover),
.toolbar-ios-secondary .bar-button-clear-ios-secondary:hover:not(.disable-hover) {
  color: #32db64;
}

.toolbar-ios-secondary .bar-button-secondary-ios.activated,
.toolbar-ios-secondary .bar-button-default.bar-button-ios-secondary.activated,
.toolbar-ios-secondary .bar-button-clear-ios-secondary.activated {
  opacity: .4;
}

.toolbar-ios-secondary .bar-button-outline-ios-secondary {
  border-color: #32db64;
  color: #32db64;
  background-color: transparent;
}

.toolbar-ios-secondary .bar-button-outline-ios-secondary.activated {
  color: #fff;
  background-color: #32db64;
}

.toolbar-ios-secondary .bar-button-solid-ios-secondary {
  color: #fff;
  background-color: #32db64;
}

.toolbar-ios-secondary .bar-button-solid-ios-secondary.activated {
  color: #fff;
  background-color: #2ec95c;
}

.toolbar-ios-secondary .bar-button-danger-ios,
.toolbar-ios-secondary .bar-button-default.bar-button-ios-danger,
.toolbar-ios-secondary .bar-button-clear-ios-danger {
  color: #f53d3d;
  background-color: transparent;
}

.toolbar-ios-secondary .bar-button-danger-ios:hover:not(.disable-hover),
.toolbar-ios-secondary .bar-button-default.bar-button-ios-danger:hover:not(.disable-hover),
.toolbar-ios-secondary .bar-button-clear-ios-danger:hover:not(.disable-hover) {
  color: #f53d3d;
}

.toolbar-ios-secondary .bar-button-danger-ios.activated,
.toolbar-ios-secondary .bar-button-default.bar-button-ios-danger.activated,
.toolbar-ios-secondary .bar-button-clear-ios-danger.activated {
  opacity: .4;
}

.toolbar-ios-secondary .bar-button-outline-ios-danger {
  border-color: #f53d3d;
  color: #f53d3d;
  background-color: transparent;
}

.toolbar-ios-secondary .bar-button-outline-ios-danger.activated {
  color: #fff;
  background-color: #f53d3d;
}

.toolbar-ios-secondary .bar-button-solid-ios-danger {
  color: #fff;
  background-color: #f53d3d;
}

.toolbar-ios-secondary .bar-button-solid-ios-danger.activated {
  color: #fff;
  background-color: #e13838;
}

.toolbar-ios-secondary .bar-button-light-ios,
.toolbar-ios-secondary .bar-button-default.bar-button-ios-light,
.toolbar-ios-secondary .bar-button-clear-ios-light {
  color: #f4f4f4;
  background-color: transparent;
}

.toolbar-ios-secondary .bar-button-light-ios:hover:not(.disable-hover),
.toolbar-ios-secondary .bar-button-default.bar-button-ios-light:hover:not(.disable-hover),
.toolbar-ios-secondary .bar-button-clear-ios-light:hover:not(.disable-hover) {
  color: #f4f4f4;
}

.toolbar-ios-secondary .bar-button-light-ios.activated,
.toolbar-ios-secondary .bar-button-default.bar-button-ios-light.activated,
.toolbar-ios-secondary .bar-button-clear-ios-light.activated {
  opacity: .4;
}

.toolbar-ios-secondary .bar-button-outline-ios-light {
  border-color: #f4f4f4;
  color: #f4f4f4;
  background-color: transparent;
}

.toolbar-ios-secondary .bar-button-outline-ios-light.activated {
  color: #000;
  background-color: #f4f4f4;
}

.toolbar-ios-secondary .bar-button-solid-ios-light {
  color: #000;
  background-color: #f4f4f4;
}

.toolbar-ios-secondary .bar-button-solid-ios-light.activated {
  color: #000;
  background-color: #e0e0e0;
}

.toolbar-ios-secondary .bar-button-dark-ios,
.toolbar-ios-secondary .bar-button-default.bar-button-ios-dark,
.toolbar-ios-secondary .bar-button-clear-ios-dark {
  color: #222;
  background-color: transparent;
}

.toolbar-ios-secondary .bar-button-dark-ios:hover:not(.disable-hover),
.toolbar-ios-secondary .bar-button-default.bar-button-ios-dark:hover:not(.disable-hover),
.toolbar-ios-secondary .bar-button-clear-ios-dark:hover:not(.disable-hover) {
  color: #222;
}

.toolbar-ios-secondary .bar-button-dark-ios.activated,
.toolbar-ios-secondary .bar-button-default.bar-button-ios-dark.activated,
.toolbar-ios-secondary .bar-button-clear-ios-dark.activated {
  opacity: .4;
}

.toolbar-ios-secondary .bar-button-outline-ios-dark {
  border-color: #222;
  color: #222;
  background-color: transparent;
}

.toolbar-ios-secondary .bar-button-outline-ios-dark.activated {
  color: #fff;
  background-color: #222;
}

.toolbar-ios-secondary .bar-button-solid-ios-dark {
  color: #fff;
  background-color: #222;
}

.toolbar-ios-secondary .bar-button-solid-ios-dark.activated {
  color: #fff;
  background-color: #343434;
}

.bar-button-secondary-ios,
.bar-button-default.bar-button-ios-secondary,
.bar-button-clear-ios-secondary {
  color: #32db64;
  background-color: transparent;
}

.bar-button-secondary-ios:hover:not(.disable-hover),
.bar-button-default.bar-button-ios-secondary:hover:not(.disable-hover),
.bar-button-clear-ios-secondary:hover:not(.disable-hover) {
  color: #32db64;
}

.bar-button-secondary-ios.activated,
.bar-button-default.bar-button-ios-secondary.activated,
.bar-button-clear-ios-secondary.activated {
  opacity: .4;
}

.bar-button-outline-ios-secondary {
  border-color: #32db64;
  color: #32db64;
  background-color: transparent;
}

.bar-button-outline-ios-secondary.activated {
  color: #fff;
  background-color: #32db64;
}

.bar-button-solid-ios-secondary {
  color: #fff;
  background-color: #32db64;
}

.bar-button-solid-ios-secondary.activated {
  color: #fff;
  background-color: #2ec95c;
}

.toolbar-ios-danger .toolbar-background-ios {
  background: #f53d3d;
}

.toolbar-ios-danger .toolbar-title-ios,
.toolbar-ios-danger .bar-button-clear-ios,
.toolbar-ios-danger .bar-button-default-ios {
  color: #fff;
}

.toolbar-ios-danger .bar-button-primary-ios,
.toolbar-ios-danger .bar-button-default.bar-button-ios-primary,
.toolbar-ios-danger .bar-button-clear-ios-primary {
  color: #327eff;
  background-color: transparent;
}

.toolbar-ios-danger .bar-button-primary-ios:hover:not(.disable-hover),
.toolbar-ios-danger .bar-button-default.bar-button-ios-primary:hover:not(.disable-hover),
.toolbar-ios-danger .bar-button-clear-ios-primary:hover:not(.disable-hover) {
  color: #327eff;
}

.toolbar-ios-danger .bar-button-primary-ios.activated,
.toolbar-ios-danger .bar-button-default.bar-button-ios-primary.activated,
.toolbar-ios-danger .bar-button-clear-ios-primary.activated {
  opacity: .4;
}

.toolbar-ios-danger .bar-button-outline-ios-primary {
  border-color: #327eff;
  color: #327eff;
  background-color: transparent;
}

.toolbar-ios-danger .bar-button-outline-ios-primary.activated {
  color: #fff;
  background-color: #327eff;
}

.toolbar-ios-danger .bar-button-solid-ios-primary {
  color: #fff;
  background-color: #327eff;
}

.toolbar-ios-danger .bar-button-solid-ios-primary.activated {
  color: #fff;
  background-color: #2e74eb;
}

.toolbar-ios-danger .bar-button-secondary-ios,
.toolbar-ios-danger .bar-button-default.bar-button-ios-secondary,
.toolbar-ios-danger .bar-button-clear-ios-secondary {
  color: #32db64;
  background-color: transparent;
}

.toolbar-ios-danger .bar-button-secondary-ios:hover:not(.disable-hover),
.toolbar-ios-danger .bar-button-default.bar-button-ios-secondary:hover:not(.disable-hover),
.toolbar-ios-danger .bar-button-clear-ios-secondary:hover:not(.disable-hover) {
  color: #32db64;
}

.toolbar-ios-danger .bar-button-secondary-ios.activated,
.toolbar-ios-danger .bar-button-default.bar-button-ios-secondary.activated,
.toolbar-ios-danger .bar-button-clear-ios-secondary.activated {
  opacity: .4;
}

.toolbar-ios-danger .bar-button-outline-ios-secondary {
  border-color: #32db64;
  color: #32db64;
  background-color: transparent;
}

.toolbar-ios-danger .bar-button-outline-ios-secondary.activated {
  color: #fff;
  background-color: #32db64;
}

.toolbar-ios-danger .bar-button-solid-ios-secondary {
  color: #fff;
  background-color: #32db64;
}

.toolbar-ios-danger .bar-button-solid-ios-secondary.activated {
  color: #fff;
  background-color: #2ec95c;
}

.toolbar-ios-danger .bar-button-danger-ios,
.toolbar-ios-danger .bar-button-default.bar-button-ios-danger,
.toolbar-ios-danger .bar-button-clear-ios-danger {
  color: #f53d3d;
  background-color: transparent;
}

.toolbar-ios-danger .bar-button-danger-ios:hover:not(.disable-hover),
.toolbar-ios-danger .bar-button-default.bar-button-ios-danger:hover:not(.disable-hover),
.toolbar-ios-danger .bar-button-clear-ios-danger:hover:not(.disable-hover) {
  color: #f53d3d;
}

.toolbar-ios-danger .bar-button-danger-ios.activated,
.toolbar-ios-danger .bar-button-default.bar-button-ios-danger.activated,
.toolbar-ios-danger .bar-button-clear-ios-danger.activated {
  opacity: .4;
}

.toolbar-ios-danger .bar-button-outline-ios-danger {
  border-color: #f53d3d;
  color: #f53d3d;
  background-color: transparent;
}

.toolbar-ios-danger .bar-button-outline-ios-danger.activated {
  color: #fff;
  background-color: #f53d3d;
}

.toolbar-ios-danger .bar-button-solid-ios-danger {
  color: #fff;
  background-color: #f53d3d;
}

.toolbar-ios-danger .bar-button-solid-ios-danger.activated {
  color: #fff;
  background-color: #e13838;
}

.toolbar-ios-danger .bar-button-light-ios,
.toolbar-ios-danger .bar-button-default.bar-button-ios-light,
.toolbar-ios-danger .bar-button-clear-ios-light {
  color: #f4f4f4;
  background-color: transparent;
}

.toolbar-ios-danger .bar-button-light-ios:hover:not(.disable-hover),
.toolbar-ios-danger .bar-button-default.bar-button-ios-light:hover:not(.disable-hover),
.toolbar-ios-danger .bar-button-clear-ios-light:hover:not(.disable-hover) {
  color: #f4f4f4;
}

.toolbar-ios-danger .bar-button-light-ios.activated,
.toolbar-ios-danger .bar-button-default.bar-button-ios-light.activated,
.toolbar-ios-danger .bar-button-clear-ios-light.activated {
  opacity: .4;
}

.toolbar-ios-danger .bar-button-outline-ios-light {
  border-color: #f4f4f4;
  color: #f4f4f4;
  background-color: transparent;
}

.toolbar-ios-danger .bar-button-outline-ios-light.activated {
  color: #000;
  background-color: #f4f4f4;
}

.toolbar-ios-danger .bar-button-solid-ios-light {
  color: #000;
  background-color: #f4f4f4;
}

.toolbar-ios-danger .bar-button-solid-ios-light.activated {
  color: #000;
  background-color: #e0e0e0;
}

.toolbar-ios-danger .bar-button-dark-ios,
.toolbar-ios-danger .bar-button-default.bar-button-ios-dark,
.toolbar-ios-danger .bar-button-clear-ios-dark {
  color: #222;
  background-color: transparent;
}

.toolbar-ios-danger .bar-button-dark-ios:hover:not(.disable-hover),
.toolbar-ios-danger .bar-button-default.bar-button-ios-dark:hover:not(.disable-hover),
.toolbar-ios-danger .bar-button-clear-ios-dark:hover:not(.disable-hover) {
  color: #222;
}

.toolbar-ios-danger .bar-button-dark-ios.activated,
.toolbar-ios-danger .bar-button-default.bar-button-ios-dark.activated,
.toolbar-ios-danger .bar-button-clear-ios-dark.activated {
  opacity: .4;
}

.toolbar-ios-danger .bar-button-outline-ios-dark {
  border-color: #222;
  color: #222;
  background-color: transparent;
}

.toolbar-ios-danger .bar-button-outline-ios-dark.activated {
  color: #fff;
  background-color: #222;
}

.toolbar-ios-danger .bar-button-solid-ios-dark {
  color: #fff;
  background-color: #222;
}

.toolbar-ios-danger .bar-button-solid-ios-dark.activated {
  color: #fff;
  background-color: #343434;
}

.bar-button-danger-ios,
.bar-button-default.bar-button-ios-danger,
.bar-button-clear-ios-danger {
  color: #f53d3d;
  background-color: transparent;
}

.bar-button-danger-ios:hover:not(.disable-hover),
.bar-button-default.bar-button-ios-danger:hover:not(.disable-hover),
.bar-button-clear-ios-danger:hover:not(.disable-hover) {
  color: #f53d3d;
}

.bar-button-danger-ios.activated,
.bar-button-default.bar-button-ios-danger.activated,
.bar-button-clear-ios-danger.activated {
  opacity: .4;
}

.bar-button-outline-ios-danger {
  border-color: #f53d3d;
  color: #f53d3d;
  background-color: transparent;
}

.bar-button-outline-ios-danger.activated {
  color: #fff;
  background-color: #f53d3d;
}

.bar-button-solid-ios-danger {
  color: #fff;
  background-color: #f53d3d;
}

.bar-button-solid-ios-danger.activated {
  color: #fff;
  background-color: #e13838;
}

.toolbar-ios-light .toolbar-background-ios {
  background: #f4f4f4;
}

.toolbar-ios-light .toolbar-title-ios,
.toolbar-ios-light .bar-button-clear-ios,
.toolbar-ios-light .bar-button-default-ios {
  color: #000;
}

.toolbar-ios-light .bar-button-primary-ios,
.toolbar-ios-light .bar-button-default.bar-button-ios-primary,
.toolbar-ios-light .bar-button-clear-ios-primary {
  color: #327eff;
  background-color: transparent;
}

.toolbar-ios-light .bar-button-primary-ios:hover:not(.disable-hover),
.toolbar-ios-light .bar-button-default.bar-button-ios-primary:hover:not(.disable-hover),
.toolbar-ios-light .bar-button-clear-ios-primary:hover:not(.disable-hover) {
  color: #327eff;
}

.toolbar-ios-light .bar-button-primary-ios.activated,
.toolbar-ios-light .bar-button-default.bar-button-ios-primary.activated,
.toolbar-ios-light .bar-button-clear-ios-primary.activated {
  opacity: .4;
}

.toolbar-ios-light .bar-button-outline-ios-primary {
  border-color: #327eff;
  color: #327eff;
  background-color: transparent;
}

.toolbar-ios-light .bar-button-outline-ios-primary.activated {
  color: #fff;
  background-color: #327eff;
}

.toolbar-ios-light .bar-button-solid-ios-primary {
  color: #fff;
  background-color: #327eff;
}

.toolbar-ios-light .bar-button-solid-ios-primary.activated {
  color: #fff;
  background-color: #2e74eb;
}

.toolbar-ios-light .bar-button-secondary-ios,
.toolbar-ios-light .bar-button-default.bar-button-ios-secondary,
.toolbar-ios-light .bar-button-clear-ios-secondary {
  color: #32db64;
  background-color: transparent;
}

.toolbar-ios-light .bar-button-secondary-ios:hover:not(.disable-hover),
.toolbar-ios-light .bar-button-default.bar-button-ios-secondary:hover:not(.disable-hover),
.toolbar-ios-light .bar-button-clear-ios-secondary:hover:not(.disable-hover) {
  color: #32db64;
}

.toolbar-ios-light .bar-button-secondary-ios.activated,
.toolbar-ios-light .bar-button-default.bar-button-ios-secondary.activated,
.toolbar-ios-light .bar-button-clear-ios-secondary.activated {
  opacity: .4;
}

.toolbar-ios-light .bar-button-outline-ios-secondary {
  border-color: #32db64;
  color: #32db64;
  background-color: transparent;
}

.toolbar-ios-light .bar-button-outline-ios-secondary.activated {
  color: #fff;
  background-color: #32db64;
}

.toolbar-ios-light .bar-button-solid-ios-secondary {
  color: #fff;
  background-color: #32db64;
}

.toolbar-ios-light .bar-button-solid-ios-secondary.activated {
  color: #fff;
  background-color: #2ec95c;
}

.toolbar-ios-light .bar-button-danger-ios,
.toolbar-ios-light .bar-button-default.bar-button-ios-danger,
.toolbar-ios-light .bar-button-clear-ios-danger {
  color: #f53d3d;
  background-color: transparent;
}

.toolbar-ios-light .bar-button-danger-ios:hover:not(.disable-hover),
.toolbar-ios-light .bar-button-default.bar-button-ios-danger:hover:not(.disable-hover),
.toolbar-ios-light .bar-button-clear-ios-danger:hover:not(.disable-hover) {
  color: #f53d3d;
}

.toolbar-ios-light .bar-button-danger-ios.activated,
.toolbar-ios-light .bar-button-default.bar-button-ios-danger.activated,
.toolbar-ios-light .bar-button-clear-ios-danger.activated {
  opacity: .4;
}

.toolbar-ios-light .bar-button-outline-ios-danger {
  border-color: #f53d3d;
  color: #f53d3d;
  background-color: transparent;
}

.toolbar-ios-light .bar-button-outline-ios-danger.activated {
  color: #fff;
  background-color: #f53d3d;
}

.toolbar-ios-light .bar-button-solid-ios-danger {
  color: #fff;
  background-color: #f53d3d;
}

.toolbar-ios-light .bar-button-solid-ios-danger.activated {
  color: #fff;
  background-color: #e13838;
}

.toolbar-ios-light .bar-button-light-ios,
.toolbar-ios-light .bar-button-default.bar-button-ios-light,
.toolbar-ios-light .bar-button-clear-ios-light {
  color: #f4f4f4;
  background-color: transparent;
}

.toolbar-ios-light .bar-button-light-ios:hover:not(.disable-hover),
.toolbar-ios-light .bar-button-default.bar-button-ios-light:hover:not(.disable-hover),
.toolbar-ios-light .bar-button-clear-ios-light:hover:not(.disable-hover) {
  color: #f4f4f4;
}

.toolbar-ios-light .bar-button-light-ios.activated,
.toolbar-ios-light .bar-button-default.bar-button-ios-light.activated,
.toolbar-ios-light .bar-button-clear-ios-light.activated {
  opacity: .4;
}

.toolbar-ios-light .bar-button-outline-ios-light {
  border-color: #f4f4f4;
  color: #f4f4f4;
  background-color: transparent;
}

.toolbar-ios-light .bar-button-outline-ios-light.activated {
  color: #000;
  background-color: #f4f4f4;
}

.toolbar-ios-light .bar-button-solid-ios-light {
  color: #000;
  background-color: #f4f4f4;
}

.toolbar-ios-light .bar-button-solid-ios-light.activated {
  color: #000;
  background-color: #e0e0e0;
}

.toolbar-ios-light .bar-button-dark-ios,
.toolbar-ios-light .bar-button-default.bar-button-ios-dark,
.toolbar-ios-light .bar-button-clear-ios-dark {
  color: #222;
  background-color: transparent;
}

.toolbar-ios-light .bar-button-dark-ios:hover:not(.disable-hover),
.toolbar-ios-light .bar-button-default.bar-button-ios-dark:hover:not(.disable-hover),
.toolbar-ios-light .bar-button-clear-ios-dark:hover:not(.disable-hover) {
  color: #222;
}

.toolbar-ios-light .bar-button-dark-ios.activated,
.toolbar-ios-light .bar-button-default.bar-button-ios-dark.activated,
.toolbar-ios-light .bar-button-clear-ios-dark.activated {
  opacity: .4;
}

.toolbar-ios-light .bar-button-outline-ios-dark {
  border-color: #222;
  color: #222;
  background-color: transparent;
}

.toolbar-ios-light .bar-button-outline-ios-dark.activated {
  color: #fff;
  background-color: #222;
}

.toolbar-ios-light .bar-button-solid-ios-dark {
  color: #fff;
  background-color: #222;
}

.toolbar-ios-light .bar-button-solid-ios-dark.activated {
  color: #fff;
  background-color: #343434;
}

.bar-button-light-ios,
.bar-button-default.bar-button-ios-light,
.bar-button-clear-ios-light {
  color: #f4f4f4;
  background-color: transparent;
}

.bar-button-light-ios:hover:not(.disable-hover),
.bar-button-default.bar-button-ios-light:hover:not(.disable-hover),
.bar-button-clear-ios-light:hover:not(.disable-hover) {
  color: #f4f4f4;
}

.bar-button-light-ios.activated,
.bar-button-default.bar-button-ios-light.activated,
.bar-button-clear-ios-light.activated {
  opacity: .4;
}

.bar-button-outline-ios-light {
  border-color: #f4f4f4;
  color: #f4f4f4;
  background-color: transparent;
}

.bar-button-outline-ios-light.activated {
  color: #000;
  background-color: #f4f4f4;
}

.bar-button-solid-ios-light {
  color: #000;
  background-color: #f4f4f4;
}

.bar-button-solid-ios-light.activated {
  color: #000;
  background-color: #e0e0e0;
}

.toolbar-ios-dark .toolbar-background-ios {
  background: #222;
}

.toolbar-ios-dark .toolbar-title-ios,
.toolbar-ios-dark .bar-button-clear-ios,
.toolbar-ios-dark .bar-button-default-ios {
  color: #fff;
}

.toolbar-ios-dark .bar-button-primary-ios,
.toolbar-ios-dark .bar-button-default.bar-button-ios-primary,
.toolbar-ios-dark .bar-button-clear-ios-primary {
  color: #327eff;
  background-color: transparent;
}

.toolbar-ios-dark .bar-button-primary-ios:hover:not(.disable-hover),
.toolbar-ios-dark .bar-button-default.bar-button-ios-primary:hover:not(.disable-hover),
.toolbar-ios-dark .bar-button-clear-ios-primary:hover:not(.disable-hover) {
  color: #327eff;
}

.toolbar-ios-dark .bar-button-primary-ios.activated,
.toolbar-ios-dark .bar-button-default.bar-button-ios-primary.activated,
.toolbar-ios-dark .bar-button-clear-ios-primary.activated {
  opacity: .4;
}

.toolbar-ios-dark .bar-button-outline-ios-primary {
  border-color: #327eff;
  color: #327eff;
  background-color: transparent;
}

.toolbar-ios-dark .bar-button-outline-ios-primary.activated {
  color: #fff;
  background-color: #327eff;
}

.toolbar-ios-dark .bar-button-solid-ios-primary {
  color: #fff;
  background-color: #327eff;
}

.toolbar-ios-dark .bar-button-solid-ios-primary.activated {
  color: #fff;
  background-color: #2e74eb;
}

.toolbar-ios-dark .bar-button-secondary-ios,
.toolbar-ios-dark .bar-button-default.bar-button-ios-secondary,
.toolbar-ios-dark .bar-button-clear-ios-secondary {
  color: #32db64;
  background-color: transparent;
}

.toolbar-ios-dark .bar-button-secondary-ios:hover:not(.disable-hover),
.toolbar-ios-dark .bar-button-default.bar-button-ios-secondary:hover:not(.disable-hover),
.toolbar-ios-dark .bar-button-clear-ios-secondary:hover:not(.disable-hover) {
  color: #32db64;
}

.toolbar-ios-dark .bar-button-secondary-ios.activated,
.toolbar-ios-dark .bar-button-default.bar-button-ios-secondary.activated,
.toolbar-ios-dark .bar-button-clear-ios-secondary.activated {
  opacity: .4;
}

.toolbar-ios-dark .bar-button-outline-ios-secondary {
  border-color: #32db64;
  color: #32db64;
  background-color: transparent;
}

.toolbar-ios-dark .bar-button-outline-ios-secondary.activated {
  color: #fff;
  background-color: #32db64;
}

.toolbar-ios-dark .bar-button-solid-ios-secondary {
  color: #fff;
  background-color: #32db64;
}

.toolbar-ios-dark .bar-button-solid-ios-secondary.activated {
  color: #fff;
  background-color: #2ec95c;
}

.toolbar-ios-dark .bar-button-danger-ios,
.toolbar-ios-dark .bar-button-default.bar-button-ios-danger,
.toolbar-ios-dark .bar-button-clear-ios-danger {
  color: #f53d3d;
  background-color: transparent;
}

.toolbar-ios-dark .bar-button-danger-ios:hover:not(.disable-hover),
.toolbar-ios-dark .bar-button-default.bar-button-ios-danger:hover:not(.disable-hover),
.toolbar-ios-dark .bar-button-clear-ios-danger:hover:not(.disable-hover) {
  color: #f53d3d;
}

.toolbar-ios-dark .bar-button-danger-ios.activated,
.toolbar-ios-dark .bar-button-default.bar-button-ios-danger.activated,
.toolbar-ios-dark .bar-button-clear-ios-danger.activated {
  opacity: .4;
}

.toolbar-ios-dark .bar-button-outline-ios-danger {
  border-color: #f53d3d;
  color: #f53d3d;
  background-color: transparent;
}

.toolbar-ios-dark .bar-button-outline-ios-danger.activated {
  color: #fff;
  background-color: #f53d3d;
}

.toolbar-ios-dark .bar-button-solid-ios-danger {
  color: #fff;
  background-color: #f53d3d;
}

.toolbar-ios-dark .bar-button-solid-ios-danger.activated {
  color: #fff;
  background-color: #e13838;
}

.toolbar-ios-dark .bar-button-light-ios,
.toolbar-ios-dark .bar-button-default.bar-button-ios-light,
.toolbar-ios-dark .bar-button-clear-ios-light {
  color: #f4f4f4;
  background-color: transparent;
}

.toolbar-ios-dark .bar-button-light-ios:hover:not(.disable-hover),
.toolbar-ios-dark .bar-button-default.bar-button-ios-light:hover:not(.disable-hover),
.toolbar-ios-dark .bar-button-clear-ios-light:hover:not(.disable-hover) {
  color: #f4f4f4;
}

.toolbar-ios-dark .bar-button-light-ios.activated,
.toolbar-ios-dark .bar-button-default.bar-button-ios-light.activated,
.toolbar-ios-dark .bar-button-clear-ios-light.activated {
  opacity: .4;
}

.toolbar-ios-dark .bar-button-outline-ios-light {
  border-color: #f4f4f4;
  color: #f4f4f4;
  background-color: transparent;
}

.toolbar-ios-dark .bar-button-outline-ios-light.activated {
  color: #000;
  background-color: #f4f4f4;
}

.toolbar-ios-dark .bar-button-solid-ios-light {
  color: #000;
  background-color: #f4f4f4;
}

.toolbar-ios-dark .bar-button-solid-ios-light.activated {
  color: #000;
  background-color: #e0e0e0;
}

.toolbar-ios-dark .bar-button-dark-ios,
.toolbar-ios-dark .bar-button-default.bar-button-ios-dark,
.toolbar-ios-dark .bar-button-clear-ios-dark {
  color: #222;
  background-color: transparent;
}

.toolbar-ios-dark .bar-button-dark-ios:hover:not(.disable-hover),
.toolbar-ios-dark .bar-button-default.bar-button-ios-dark:hover:not(.disable-hover),
.toolbar-ios-dark .bar-button-clear-ios-dark:hover:not(.disable-hover) {
  color: #222;
}

.toolbar-ios-dark .bar-button-dark-ios.activated,
.toolbar-ios-dark .bar-button-default.bar-button-ios-dark.activated,
.toolbar-ios-dark .bar-button-clear-ios-dark.activated {
  opacity: .4;
}

.toolbar-ios-dark .bar-button-outline-ios-dark {
  border-color: #222;
  color: #222;
  background-color: transparent;
}

.toolbar-ios-dark .bar-button-outline-ios-dark.activated {
  color: #fff;
  background-color: #222;
}

.toolbar-ios-dark .bar-button-solid-ios-dark {
  color: #fff;
  background-color: #222;
}

.toolbar-ios-dark .bar-button-solid-ios-dark.activated {
  color: #fff;
  background-color: #343434;
}

.bar-button-dark-ios,
.bar-button-default.bar-button-ios-dark,
.bar-button-clear-ios-dark {
  color: #222;
  background-color: transparent;
}

.bar-button-dark-ios:hover:not(.disable-hover),
.bar-button-default.bar-button-ios-dark:hover:not(.disable-hover),
.bar-button-clear-ios-dark:hover:not(.disable-hover) {
  color: #222;
}

.bar-button-dark-ios.activated,
.bar-button-default.bar-button-ios-dark.activated,
.bar-button-clear-ios-dark.activated {
  opacity: .4;
}

.bar-button-outline-ios-dark {
  border-color: #222;
  color: #222;
  background-color: transparent;
}

.bar-button-outline-ios-dark.activated {
  color: #fff;
  background-color: #222;
}

.bar-button-solid-ios-dark {
  color: #fff;
  background-color: #222;
}

.bar-button-solid-ios-dark.activated {
  color: #fff;
  background-color: #343434;
}

.bar-button-strong-ios {
  font-weight: 600;
}

.toolbar-md {
  padding: 4px;
  min-height: 56px;
}

.toolbar-background-md {
  border-color: #b2b2b2;
  background: #f8f8f8;
}

.header-md::after,
.tabs-md[tabsPlacement="top"] > .tabbar::after,
.footer-md::before,
.tabs-md[tabsPlacement="bottom"] > .tabbar::before {
  left: 0;
  bottom: -5px;
  background-position: left 0 top -2px;
  position: absolute;
  width: 100%;
  height: 5px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAHBAMAAADzDtBxAAAAD1BMVEUAAAAAAAAAAAAAAAAAAABPDueNAAAABXRSTlMUCS0gBIh/TXEAAAAaSURBVAjXYxCEAgY4UIICBmMogMsgFLtAAQCNSwXZKOdPxgAAAABJRU5ErkJggg==);
  background-repeat: repeat-x;
  content: "";
}

.footer-md::before,
.tabs-md[tabsPlacement="bottom"] > .tabbar::before {
  top: -2px;
  bottom: auto;
  background-position: left 0 top 0;
  height: 2px;
}

.header-md[no-border]::after,
.footer-md[no-border]::before,
.tabs-md[tabsPlacement="top"][no-border] > .tabbar::after,
.tabs-md[tabsPlacement="bottom"][no-border] > .tabbar::before {
  display: none;
}

.toolbar-content-md {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
  min-width: 0;
  max-width: 100%;
}

.toolbar-title-md {
  padding: 0 12px;
  font-size: 2rem;
  font-weight: 500;
  color: #424242;
}

.bar-buttons-md {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
  -ms-flex-order: 4;
  order: 4;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.bar-buttons-md[left] {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
}

.bar-button-md:first-child {
  margin-left: 0;
}

.bar-buttons-md[end] {
  text-align: right;
  text-align: end;
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
  -ms-flex-order: 5;
  order: 5;
}

.bar-buttons-md[right] {
  text-align: right;
  -webkit-box-ordinal-group: 7;
  -webkit-order: 6;
  -ms-flex-order: 6;
  order: 6;
}

.bar-button-md {
  margin: 0 0.2rem;
  padding: 0 5px;
  border-radius: 2px;
  height: 32px;
  border: 0;
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
}

.bar-button-solid-md,
.bar-button-outline-md {
  overflow: hidden;
}

.bar-button-outline-md {
  border-width: 1px;
  border-style: solid;
  border-color: #424242;
  color: #424242;
  background-color: transparent;
}

.bar-button-outline-md:hover:not(.disable-hover) {
  opacity: .4;
}

.bar-button-outline-md.activated {
  background-color: transparent;
}

.bar-button-outline-md .button-effect {
  background-color: #424242;
}

.bar-button-solid-md {
  color: #fff;
  background-color: #424242;
}

.bar-button-solid-md:hover:not(.disable-hover) {
  color: #fff;
}

.bar-button-solid-md.activated {
  color: #fff;
  background-color: #515151;
}

.bar-button-md.bar-button-icon-start ion-icon {
  padding-right: 0.3em;
  font-size: 1.4em;
  line-height: .67;
  pointer-events: none;
}

.bar-button-md.bar-button-icon-end ion-icon {
  padding-left: 0.4em;
  font-size: 1.4em;
  line-height: .67;
  pointer-events: none;
}

.bar-button-md[icon-only] {
  padding: 0;
}

.bar-button-md[icon-only] ion-icon {
  padding: 0 0.1em;
  min-width: 28px;
  font-size: 1.8em;
  line-height: .67;
  pointer-events: none;
}

.back-button-md {
  margin: 0 6px;
  min-width: 44px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.back-button-icon-md {
  margin: 0;
  padding: 0 6px;
  text-align: left;
  text-align: start;
  font-size: 2.4rem;
  font-weight: normal;
}

.bar-button-menutoggle-md {
  margin: 0 6px;
  padding: 0 2px;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  min-width: 44px;
}

.bar-button-menutoggle-md ion-icon {
  padding: 0 6px;
  font-size: 2.4rem;
}

.bar-button-menutoggle-md[end],
.bar-button-menutoggle-md[right] {
  margin: 0 2px;
  -webkit-box-ordinal-group: 8;
  -webkit-order: 7;
  -ms-flex-order: 7;
  order: 7;
  min-width: 28px;
}

.bar-button-default-md,
.bar-button-clear-md-default,
.bar-button-md-default {
  color: #424242;
  background-color: transparent;
}

.bar-button-default-md:hover:not(.disable-hover),
.bar-button-clear-md-default:hover:not(.disable-hover),
.bar-button-md-default:hover:not(.disable-hover) {
  color: #424242;
}

.bar-button-clear-md,
.bar-button-clear-md-clear,
.bar-button-md-clear {
  color: #424242;
  background-color: transparent;
}

.bar-button-clear-md:hover:not(.disable-hover),
.bar-button-clear-md-clear:hover:not(.disable-hover),
.bar-button-md-clear:hover:not(.disable-hover) {
  color: #424242;
}

.toolbar-md-primary .toolbar-background-md {
  background: #327eff;
}

.toolbar-md-primary .bar-button-clear-md,
.toolbar-md-primary .bar-button-default-md,
.toolbar-md-primary .bar-button-outline-md,
.toolbar-md-primary .toolbar-title-md {
  color: #fff;
}

.toolbar-md-primary .bar-button-clear-md .button-effect,
.toolbar-md-primary .bar-button-default-md .button-effect,
.toolbar-md-primary .bar-button-outline-md .button-effect {
  background-color: #fff;
}

.toolbar-md-primary .bar-button-outline-md {
  border-color: #fff;
}

.toolbar-md-primary .bar-button-primary-md,
.toolbar-md-primary .bar-button-clear-md-primary,
.toolbar-md-primary .bar-button-md-primary {
  color: #327eff;
  background-color: transparent;
}

.toolbar-md-primary .bar-button-primary-md:hover:not(.disable-hover),
.toolbar-md-primary .bar-button-clear-md-primary:hover:not(.disable-hover),
.toolbar-md-primary .bar-button-md-primary:hover:not(.disable-hover) {
  color: #327eff;
}

.toolbar-md-primary .bar-button-outline-md-primary {
  border-color: #2e74eb;
  color: #2e74eb;
  background-color: transparent;
}

.toolbar-md-primary .bar-button-outline-md-primary.activated {
  background-color: transparent;
}

.toolbar-md-primary .bar-button-outline-md-primary .button-effect {
  background-color: #2e74eb;
}

.toolbar-md-primary .bar-button-solid-md-primary {
  color: #fff;
  background-color: #327eff;
}

.toolbar-md-primary .bar-button-solid-md-primary.activated {
  color: #fff;
  background-color: #2e74eb;
}

.toolbar-md-primary .bar-button-secondary-md,
.toolbar-md-primary .bar-button-clear-md-secondary,
.toolbar-md-primary .bar-button-md-secondary {
  color: #32db64;
  background-color: transparent;
}

.toolbar-md-primary .bar-button-secondary-md:hover:not(.disable-hover),
.toolbar-md-primary .bar-button-clear-md-secondary:hover:not(.disable-hover),
.toolbar-md-primary .bar-button-md-secondary:hover:not(.disable-hover) {
  color: #32db64;
}

.toolbar-md-primary .bar-button-outline-md-secondary {
  border-color: #2ec95c;
  color: #2ec95c;
  background-color: transparent;
}

.toolbar-md-primary .bar-button-outline-md-secondary.activated {
  background-color: transparent;
}

.toolbar-md-primary .bar-button-outline-md-secondary .button-effect {
  background-color: #2ec95c;
}

.toolbar-md-primary .bar-button-solid-md-secondary {
  color: #fff;
  background-color: #32db64;
}

.toolbar-md-primary .bar-button-solid-md-secondary.activated {
  color: #fff;
  background-color: #2ec95c;
}

.toolbar-md-primary .bar-button-danger-md,
.toolbar-md-primary .bar-button-clear-md-danger,
.toolbar-md-primary .bar-button-md-danger {
  color: #f53d3d;
  background-color: transparent;
}

.toolbar-md-primary .bar-button-danger-md:hover:not(.disable-hover),
.toolbar-md-primary .bar-button-clear-md-danger:hover:not(.disable-hover),
.toolbar-md-primary .bar-button-md-danger:hover:not(.disable-hover) {
  color: #f53d3d;
}

.toolbar-md-primary .bar-button-outline-md-danger {
  border-color: #e13838;
  color: #e13838;
  background-color: transparent;
}

.toolbar-md-primary .bar-button-outline-md-danger.activated {
  background-color: transparent;
}

.toolbar-md-primary .bar-button-outline-md-danger .button-effect {
  background-color: #e13838;
}

.toolbar-md-primary .bar-button-solid-md-danger {
  color: #fff;
  background-color: #f53d3d;
}

.toolbar-md-primary .bar-button-solid-md-danger.activated {
  color: #fff;
  background-color: #e13838;
}

.toolbar-md-primary .bar-button-light-md,
.toolbar-md-primary .bar-button-clear-md-light,
.toolbar-md-primary .bar-button-md-light {
  color: #f4f4f4;
  background-color: transparent;
}

.toolbar-md-primary .bar-button-light-md:hover:not(.disable-hover),
.toolbar-md-primary .bar-button-clear-md-light:hover:not(.disable-hover),
.toolbar-md-primary .bar-button-md-light:hover:not(.disable-hover) {
  color: #f4f4f4;
}

.toolbar-md-primary .bar-button-outline-md-light {
  border-color: #e0e0e0;
  color: #e0e0e0;
  background-color: transparent;
}

.toolbar-md-primary .bar-button-outline-md-light.activated {
  background-color: transparent;
}

.toolbar-md-primary .bar-button-outline-md-light .button-effect {
  background-color: #e0e0e0;
}

.toolbar-md-primary .bar-button-solid-md-light {
  color: #424242;
  background-color: #f4f4f4;
}

.toolbar-md-primary .bar-button-solid-md-light.activated {
  color: #424242;
  background-color: #e0e0e0;
}

.toolbar-md-primary .bar-button-dark-md,
.toolbar-md-primary .bar-button-clear-md-dark,
.toolbar-md-primary .bar-button-md-dark {
  color: #222;
  background-color: transparent;
}

.toolbar-md-primary .bar-button-dark-md:hover:not(.disable-hover),
.toolbar-md-primary .bar-button-clear-md-dark:hover:not(.disable-hover),
.toolbar-md-primary .bar-button-md-dark:hover:not(.disable-hover) {
  color: #222;
}

.toolbar-md-primary .bar-button-outline-md-dark {
  border-color: #343434;
  color: #343434;
  background-color: transparent;
}

.toolbar-md-primary .bar-button-outline-md-dark.activated {
  background-color: transparent;
}

.toolbar-md-primary .bar-button-outline-md-dark .button-effect {
  background-color: #343434;
}

.toolbar-md-primary .bar-button-solid-md-dark {
  color: #fff;
  background-color: #222;
}

.toolbar-md-primary .bar-button-solid-md-dark.activated {
  color: #fff;
  background-color: #343434;
}

.bar-button-primary-md,
.bar-button-clear-md-primary,
.bar-button-md-primary {
  color: #327eff;
  background-color: transparent;
}

.bar-button-primary-md:hover:not(.disable-hover),
.bar-button-clear-md-primary:hover:not(.disable-hover),
.bar-button-md-primary:hover:not(.disable-hover) {
  color: #327eff;
}

.bar-button-outline-md-primary {
  border-color: #2e74eb;
  color: #2e74eb;
  background-color: transparent;
}

.bar-button-outline-md-primary.activated {
  background-color: transparent;
}

.bar-button-outline-md-primary .button-effect {
  background-color: #2e74eb;
}

.bar-button-solid-md-primary {
  color: #fff;
  background-color: #327eff;
}

.bar-button-solid-md-primary.activated {
  color: #fff;
  background-color: #2e74eb;
}

.toolbar-md-secondary .toolbar-background-md {
  background: #32db64;
}

.toolbar-md-secondary .bar-button-clear-md,
.toolbar-md-secondary .bar-button-default-md,
.toolbar-md-secondary .bar-button-outline-md,
.toolbar-md-secondary .toolbar-title-md {
  color: #fff;
}

.toolbar-md-secondary .bar-button-clear-md .button-effect,
.toolbar-md-secondary .bar-button-default-md .button-effect,
.toolbar-md-secondary .bar-button-outline-md .button-effect {
  background-color: #fff;
}

.toolbar-md-secondary .bar-button-outline-md {
  border-color: #fff;
}

.toolbar-md-secondary .bar-button-primary-md,
.toolbar-md-secondary .bar-button-clear-md-primary,
.toolbar-md-secondary .bar-button-md-primary {
  color: #327eff;
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-primary-md:hover:not(.disable-hover),
.toolbar-md-secondary .bar-button-clear-md-primary:hover:not(.disable-hover),
.toolbar-md-secondary .bar-button-md-primary:hover:not(.disable-hover) {
  color: #327eff;
}

.toolbar-md-secondary .bar-button-outline-md-primary {
  border-color: #2e74eb;
  color: #2e74eb;
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-outline-md-primary.activated {
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-outline-md-primary .button-effect {
  background-color: #2e74eb;
}

.toolbar-md-secondary .bar-button-solid-md-primary {
  color: #fff;
  background-color: #327eff;
}

.toolbar-md-secondary .bar-button-solid-md-primary.activated {
  color: #fff;
  background-color: #2e74eb;
}

.toolbar-md-secondary .bar-button-secondary-md,
.toolbar-md-secondary .bar-button-clear-md-secondary,
.toolbar-md-secondary .bar-button-md-secondary {
  color: #32db64;
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-secondary-md:hover:not(.disable-hover),
.toolbar-md-secondary .bar-button-clear-md-secondary:hover:not(.disable-hover),
.toolbar-md-secondary .bar-button-md-secondary:hover:not(.disable-hover) {
  color: #32db64;
}

.toolbar-md-secondary .bar-button-outline-md-secondary {
  border-color: #2ec95c;
  color: #2ec95c;
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-outline-md-secondary.activated {
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-outline-md-secondary .button-effect {
  background-color: #2ec95c;
}

.toolbar-md-secondary .bar-button-solid-md-secondary {
  color: #fff;
  background-color: #32db64;
}

.toolbar-md-secondary .bar-button-solid-md-secondary.activated {
  color: #fff;
  background-color: #2ec95c;
}

.toolbar-md-secondary .bar-button-danger-md,
.toolbar-md-secondary .bar-button-clear-md-danger,
.toolbar-md-secondary .bar-button-md-danger {
  color: #f53d3d;
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-danger-md:hover:not(.disable-hover),
.toolbar-md-secondary .bar-button-clear-md-danger:hover:not(.disable-hover),
.toolbar-md-secondary .bar-button-md-danger:hover:not(.disable-hover) {
  color: #f53d3d;
}

.toolbar-md-secondary .bar-button-outline-md-danger {
  border-color: #e13838;
  color: #e13838;
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-outline-md-danger.activated {
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-outline-md-danger .button-effect {
  background-color: #e13838;
}

.toolbar-md-secondary .bar-button-solid-md-danger {
  color: #fff;
  background-color: #f53d3d;
}

.toolbar-md-secondary .bar-button-solid-md-danger.activated {
  color: #fff;
  background-color: #e13838;
}

.toolbar-md-secondary .bar-button-light-md,
.toolbar-md-secondary .bar-button-clear-md-light,
.toolbar-md-secondary .bar-button-md-light {
  color: #f4f4f4;
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-light-md:hover:not(.disable-hover),
.toolbar-md-secondary .bar-button-clear-md-light:hover:not(.disable-hover),
.toolbar-md-secondary .bar-button-md-light:hover:not(.disable-hover) {
  color: #f4f4f4;
}

.toolbar-md-secondary .bar-button-outline-md-light {
  border-color: #e0e0e0;
  color: #e0e0e0;
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-outline-md-light.activated {
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-outline-md-light .button-effect {
  background-color: #e0e0e0;
}

.toolbar-md-secondary .bar-button-solid-md-light {
  color: #424242;
  background-color: #f4f4f4;
}

.toolbar-md-secondary .bar-button-solid-md-light.activated {
  color: #424242;
  background-color: #e0e0e0;
}

.toolbar-md-secondary .bar-button-dark-md,
.toolbar-md-secondary .bar-button-clear-md-dark,
.toolbar-md-secondary .bar-button-md-dark {
  color: #222;
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-dark-md:hover:not(.disable-hover),
.toolbar-md-secondary .bar-button-clear-md-dark:hover:not(.disable-hover),
.toolbar-md-secondary .bar-button-md-dark:hover:not(.disable-hover) {
  color: #222;
}

.toolbar-md-secondary .bar-button-outline-md-dark {
  border-color: #343434;
  color: #343434;
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-outline-md-dark.activated {
  background-color: transparent;
}

.toolbar-md-secondary .bar-button-outline-md-dark .button-effect {
  background-color: #343434;
}

.toolbar-md-secondary .bar-button-solid-md-dark {
  color: #fff;
  background-color: #222;
}

.toolbar-md-secondary .bar-button-solid-md-dark.activated {
  color: #fff;
  background-color: #343434;
}

.bar-button-secondary-md,
.bar-button-clear-md-secondary,
.bar-button-md-secondary {
  color: #32db64;
  background-color: transparent;
}

.bar-button-secondary-md:hover:not(.disable-hover),
.bar-button-clear-md-secondary:hover:not(.disable-hover),
.bar-button-md-secondary:hover:not(.disable-hover) {
  color: #32db64;
}

.bar-button-outline-md-secondary {
  border-color: #2ec95c;
  color: #2ec95c;
  background-color: transparent;
}

.bar-button-outline-md-secondary.activated {
  background-color: transparent;
}

.bar-button-outline-md-secondary .button-effect {
  background-color: #2ec95c;
}

.bar-button-solid-md-secondary {
  color: #fff;
  background-color: #32db64;
}

.bar-button-solid-md-secondary.activated {
  color: #fff;
  background-color: #2ec95c;
}

.toolbar-md-danger .toolbar-background-md {
  background: #f53d3d;
}

.toolbar-md-danger .bar-button-clear-md,
.toolbar-md-danger .bar-button-default-md,
.toolbar-md-danger .bar-button-outline-md,
.toolbar-md-danger .toolbar-title-md {
  color: #fff;
}

.toolbar-md-danger .bar-button-clear-md .button-effect,
.toolbar-md-danger .bar-button-default-md .button-effect,
.toolbar-md-danger .bar-button-outline-md .button-effect {
  background-color: #fff;
}

.toolbar-md-danger .bar-button-outline-md {
  border-color: #fff;
}

.toolbar-md-danger .bar-button-primary-md,
.toolbar-md-danger .bar-button-clear-md-primary,
.toolbar-md-danger .bar-button-md-primary {
  color: #327eff;
  background-color: transparent;
}

.toolbar-md-danger .bar-button-primary-md:hover:not(.disable-hover),
.toolbar-md-danger .bar-button-clear-md-primary:hover:not(.disable-hover),
.toolbar-md-danger .bar-button-md-primary:hover:not(.disable-hover) {
  color: #327eff;
}

.toolbar-md-danger .bar-button-outline-md-primary {
  border-color: #2e74eb;
  color: #2e74eb;
  background-color: transparent;
}

.toolbar-md-danger .bar-button-outline-md-primary.activated {
  background-color: transparent;
}

.toolbar-md-danger .bar-button-outline-md-primary .button-effect {
  background-color: #2e74eb;
}

.toolbar-md-danger .bar-button-solid-md-primary {
  color: #fff;
  background-color: #327eff;
}

.toolbar-md-danger .bar-button-solid-md-primary.activated {
  color: #fff;
  background-color: #2e74eb;
}

.toolbar-md-danger .bar-button-secondary-md,
.toolbar-md-danger .bar-button-clear-md-secondary,
.toolbar-md-danger .bar-button-md-secondary {
  color: #32db64;
  background-color: transparent;
}

.toolbar-md-danger .bar-button-secondary-md:hover:not(.disable-hover),
.toolbar-md-danger .bar-button-clear-md-secondary:hover:not(.disable-hover),
.toolbar-md-danger .bar-button-md-secondary:hover:not(.disable-hover) {
  color: #32db64;
}

.toolbar-md-danger .bar-button-outline-md-secondary {
  border-color: #2ec95c;
  color: #2ec95c;
  background-color: transparent;
}

.toolbar-md-danger .bar-button-outline-md-secondary.activated {
  background-color: transparent;
}

.toolbar-md-danger .bar-button-outline-md-secondary .button-effect {
  background-color: #2ec95c;
}

.toolbar-md-danger .bar-button-solid-md-secondary {
  color: #fff;
  background-color: #32db64;
}

.toolbar-md-danger .bar-button-solid-md-secondary.activated {
  color: #fff;
  background-color: #2ec95c;
}

.toolbar-md-danger .bar-button-danger-md,
.toolbar-md-danger .bar-button-clear-md-danger,
.toolbar-md-danger .bar-button-md-danger {
  color: #f53d3d;
  background-color: transparent;
}

.toolbar-md-danger .bar-button-danger-md:hover:not(.disable-hover),
.toolbar-md-danger .bar-button-clear-md-danger:hover:not(.disable-hover),
.toolbar-md-danger .bar-button-md-danger:hover:not(.disable-hover) {
  color: #f53d3d;
}

.toolbar-md-danger .bar-button-outline-md-danger {
  border-color: #e13838;
  color: #e13838;
  background-color: transparent;
}

.toolbar-md-danger .bar-button-outline-md-danger.activated {
  background-color: transparent;
}

.toolbar-md-danger .bar-button-outline-md-danger .button-effect {
  background-color: #e13838;
}

.toolbar-md-danger .bar-button-solid-md-danger {
  color: #fff;
  background-color: #f53d3d;
}

.toolbar-md-danger .bar-button-solid-md-danger.activated {
  color: #fff;
  background-color: #e13838;
}

.toolbar-md-danger .bar-button-light-md,
.toolbar-md-danger .bar-button-clear-md-light,
.toolbar-md-danger .bar-button-md-light {
  color: #f4f4f4;
  background-color: transparent;
}

.toolbar-md-danger .bar-button-light-md:hover:not(.disable-hover),
.toolbar-md-danger .bar-button-clear-md-light:hover:not(.disable-hover),
.toolbar-md-danger .bar-button-md-light:hover:not(.disable-hover) {
  color: #f4f4f4;
}

.toolbar-md-danger .bar-button-outline-md-light {
  border-color: #e0e0e0;
  color: #e0e0e0;
  background-color: transparent;
}

.toolbar-md-danger .bar-button-outline-md-light.activated {
  background-color: transparent;
}

.toolbar-md-danger .bar-button-outline-md-light .button-effect {
  background-color: #e0e0e0;
}

.toolbar-md-danger .bar-button-solid-md-light {
  color: #424242;
  background-color: #f4f4f4;
}

.toolbar-md-danger .bar-button-solid-md-light.activated {
  color: #424242;
  background-color: #e0e0e0;
}

.toolbar-md-danger .bar-button-dark-md,
.toolbar-md-danger .bar-button-clear-md-dark,
.toolbar-md-danger .bar-button-md-dark {
  color: #222;
  background-color: transparent;
}

.toolbar-md-danger .bar-button-dark-md:hover:not(.disable-hover),
.toolbar-md-danger .bar-button-clear-md-dark:hover:not(.disable-hover),
.toolbar-md-danger .bar-button-md-dark:hover:not(.disable-hover) {
  color: #222;
}

.toolbar-md-danger .bar-button-outline-md-dark {
  border-color: #343434;
  color: #343434;
  background-color: transparent;
}

.toolbar-md-danger .bar-button-outline-md-dark.activated {
  background-color: transparent;
}

.toolbar-md-danger .bar-button-outline-md-dark .button-effect {
  background-color: #343434;
}

.toolbar-md-danger .bar-button-solid-md-dark {
  color: #fff;
  background-color: #222;
}

.toolbar-md-danger .bar-button-solid-md-dark.activated {
  color: #fff;
  background-color: #343434;
}

.bar-button-danger-md,
.bar-button-clear-md-danger,
.bar-button-md-danger {
  color: #f53d3d;
  background-color: transparent;
}

.bar-button-danger-md:hover:not(.disable-hover),
.bar-button-clear-md-danger:hover:not(.disable-hover),
.bar-button-md-danger:hover:not(.disable-hover) {
  color: #f53d3d;
}

.bar-button-outline-md-danger {
  border-color: #e13838;
  color: #e13838;
  background-color: transparent;
}

.bar-button-outline-md-danger.activated {
  background-color: transparent;
}

.bar-button-outline-md-danger .button-effect {
  background-color: #e13838;
}

.bar-button-solid-md-danger {
  color: #fff;
  background-color: #f53d3d;
}

.bar-button-solid-md-danger.activated {
  color: #fff;
  background-color: #e13838;
}

.toolbar-md-light .toolbar-background-md {
  background: #f4f4f4;
}

.toolbar-md-light .bar-button-clear-md,
.toolbar-md-light .bar-button-default-md,
.toolbar-md-light .bar-button-outline-md,
.toolbar-md-light .toolbar-title-md {
  color: #424242;
}

.toolbar-md-light .bar-button-clear-md .button-effect,
.toolbar-md-light .bar-button-default-md .button-effect,
.toolbar-md-light .bar-button-outline-md .button-effect {
  background-color: #424242;
}

.toolbar-md-light .bar-button-outline-md {
  border-color: #424242;
}

.toolbar-md-light .bar-button-primary-md,
.toolbar-md-light .bar-button-clear-md-primary,
.toolbar-md-light .bar-button-md-primary {
  color: #327eff;
  background-color: transparent;
}

.toolbar-md-light .bar-button-primary-md:hover:not(.disable-hover),
.toolbar-md-light .bar-button-clear-md-primary:hover:not(.disable-hover),
.toolbar-md-light .bar-button-md-primary:hover:not(.disable-hover) {
  color: #327eff;
}

.toolbar-md-light .bar-button-outline-md-primary {
  border-color: #2e74eb;
  color: #2e74eb;
  background-color: transparent;
}

.toolbar-md-light .bar-button-outline-md-primary.activated {
  background-color: transparent;
}

.toolbar-md-light .bar-button-outline-md-primary .button-effect {
  background-color: #2e74eb;
}

.toolbar-md-light .bar-button-solid-md-primary {
  color: #fff;
  background-color: #327eff;
}

.toolbar-md-light .bar-button-solid-md-primary.activated {
  color: #fff;
  background-color: #2e74eb;
}

.toolbar-md-light .bar-button-secondary-md,
.toolbar-md-light .bar-button-clear-md-secondary,
.toolbar-md-light .bar-button-md-secondary {
  color: #32db64;
  background-color: transparent;
}

.toolbar-md-light .bar-button-secondary-md:hover:not(.disable-hover),
.toolbar-md-light .bar-button-clear-md-secondary:hover:not(.disable-hover),
.toolbar-md-light .bar-button-md-secondary:hover:not(.disable-hover) {
  color: #32db64;
}

.toolbar-md-light .bar-button-outline-md-secondary {
  border-color: #2ec95c;
  color: #2ec95c;
  background-color: transparent;
}

.toolbar-md-light .bar-button-outline-md-secondary.activated {
  background-color: transparent;
}

.toolbar-md-light .bar-button-outline-md-secondary .button-effect {
  background-color: #2ec95c;
}

.toolbar-md-light .bar-button-solid-md-secondary {
  color: #fff;
  background-color: #32db64;
}

.toolbar-md-light .bar-button-solid-md-secondary.activated {
  color: #fff;
  background-color: #2ec95c;
}

.toolbar-md-light .bar-button-danger-md,
.toolbar-md-light .bar-button-clear-md-danger,
.toolbar-md-light .bar-button-md-danger {
  color: #f53d3d;
  background-color: transparent;
}

.toolbar-md-light .bar-button-danger-md:hover:not(.disable-hover),
.toolbar-md-light .bar-button-clear-md-danger:hover:not(.disable-hover),
.toolbar-md-light .bar-button-md-danger:hover:not(.disable-hover) {
  color: #f53d3d;
}

.toolbar-md-light .bar-button-outline-md-danger {
  border-color: #e13838;
  color: #e13838;
  background-color: transparent;
}

.toolbar-md-light .bar-button-outline-md-danger.activated {
  background-color: transparent;
}

.toolbar-md-light .bar-button-outline-md-danger .button-effect {
  background-color: #e13838;
}

.toolbar-md-light .bar-button-solid-md-danger {
  color: #fff;
  background-color: #f53d3d;
}

.toolbar-md-light .bar-button-solid-md-danger.activated {
  color: #fff;
  background-color: #e13838;
}

.toolbar-md-light .bar-button-light-md,
.toolbar-md-light .bar-button-clear-md-light,
.toolbar-md-light .bar-button-md-light {
  color: #f4f4f4;
  background-color: transparent;
}

.toolbar-md-light .bar-button-light-md:hover:not(.disable-hover),
.toolbar-md-light .bar-button-clear-md-light:hover:not(.disable-hover),
.toolbar-md-light .bar-button-md-light:hover:not(.disable-hover) {
  color: #f4f4f4;
}

.toolbar-md-light .bar-button-outline-md-light {
  border-color: #e0e0e0;
  color: #e0e0e0;
  background-color: transparent;
}

.toolbar-md-light .bar-button-outline-md-light.activated {
  background-color: transparent;
}

.toolbar-md-light .bar-button-outline-md-light .button-effect {
  background-color: #e0e0e0;
}

.toolbar-md-light .bar-button-solid-md-light {
  color: #424242;
  background-color: #f4f4f4;
}

.toolbar-md-light .bar-button-solid-md-light.activated {
  color: #424242;
  background-color: #e0e0e0;
}

.toolbar-md-light .bar-button-dark-md,
.toolbar-md-light .bar-button-clear-md-dark,
.toolbar-md-light .bar-button-md-dark {
  color: #222;
  background-color: transparent;
}

.toolbar-md-light .bar-button-dark-md:hover:not(.disable-hover),
.toolbar-md-light .bar-button-clear-md-dark:hover:not(.disable-hover),
.toolbar-md-light .bar-button-md-dark:hover:not(.disable-hover) {
  color: #222;
}

.toolbar-md-light .bar-button-outline-md-dark {
  border-color: #343434;
  color: #343434;
  background-color: transparent;
}

.toolbar-md-light .bar-button-outline-md-dark.activated {
  background-color: transparent;
}

.toolbar-md-light .bar-button-outline-md-dark .button-effect {
  background-color: #343434;
}

.toolbar-md-light .bar-button-solid-md-dark {
  color: #fff;
  background-color: #222;
}

.toolbar-md-light .bar-button-solid-md-dark.activated {
  color: #fff;
  background-color: #343434;
}

.bar-button-light-md,
.bar-button-clear-md-light,
.bar-button-md-light {
  color: #f4f4f4;
  background-color: transparent;
}

.bar-button-light-md:hover:not(.disable-hover),
.bar-button-clear-md-light:hover:not(.disable-hover),
.bar-button-md-light:hover:not(.disable-hover) {
  color: #f4f4f4;
}

.bar-button-outline-md-light {
  border-color: #e0e0e0;
  color: #e0e0e0;
  background-color: transparent;
}

.bar-button-outline-md-light.activated {
  background-color: transparent;
}

.bar-button-outline-md-light .button-effect {
  background-color: #e0e0e0;
}

.bar-button-solid-md-light {
  color: #424242;
  background-color: #f4f4f4;
}

.bar-button-solid-md-light.activated {
  color: #424242;
  background-color: #e0e0e0;
}

.toolbar-md-dark .toolbar-background-md {
  background: #222;
}

.toolbar-md-dark .bar-button-clear-md,
.toolbar-md-dark .bar-button-default-md,
.toolbar-md-dark .bar-button-outline-md,
.toolbar-md-dark .toolbar-title-md {
  color: #fff;
}

.toolbar-md-dark .bar-button-clear-md .button-effect,
.toolbar-md-dark .bar-button-default-md .button-effect,
.toolbar-md-dark .bar-button-outline-md .button-effect {
  background-color: #fff;
}

.toolbar-md-dark .bar-button-outline-md {
  border-color: #fff;
}

.toolbar-md-dark .bar-button-primary-md,
.toolbar-md-dark .bar-button-clear-md-primary,
.toolbar-md-dark .bar-button-md-primary {
  color: #327eff;
  background-color: transparent;
}

.toolbar-md-dark .bar-button-primary-md:hover:not(.disable-hover),
.toolbar-md-dark .bar-button-clear-md-primary:hover:not(.disable-hover),
.toolbar-md-dark .bar-button-md-primary:hover:not(.disable-hover) {
  color: #327eff;
}

.toolbar-md-dark .bar-button-outline-md-primary {
  border-color: #2e74eb;
  color: #2e74eb;
  background-color: transparent;
}

.toolbar-md-dark .bar-button-outline-md-primary.activated {
  background-color: transparent;
}

.toolbar-md-dark .bar-button-outline-md-primary .button-effect {
  background-color: #2e74eb;
}

.toolbar-md-dark .bar-button-solid-md-primary {
  color: #fff;
  background-color: #327eff;
}

.toolbar-md-dark .bar-button-solid-md-primary.activated {
  color: #fff;
  background-color: #2e74eb;
}

.toolbar-md-dark .bar-button-secondary-md,
.toolbar-md-dark .bar-button-clear-md-secondary,
.toolbar-md-dark .bar-button-md-secondary {
  color: #32db64;
  background-color: transparent;
}

.toolbar-md-dark .bar-button-secondary-md:hover:not(.disable-hover),
.toolbar-md-dark .bar-button-clear-md-secondary:hover:not(.disable-hover),
.toolbar-md-dark .bar-button-md-secondary:hover:not(.disable-hover) {
  color: #32db64;
}

.toolbar-md-dark .bar-button-outline-md-secondary {
  border-color: #2ec95c;
  color: #2ec95c;
  background-color: transparent;
}

.toolbar-md-dark .bar-button-outline-md-secondary.activated {
  background-color: transparent;
}

.toolbar-md-dark .bar-button-outline-md-secondary .button-effect {
  background-color: #2ec95c;
}

.toolbar-md-dark .bar-button-solid-md-secondary {
  color: #fff;
  background-color: #32db64;
}

.toolbar-md-dark .bar-button-solid-md-secondary.activated {
  color: #fff;
  background-color: #2ec95c;
}

.toolbar-md-dark .bar-button-danger-md,
.toolbar-md-dark .bar-button-clear-md-danger,
.toolbar-md-dark .bar-button-md-danger {
  color: #f53d3d;
  background-color: transparent;
}

.toolbar-md-dark .bar-button-danger-md:hover:not(.disable-hover),
.toolbar-md-dark .bar-button-clear-md-danger:hover:not(.disable-hover),
.toolbar-md-dark .bar-button-md-danger:hover:not(.disable-hover) {
  color: #f53d3d;
}

.toolbar-md-dark .bar-button-outline-md-danger {
  border-color: #e13838;
  color: #e13838;
  background-color: transparent;
}

.toolbar-md-dark .bar-button-outline-md-danger.activated {
  background-color: transparent;
}

.toolbar-md-dark .bar-button-outline-md-danger .button-effect {
  background-color: #e13838;
}

.toolbar-md-dark .bar-button-solid-md-danger {
  color: #fff;
  background-color: #f53d3d;
}

.toolbar-md-dark .bar-button-solid-md-danger.activated {
  color: #fff;
  background-color: #e13838;
}

.toolbar-md-dark .bar-button-light-md,
.toolbar-md-dark .bar-button-clear-md-light,
.toolbar-md-dark .bar-button-md-light {
  color: #f4f4f4;
  background-color: transparent;
}

.toolbar-md-dark .bar-button-light-md:hover:not(.disable-hover),
.toolbar-md-dark .bar-button-clear-md-light:hover:not(.disable-hover),
.toolbar-md-dark .bar-button-md-light:hover:not(.disable-hover) {
  color: #f4f4f4;
}

.toolbar-md-dark .bar-button-outline-md-light {
  border-color: #e0e0e0;
  color: #e0e0e0;
  background-color: transparent;
}

.toolbar-md-dark .bar-button-outline-md-light.activated {
  background-color: transparent;
}

.toolbar-md-dark .bar-button-outline-md-light .button-effect {
  background-color: #e0e0e0;
}

.toolbar-md-dark .bar-button-solid-md-light {
  color: #424242;
  background-color: #f4f4f4;
}

.toolbar-md-dark .bar-button-solid-md-light.activated {
  color: #424242;
  background-color: #e0e0e0;
}

.toolbar-md-dark .bar-button-dark-md,
.toolbar-md-dark .bar-button-clear-md-dark,
.toolbar-md-dark .bar-button-md-dark {
  color: #222;
  background-color: transparent;
}

.toolbar-md-dark .bar-button-dark-md:hover:not(.disable-hover),
.toolbar-md-dark .bar-button-clear-md-dark:hover:not(.disable-hover),
.toolbar-md-dark .bar-button-md-dark:hover:not(.disable-hover) {
  color: #222;
}

.toolbar-md-dark .bar-button-outline-md-dark {
  border-color: #343434;
  color: #343434;
  background-color: transparent;
}

.toolbar-md-dark .bar-button-outline-md-dark.activated {
  background-color: transparent;
}

.toolbar-md-dark .bar-button-outline-md-dark .button-effect {
  background-color: #343434;
}

.toolbar-md-dark .bar-button-solid-md-dark {
  color: #fff;
  background-color: #222;
}

.toolbar-md-dark .bar-button-solid-md-dark.activated {
  color: #fff;
  background-color: #343434;
}

.bar-button-dark-md,
.bar-button-clear-md-dark,
.bar-button-md-dark {
  color: #222;
  background-color: transparent;
}

.bar-button-dark-md:hover:not(.disable-hover),
.bar-button-clear-md-dark:hover:not(.disable-hover),
.bar-button-md-dark:hover:not(.disable-hover) {
  color: #222;
}

.bar-button-outline-md-dark {
  border-color: #343434;
  color: #343434;
  background-color: transparent;
}

.bar-button-outline-md-dark.activated {
  background-color: transparent;
}

.bar-button-outline-md-dark .button-effect {
  background-color: #343434;
}

.bar-button-solid-md-dark {
  color: #fff;
  background-color: #222;
}

.bar-button-solid-md-dark.activated {
  color: #fff;
  background-color: #343434;
}

.bar-button-strong-md {
  font-weight: bold;
}

.toolbar-wp {
  padding: 4px;
  min-height: 46px;
}

.toolbar-background-wp {
  border-color: #b2b2b2;
  background: #f8f8f8;
}

.toolbar-content-wp {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
  min-width: 0;
  max-width: 100%;
}

.toolbar-title-wp {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  padding: 0 6px;
}

.bar-buttons-wp {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
  -ms-flex-order: 4;
  order: 4;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.bar-buttons-wp[left] {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
}

.bar-buttons-wp[left] .bar-button:first-child {
  margin-left: 0;
}

.bar-buttons-wp[end] {
  text-align: right;
  text-align: end;
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
  -ms-flex-order: 5;
  order: 5;
}

.bar-buttons-wp[right] {
  text-align: right;
  -webkit-box-ordinal-group: 7;
  -webkit-order: 6;
  -ms-flex-order: 6;
  order: 6;
}

.bar-button-wp {
  margin: 0 0.2rem;
  padding: 0 5px;
  border-radius: 2px;
  height: 32px;
  border: 0;
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
}

.bar-button-solid-wp,
.bar-button-outline-wp {
  overflow: hidden;
}

.bar-button-outline-wp {
  border-width: 1px;
  border-style: solid;
  border-color: #000;
  color: #000;
  background-color: transparent;
}

.bar-button-outline-wp:hover:not(.disable-hover) {
  opacity: .4;
}

.bar-button-outline-wp.activated {
  color: #fff;
  background-color: #000;
}

.bar-button-solid-wp {
  color: #fff;
  background-color: #000;
}

.bar-button-solid-wp:hover:not(.disable-hover) {
  color: #fff;
}

.bar-button-solid-wp.activated {
  color: #fff;
  background-color: #141414;
}

.bar-button-wp.bar-button-icon-start ion-icon {
  padding-right: 0.3em;
  font-size: 1.4em;
  line-height: .67;
  pointer-events: none;
}

.bar-button-wp.bar-button-icon-end ion-icon {
  padding-left: 0.4em;
  font-size: 1.4em;
  line-height: .67;
  pointer-events: none;
}

.bar-button-wp[icon-only] {
  padding: 0;
}

.bar-button-wp[icon-only] ion-icon {
  padding: 0 0.1em;
  min-width: 28px;
  font-size: 1.8em;
  line-height: .67;
  pointer-events: none;
}

.back-button-wp {
  margin: 0 6px;
  min-width: 44px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.back-button-icon-wp {
  text-align: left;
  text-align: start;
  margin: 0;
  padding: 0 6px;
  font-size: 2.4rem;
  font-weight: normal;
}

.bar-button-menutoggle-wp {
  margin: 0 6px;
  padding: 0 2px;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  min-width: 44px;
}

.bar-button-menutoggle-wp ion-icon {
  padding: 0 6px;
  font-size: 2.4rem;
}

.bar-button-menutoggle-wp[end],
.bar-button-menutoggle-wp[right] {
  margin: 0 2px;
  -webkit-box-ordinal-group: 8;
  -webkit-order: 7;
  -ms-flex-order: 7;
  order: 7;
  min-width: 28px;
}

.bar-button-default-wp,
.bar-button-clear-wp-default,
.bar-button-wp-default {
  color: #000;
  background-color: transparent;
}

.bar-button-default-wp:hover:not(.disable-hover),
.bar-button-clear-wp-default:hover:not(.disable-hover),
.bar-button-wp-default:hover:not(.disable-hover) {
  color: #000;
}

.bar-button-clear-wp,
.bar-button-clear-wp-clear,
.bar-button-wp-clear {
  color: #000;
  background-color: transparent;
}

.bar-button-clear-wp:hover:not(.disable-hover),
.bar-button-clear-wp-clear:hover:not(.disable-hover),
.bar-button-wp-clear:hover:not(.disable-hover) {
  color: #000;
}

.toolbar-wp-primary .toolbar-background-wp {
  background: #327eff;
}

.toolbar-wp-primary .bar-button-clear-wp,
.toolbar-wp-primary .bar-button-default-wp,
.toolbar-wp-primary .bar-button-outline-wp,
.toolbar-wp-primary .toolbar-title-wp {
  color: #fff;
}

.toolbar-wp-primary .bar-button-outline-wp {
  border-color: #fff;
}

.toolbar-wp-primary .bar-button-primary-wp,
.toolbar-wp-primary .bar-button-clear-wp-primary,
.toolbar-wp-primary .bar-button-wp-primary {
  color: #327eff;
  background-color: transparent;
}

.toolbar-wp-primary .bar-button-primary-wp:hover:not(.disable-hover),
.toolbar-wp-primary .bar-button-clear-wp-primary:hover:not(.disable-hover),
.toolbar-wp-primary .bar-button-wp-primary:hover:not(.disable-hover) {
  color: #327eff;
}

.toolbar-wp-primary .bar-button-outline-wp-primary {
  border-color: #2e74eb;
  color: #2e74eb;
  background-color: transparent;
}

.toolbar-wp-primary .bar-button-outline-wp-primary.activated {
  color: #fff;
  background-color: #2e74eb;
}

.toolbar-wp-primary .bar-button-solid-wp-primary {
  color: #fff;
  background-color: #327eff;
}

.toolbar-wp-primary .bar-button-solid-wp-primary.activated {
  color: #fff;
  background-color: #2e74eb;
}

.toolbar-wp-primary .bar-button-secondary-wp,
.toolbar-wp-primary .bar-button-clear-wp-secondary,
.toolbar-wp-primary .bar-button-wp-secondary {
  color: #32db64;
  background-color: transparent;
}

.toolbar-wp-primary .bar-button-secondary-wp:hover:not(.disable-hover),
.toolbar-wp-primary .bar-button-clear-wp-secondary:hover:not(.disable-hover),
.toolbar-wp-primary .bar-button-wp-secondary:hover:not(.disable-hover) {
  color: #32db64;
}

.toolbar-wp-primary .bar-button-outline-wp-secondary {
  border-color: #2ec95c;
  color: #2ec95c;
  background-color: transparent;
}

.toolbar-wp-primary .bar-button-outline-wp-secondary.activated {
  color: #fff;
  background-color: #2ec95c;
}

.toolbar-wp-primary .bar-button-solid-wp-secondary {
  color: #fff;
  background-color: #32db64;
}

.toolbar-wp-primary .bar-button-solid-wp-secondary.activated {
  color: #fff;
  background-color: #2ec95c;
}

.toolbar-wp-primary .bar-button-danger-wp,
.toolbar-wp-primary .bar-button-clear-wp-danger,
.toolbar-wp-primary .bar-button-wp-danger {
  color: #f53d3d;
  background-color: transparent;
}

.toolbar-wp-primary .bar-button-danger-wp:hover:not(.disable-hover),
.toolbar-wp-primary .bar-button-clear-wp-danger:hover:not(.disable-hover),
.toolbar-wp-primary .bar-button-wp-danger:hover:not(.disable-hover) {
  color: #f53d3d;
}

.toolbar-wp-primary .bar-button-outline-wp-danger {
  border-color: #e13838;
  color: #e13838;
  background-color: transparent;
}

.toolbar-wp-primary .bar-button-outline-wp-danger.activated {
  color: #fff;
  background-color: #e13838;
}

.toolbar-wp-primary .bar-button-solid-wp-danger {
  color: #fff;
  background-color: #f53d3d;
}

.toolbar-wp-primary .bar-button-solid-wp-danger.activated {
  color: #fff;
  background-color: #e13838;
}

.toolbar-wp-primary .bar-button-light-wp,
.toolbar-wp-primary .bar-button-clear-wp-light,
.toolbar-wp-primary .bar-button-wp-light {
  color: #f4f4f4;
  background-color: transparent;
}

.toolbar-wp-primary .bar-button-light-wp:hover:not(.disable-hover),
.toolbar-wp-primary .bar-button-clear-wp-light:hover:not(.disable-hover),
.toolbar-wp-primary .bar-button-wp-light:hover:not(.disable-hover) {
  color: #f4f4f4;
}

.toolbar-wp-primary .bar-button-outline-wp-light {
  border-color: #e0e0e0;
  color: #e0e0e0;
  background-color: transparent;
}

.toolbar-wp-primary .bar-button-outline-wp-light.activated {
  color: #000;
  background-color: #e0e0e0;
}

.toolbar-wp-primary .bar-button-solid-wp-light {
  color: #000;
  background-color: #f4f4f4;
}

.toolbar-wp-primary .bar-button-solid-wp-light.activated {
  color: #000;
  background-color: #e0e0e0;
}

.toolbar-wp-primary .bar-button-dark-wp,
.toolbar-wp-primary .bar-button-clear-wp-dark,
.toolbar-wp-primary .bar-button-wp-dark {
  color: #222;
  background-color: transparent;
}

.toolbar-wp-primary .bar-button-dark-wp:hover:not(.disable-hover),
.toolbar-wp-primary .bar-button-clear-wp-dark:hover:not(.disable-hover),
.toolbar-wp-primary .bar-button-wp-dark:hover:not(.disable-hover) {
  color: #222;
}

.toolbar-wp-primary .bar-button-outline-wp-dark {
  border-color: #343434;
  color: #343434;
  background-color: transparent;
}

.toolbar-wp-primary .bar-button-outline-wp-dark.activated {
  color: #fff;
  background-color: #343434;
}

.toolbar-wp-primary .bar-button-solid-wp-dark {
  color: #fff;
  background-color: #222;
}

.toolbar-wp-primary .bar-button-solid-wp-dark.activated {
  color: #fff;
  background-color: #343434;
}

.bar-button-primary-wp,
.bar-button-clear-wp-primary,
.bar-button-wp-primary {
  color: #327eff;
  background-color: transparent;
}

.bar-button-primary-wp:hover:not(.disable-hover),
.bar-button-clear-wp-primary:hover:not(.disable-hover),
.bar-button-wp-primary:hover:not(.disable-hover) {
  color: #327eff;
}

.bar-button-outline-wp-primary {
  border-color: #2e74eb;
  color: #2e74eb;
  background-color: transparent;
}

.bar-button-outline-wp-primary.activated {
  color: #fff;
  background-color: #2e74eb;
}

.bar-button-solid-wp-primary {
  color: #fff;
  background-color: #327eff;
}

.bar-button-solid-wp-primary.activated {
  color: #fff;
  background-color: #2e74eb;
}

.toolbar-wp-secondary .toolbar-background-wp {
  background: #32db64;
}

.toolbar-wp-secondary .bar-button-clear-wp,
.toolbar-wp-secondary .bar-button-default-wp,
.toolbar-wp-secondary .bar-button-outline-wp,
.toolbar-wp-secondary .toolbar-title-wp {
  color: #fff;
}

.toolbar-wp-secondary .bar-button-outline-wp {
  border-color: #fff;
}

.toolbar-wp-secondary .bar-button-primary-wp,
.toolbar-wp-secondary .bar-button-clear-wp-primary,
.toolbar-wp-secondary .bar-button-wp-primary {
  color: #327eff;
  background-color: transparent;
}

.toolbar-wp-secondary .bar-button-primary-wp:hover:not(.disable-hover),
.toolbar-wp-secondary .bar-button-clear-wp-primary:hover:not(.disable-hover),
.toolbar-wp-secondary .bar-button-wp-primary:hover:not(.disable-hover) {
  color: #327eff;
}

.toolbar-wp-secondary .bar-button-outline-wp-primary {
  border-color: #2e74eb;
  color: #2e74eb;
  background-color: transparent;
}

.toolbar-wp-secondary .bar-button-outline-wp-primary.activated {
  color: #fff;
  background-color: #2e74eb;
}

.toolbar-wp-secondary .bar-button-solid-wp-primary {
  color: #fff;
  background-color: #327eff;
}

.toolbar-wp-secondary .bar-button-solid-wp-primary.activated {
  color: #fff;
  background-color: #2e74eb;
}

.toolbar-wp-secondary .bar-button-secondary-wp,
.toolbar-wp-secondary .bar-button-clear-wp-secondary,
.toolbar-wp-secondary .bar-button-wp-secondary {
  color: #32db64;
  background-color: transparent;
}

.toolbar-wp-secondary .bar-button-secondary-wp:hover:not(.disable-hover),
.toolbar-wp-secondary .bar-button-clear-wp-secondary:hover:not(.disable-hover),
.toolbar-wp-secondary .bar-button-wp-secondary:hover:not(.disable-hover) {
  color: #32db64;
}

.toolbar-wp-secondary .bar-button-outline-wp-secondary {
  border-color: #2ec95c;
  color: #2ec95c;
  background-color: transparent;
}

.toolbar-wp-secondary .bar-button-outline-wp-secondary.activated {
  color: #fff;
  background-color: #2ec95c;
}

.toolbar-wp-secondary .bar-button-solid-wp-secondary {
  color: #fff;
  background-color: #32db64;
}

.toolbar-wp-secondary .bar-button-solid-wp-secondary.activated {
  color: #fff;
  background-color: #2ec95c;
}

.toolbar-wp-secondary .bar-button-danger-wp,
.toolbar-wp-secondary .bar-button-clear-wp-danger,
.toolbar-wp-secondary .bar-button-wp-danger {
  color: #f53d3d;
  background-color: transparent;
}

.toolbar-wp-secondary .bar-button-danger-wp:hover:not(.disable-hover),
.toolbar-wp-secondary .bar-button-clear-wp-danger:hover:not(.disable-hover),
.toolbar-wp-secondary .bar-button-wp-danger:hover:not(.disable-hover) {
  color: #f53d3d;
}

.toolbar-wp-secondary .bar-button-outline-wp-danger {
  border-color: #e13838;
  color: #e13838;
  background-color: transparent;
}

.toolbar-wp-secondary .bar-button-outline-wp-danger.activated {
  color: #fff;
  background-color: #e13838;
}

.toolbar-wp-secondary .bar-button-solid-wp-danger {
  color: #fff;
  background-color: #f53d3d;
}

.toolbar-wp-secondary .bar-button-solid-wp-danger.activated {
  color: #fff;
  background-color: #e13838;
}

.toolbar-wp-secondary .bar-button-light-wp,
.toolbar-wp-secondary .bar-button-clear-wp-light,
.toolbar-wp-secondary .bar-button-wp-light {
  color: #f4f4f4;
  background-color: transparent;
}

.toolbar-wp-secondary .bar-button-light-wp:hover:not(.disable-hover),
.toolbar-wp-secondary .bar-button-clear-wp-light:hover:not(.disable-hover),
.toolbar-wp-secondary .bar-button-wp-light:hover:not(.disable-hover) {
  color: #f4f4f4;
}

.toolbar-wp-secondary .bar-button-outline-wp-light {
  border-color: #e0e0e0;
  color: #e0e0e0;
  background-color: transparent;
}

.toolbar-wp-secondary .bar-button-outline-wp-light.activated {
  color: #000;
  background-color: #e0e0e0;
}

.toolbar-wp-secondary .bar-button-solid-wp-light {
  color: #000;
  background-color: #f4f4f4;
}

.toolbar-wp-secondary .bar-button-solid-wp-light.activated {
  color: #000;
  background-color: #e0e0e0;
}

.toolbar-wp-secondary .bar-button-dark-wp,
.toolbar-wp-secondary .bar-button-clear-wp-dark,
.toolbar-wp-secondary .bar-button-wp-dark {
  color: #222;
  background-color: transparent;
}

.toolbar-wp-secondary .bar-button-dark-wp:hover:not(.disable-hover),
.toolbar-wp-secondary .bar-button-clear-wp-dark:hover:not(.disable-hover),
.toolbar-wp-secondary .bar-button-wp-dark:hover:not(.disable-hover) {
  color: #222;
}

.toolbar-wp-secondary .bar-button-outline-wp-dark {
  border-color: #343434;
  color: #343434;
  background-color: transparent;
}

.toolbar-wp-secondary .bar-button-outline-wp-dark.activated {
  color: #fff;
  background-color: #343434;
}

.toolbar-wp-secondary .bar-button-solid-wp-dark {
  color: #fff;
  background-color: #222;
}

.toolbar-wp-secondary .bar-button-solid-wp-dark.activated {
  color: #fff;
  background-color: #343434;
}

.bar-button-secondary-wp,
.bar-button-clear-wp-secondary,
.bar-button-wp-secondary {
  color: #32db64;
  background-color: transparent;
}

.bar-button-secondary-wp:hover:not(.disable-hover),
.bar-button-clear-wp-secondary:hover:not(.disable-hover),
.bar-button-wp-secondary:hover:not(.disable-hover) {
  color: #32db64;
}

.bar-button-outline-wp-secondary {
  border-color: #2ec95c;
  color: #2ec95c;
  background-color: transparent;
}

.bar-button-outline-wp-secondary.activated {
  color: #fff;
  background-color: #2ec95c;
}

.bar-button-solid-wp-secondary {
  color: #fff;
  background-color: #32db64;
}

.bar-button-solid-wp-secondary.activated {
  color: #fff;
  background-color: #2ec95c;
}

.toolbar-wp-danger .toolbar-background-wp {
  background: #f53d3d;
}

.toolbar-wp-danger .bar-button-clear-wp,
.toolbar-wp-danger .bar-button-default-wp,
.toolbar-wp-danger .bar-button-outline-wp,
.toolbar-wp-danger .toolbar-title-wp {
  color: #fff;
}

.toolbar-wp-danger .bar-button-outline-wp {
  border-color: #fff;
}

.toolbar-wp-danger .bar-button-primary-wp,
.toolbar-wp-danger .bar-button-clear-wp-primary,
.toolbar-wp-danger .bar-button-wp-primary {
  color: #327eff;
  background-color: transparent;
}

.toolbar-wp-danger .bar-button-primary-wp:hover:not(.disable-hover),
.toolbar-wp-danger .bar-button-clear-wp-primary:hover:not(.disable-hover),
.toolbar-wp-danger .bar-button-wp-primary:hover:not(.disable-hover) {
  color: #327eff;
}

.toolbar-wp-danger .bar-button-outline-wp-primary {
  border-color: #2e74eb;
  color: #2e74eb;
  background-color: transparent;
}

.toolbar-wp-danger .bar-button-outline-wp-primary.activated {
  color: #fff;
  background-color: #2e74eb;
}

.toolbar-wp-danger .bar-button-solid-wp-primary {
  color: #fff;
  background-color: #327eff;
}

.toolbar-wp-danger .bar-button-solid-wp-primary.activated {
  color: #fff;
  background-color: #2e74eb;
}

.toolbar-wp-danger .bar-button-secondary-wp,
.toolbar-wp-danger .bar-button-clear-wp-secondary,
.toolbar-wp-danger .bar-button-wp-secondary {
  color: #32db64;
  background-color: transparent;
}

.toolbar-wp-danger .bar-button-secondary-wp:hover:not(.disable-hover),
.toolbar-wp-danger .bar-button-clear-wp-secondary:hover:not(.disable-hover),
.toolbar-wp-danger .bar-button-wp-secondary:hover:not(.disable-hover) {
  color: #32db64;
}

.toolbar-wp-danger .bar-button-outline-wp-secondary {
  border-color: #2ec95c;
  color: #2ec95c;
  background-color: transparent;
}

.toolbar-wp-danger .bar-button-outline-wp-secondary.activated {
  color: #fff;
  background-color: #2ec95c;
}

.toolbar-wp-danger .bar-button-solid-wp-secondary {
  color: #fff;
  background-color: #32db64;
}

.toolbar-wp-danger .bar-button-solid-wp-secondary.activated {
  color: #fff;
  background-color: #2ec95c;
}

.toolbar-wp-danger .bar-button-danger-wp,
.toolbar-wp-danger .bar-button-clear-wp-danger,
.toolbar-wp-danger .bar-button-wp-danger {
  color: #f53d3d;
  background-color: transparent;
}

.toolbar-wp-danger .bar-button-danger-wp:hover:not(.disable-hover),
.toolbar-wp-danger .bar-button-clear-wp-danger:hover:not(.disable-hover),
.toolbar-wp-danger .bar-button-wp-danger:hover:not(.disable-hover) {
  color: #f53d3d;
}

.toolbar-wp-danger .bar-button-outline-wp-danger {
  border-color: #e13838;
  color: #e13838;
  background-color: transparent;
}

.toolbar-wp-danger .bar-button-outline-wp-danger.activated {
  color: #fff;
  background-color: #e13838;
}

.toolbar-wp-danger .bar-button-solid-wp-danger {
  color: #fff;
  background-color: #f53d3d;
}

.toolbar-wp-danger .bar-button-solid-wp-danger.activated {
  color: #fff;
  background-color: #e13838;
}

.toolbar-wp-danger .bar-button-light-wp,
.toolbar-wp-danger .bar-button-clear-wp-light,
.toolbar-wp-danger .bar-button-wp-light {
  color: #f4f4f4;
  background-color: transparent;
}

.toolbar-wp-danger .bar-button-light-wp:hover:not(.disable-hover),
.toolbar-wp-danger .bar-button-clear-wp-light:hover:not(.disable-hover),
.toolbar-wp-danger .bar-button-wp-light:hover:not(.disable-hover) {
  color: #f4f4f4;
}

.toolbar-wp-danger .bar-button-outline-wp-light {
  border-color: #e0e0e0;
  color: #e0e0e0;
  background-color: transparent;
}

.toolbar-wp-danger .bar-button-outline-wp-light.activated {
  color: #000;
  background-color: #e0e0e0;
}

.toolbar-wp-danger .bar-button-solid-wp-light {
  color: #000;
  background-color: #f4f4f4;
}

.toolbar-wp-danger .bar-button-solid-wp-light.activated {
  color: #000;
  background-color: #e0e0e0;
}

.toolbar-wp-danger .bar-button-dark-wp,
.toolbar-wp-danger .bar-button-clear-wp-dark,
.toolbar-wp-danger .bar-button-wp-dark {
  color: #222;
  background-color: transparent;
}

.toolbar-wp-danger .bar-button-dark-wp:hover:not(.disable-hover),
.toolbar-wp-danger .bar-button-clear-wp-dark:hover:not(.disable-hover),
.toolbar-wp-danger .bar-button-wp-dark:hover:not(.disable-hover) {
  color: #222;
}

.toolbar-wp-danger .bar-button-outline-wp-dark {
  border-color: #343434;
  color: #343434;
  background-color: transparent;
}

.toolbar-wp-danger .bar-button-outline-wp-dark.activated {
  color: #fff;
  background-color: #343434;
}

.toolbar-wp-danger .bar-button-solid-wp-dark {
  color: #fff;
  background-color: #222;
}

.toolbar-wp-danger .bar-button-solid-wp-dark.activated {
  color: #fff;
  background-color: #343434;
}

.bar-button-danger-wp,
.bar-button-clear-wp-danger,
.bar-button-wp-danger {
  color: #f53d3d;
  background-color: transparent;
}

.bar-button-danger-wp:hover:not(.disable-hover),
.bar-button-clear-wp-danger:hover:not(.disable-hover),
.bar-button-wp-danger:hover:not(.disable-hover) {
  color: #f53d3d;
}

.bar-button-outline-wp-danger {
  border-color: #e13838;
  color: #e13838;
  background-color: transparent;
}

.bar-button-outline-wp-danger.activated {
  color: #fff;
  background-color: #e13838;
}

.bar-button-solid-wp-danger {
  color: #fff;
  background-color: #f53d3d;
}

.bar-button-solid-wp-danger.activated {
  color: #fff;
  background-color: #e13838;
}

.toolbar-wp-light .toolbar-background-wp {
  background: #f4f4f4;
}

.toolbar-wp-light .bar-button-clear-wp,
.toolbar-wp-light .bar-button-default-wp,
.toolbar-wp-light .bar-button-outline-wp,
.toolbar-wp-light .toolbar-title-wp {
  color: #000;
}

.toolbar-wp-light .bar-button-outline-wp {
  border-color: #000;
}

.toolbar-wp-light .bar-button-primary-wp,
.toolbar-wp-light .bar-button-clear-wp-primary,
.toolbar-wp-light .bar-button-wp-primary {
  color: #327eff;
  background-color: transparent;
}

.toolbar-wp-light .bar-button-primary-wp:hover:not(.disable-hover),
.toolbar-wp-light .bar-button-clear-wp-primary:hover:not(.disable-hover),
.toolbar-wp-light .bar-button-wp-primary:hover:not(.disable-hover) {
  color: #327eff;
}

.toolbar-wp-light .bar-button-outline-wp-primary {
  border-color: #2e74eb;
  color: #2e74eb;
  background-color: transparent;
}

.toolbar-wp-light .bar-button-outline-wp-primary.activated {
  color: #fff;
  background-color: #2e74eb;
}

.toolbar-wp-light .bar-button-solid-wp-primary {
  color: #fff;
  background-color: #327eff;
}

.toolbar-wp-light .bar-button-solid-wp-primary.activated {
  color: #fff;
  background-color: #2e74eb;
}

.toolbar-wp-light .bar-button-secondary-wp,
.toolbar-wp-light .bar-button-clear-wp-secondary,
.toolbar-wp-light .bar-button-wp-secondary {
  color: #32db64;
  background-color: transparent;
}

.toolbar-wp-light .bar-button-secondary-wp:hover:not(.disable-hover),
.toolbar-wp-light .bar-button-clear-wp-secondary:hover:not(.disable-hover),
.toolbar-wp-light .bar-button-wp-secondary:hover:not(.disable-hover) {
  color: #32db64;
}

.toolbar-wp-light .bar-button-outline-wp-secondary {
  border-color: #2ec95c;
  color: #2ec95c;
  background-color: transparent;
}

.toolbar-wp-light .bar-button-outline-wp-secondary.activated {
  color: #fff;
  background-color: #2ec95c;
}

.toolbar-wp-light .bar-button-solid-wp-secondary {
  color: #fff;
  background-color: #32db64;
}

.toolbar-wp-light .bar-button-solid-wp-secondary.activated {
  color: #fff;
  background-color: #2ec95c;
}

.toolbar-wp-light .bar-button-danger-wp,
.toolbar-wp-light .bar-button-clear-wp-danger,
.toolbar-wp-light .bar-button-wp-danger {
  color: #f53d3d;
  background-color: transparent;
}

.toolbar-wp-light .bar-button-danger-wp:hover:not(.disable-hover),
.toolbar-wp-light .bar-button-clear-wp-danger:hover:not(.disable-hover),
.toolbar-wp-light .bar-button-wp-danger:hover:not(.disable-hover) {
  color: #f53d3d;
}

.toolbar-wp-light .bar-button-outline-wp-danger {
  border-color: #e13838;
  color: #e13838;
  background-color: transparent;
}

.toolbar-wp-light .bar-button-outline-wp-danger.activated {
  color: #fff;
  background-color: #e13838;
}

.toolbar-wp-light .bar-button-solid-wp-danger {
  color: #fff;
  background-color: #f53d3d;
}

.toolbar-wp-light .bar-button-solid-wp-danger.activated {
  color: #fff;
  background-color: #e13838;
}

.toolbar-wp-light .bar-button-light-wp,
.toolbar-wp-light .bar-button-clear-wp-light,
.toolbar-wp-light .bar-button-wp-light {
  color: #f4f4f4;
  background-color: transparent;
}

.toolbar-wp-light .bar-button-light-wp:hover:not(.disable-hover),
.toolbar-wp-light .bar-button-clear-wp-light:hover:not(.disable-hover),
.toolbar-wp-light .bar-button-wp-light:hover:not(.disable-hover) {
  color: #f4f4f4;
}

.toolbar-wp-light .bar-button-outline-wp-light {
  border-color: #e0e0e0;
  color: #e0e0e0;
  background-color: transparent;
}

.toolbar-wp-light .bar-button-outline-wp-light.activated {
  color: #000;
  background-color: #e0e0e0;
}

.toolbar-wp-light .bar-button-solid-wp-light {
  color: #000;
  background-color: #f4f4f4;
}

.toolbar-wp-light .bar-button-solid-wp-light.activated {
  color: #000;
  background-color: #e0e0e0;
}

.toolbar-wp-light .bar-button-dark-wp,
.toolbar-wp-light .bar-button-clear-wp-dark,
.toolbar-wp-light .bar-button-wp-dark {
  color: #222;
  background-color: transparent;
}

.toolbar-wp-light .bar-button-dark-wp:hover:not(.disable-hover),
.toolbar-wp-light .bar-button-clear-wp-dark:hover:not(.disable-hover),
.toolbar-wp-light .bar-button-wp-dark:hover:not(.disable-hover) {
  color: #222;
}

.toolbar-wp-light .bar-button-outline-wp-dark {
  border-color: #343434;
  color: #343434;
  background-color: transparent;
}

.toolbar-wp-light .bar-button-outline-wp-dark.activated {
  color: #fff;
  background-color: #343434;
}

.toolbar-wp-light .bar-button-solid-wp-dark {
  color: #fff;
  background-color: #222;
}

.toolbar-wp-light .bar-button-solid-wp-dark.activated {
  color: #fff;
  background-color: #343434;
}

.bar-button-light-wp,
.bar-button-clear-wp-light,
.bar-button-wp-light {
  color: #f4f4f4;
  background-color: transparent;
}

.bar-button-light-wp:hover:not(.disable-hover),
.bar-button-clear-wp-light:hover:not(.disable-hover),
.bar-button-wp-light:hover:not(.disable-hover) {
  color: #f4f4f4;
}

.bar-button-outline-wp-light {
  border-color: #e0e0e0;
  color: #e0e0e0;
  background-color: transparent;
}

.bar-button-outline-wp-light.activated {
  color: #000;
  background-color: #e0e0e0;
}

.bar-button-solid-wp-light {
  color: #000;
  background-color: #f4f4f4;
}

.bar-button-solid-wp-light.activated {
  color: #000;
  background-color: #e0e0e0;
}

.toolbar-wp-dark .toolbar-background-wp {
  background: #222;
}

.toolbar-wp-dark .bar-button-clear-wp,
.toolbar-wp-dark .bar-button-default-wp,
.toolbar-wp-dark .bar-button-outline-wp,
.toolbar-wp-dark .toolbar-title-wp {
  color: #fff;
}

.toolbar-wp-dark .bar-button-outline-wp {
  border-color: #fff;
}

.toolbar-wp-dark .bar-button-primary-wp,
.toolbar-wp-dark .bar-button-clear-wp-primary,
.toolbar-wp-dark .bar-button-wp-primary {
  color: #327eff;
  background-color: transparent;
}

.toolbar-wp-dark .bar-button-primary-wp:hover:not(.disable-hover),
.toolbar-wp-dark .bar-button-clear-wp-primary:hover:not(.disable-hover),
.toolbar-wp-dark .bar-button-wp-primary:hover:not(.disable-hover) {
  color: #327eff;
}

.toolbar-wp-dark .bar-button-outline-wp-primary {
  border-color: #2e74eb;
  color: #2e74eb;
  background-color: transparent;
}

.toolbar-wp-dark .bar-button-outline-wp-primary.activated {
  color: #fff;
  background-color: #2e74eb;
}

.toolbar-wp-dark .bar-button-solid-wp-primary {
  color: #fff;
  background-color: #327eff;
}

.toolbar-wp-dark .bar-button-solid-wp-primary.activated {
  color: #fff;
  background-color: #2e74eb;
}

.toolbar-wp-dark .bar-button-secondary-wp,
.toolbar-wp-dark .bar-button-clear-wp-secondary,
.toolbar-wp-dark .bar-button-wp-secondary {
  color: #32db64;
  background-color: transparent;
}

.toolbar-wp-dark .bar-button-secondary-wp:hover:not(.disable-hover),
.toolbar-wp-dark .bar-button-clear-wp-secondary:hover:not(.disable-hover),
.toolbar-wp-dark .bar-button-wp-secondary:hover:not(.disable-hover) {
  color: #32db64;
}

.toolbar-wp-dark .bar-button-outline-wp-secondary {
  border-color: #2ec95c;
  color: #2ec95c;
  background-color: transparent;
}

.toolbar-wp-dark .bar-button-outline-wp-secondary.activated {
  color: #fff;
  background-color: #2ec95c;
}

.toolbar-wp-dark .bar-button-solid-wp-secondary {
  color: #fff;
  background-color: #32db64;
}

.toolbar-wp-dark .bar-button-solid-wp-secondary.activated {
  color: #fff;
  background-color: #2ec95c;
}

.toolbar-wp-dark .bar-button-danger-wp,
.toolbar-wp-dark .bar-button-clear-wp-danger,
.toolbar-wp-dark .bar-button-wp-danger {
  color: #f53d3d;
  background-color: transparent;
}

.toolbar-wp-dark .bar-button-danger-wp:hover:not(.disable-hover),
.toolbar-wp-dark .bar-button-clear-wp-danger:hover:not(.disable-hover),
.toolbar-wp-dark .bar-button-wp-danger:hover:not(.disable-hover) {
  color: #f53d3d;
}

.toolbar-wp-dark .bar-button-outline-wp-danger {
  border-color: #e13838;
  color: #e13838;
  background-color: transparent;
}

.toolbar-wp-dark .bar-button-outline-wp-danger.activated {
  color: #fff;
  background-color: #e13838;
}

.toolbar-wp-dark .bar-button-solid-wp-danger {
  color: #fff;
  background-color: #f53d3d;
}

.toolbar-wp-dark .bar-button-solid-wp-danger.activated {
  color: #fff;
  background-color: #e13838;
}

.toolbar-wp-dark .bar-button-light-wp,
.toolbar-wp-dark .bar-button-clear-wp-light,
.toolbar-wp-dark .bar-button-wp-light {
  color: #f4f4f4;
  background-color: transparent;
}

.toolbar-wp-dark .bar-button-light-wp:hover:not(.disable-hover),
.toolbar-wp-dark .bar-button-clear-wp-light:hover:not(.disable-hover),
.toolbar-wp-dark .bar-button-wp-light:hover:not(.disable-hover) {
  color: #f4f4f4;
}

.toolbar-wp-dark .bar-button-outline-wp-light {
  border-color: #e0e0e0;
  color: #e0e0e0;
  background-color: transparent;
}

.toolbar-wp-dark .bar-button-outline-wp-light.activated {
  color: #000;
  background-color: #e0e0e0;
}

.toolbar-wp-dark .bar-button-solid-wp-light {
  color: #000;
  background-color: #f4f4f4;
}

.toolbar-wp-dark .bar-button-solid-wp-light.activated {
  color: #000;
  background-color: #e0e0e0;
}

.toolbar-wp-dark .bar-button-dark-wp,
.toolbar-wp-dark .bar-button-clear-wp-dark,
.toolbar-wp-dark .bar-button-wp-dark {
  color: #222;
  background-color: transparent;
}

.toolbar-wp-dark .bar-button-dark-wp:hover:not(.disable-hover),
.toolbar-wp-dark .bar-button-clear-wp-dark:hover:not(.disable-hover),
.toolbar-wp-dark .bar-button-wp-dark:hover:not(.disable-hover) {
  color: #222;
}

.toolbar-wp-dark .bar-button-outline-wp-dark {
  border-color: #343434;
  color: #343434;
  background-color: transparent;
}

.toolbar-wp-dark .bar-button-outline-wp-dark.activated {
  color: #fff;
  background-color: #343434;
}

.toolbar-wp-dark .bar-button-solid-wp-dark {
  color: #fff;
  background-color: #222;
}

.toolbar-wp-dark .bar-button-solid-wp-dark.activated {
  color: #fff;
  background-color: #343434;
}

.bar-button-dark-wp,
.bar-button-clear-wp-dark,
.bar-button-wp-dark {
  color: #222;
  background-color: transparent;
}

.bar-button-dark-wp:hover:not(.disable-hover),
.bar-button-clear-wp-dark:hover:not(.disable-hover),
.bar-button-wp-dark:hover:not(.disable-hover) {
  color: #222;
}

.bar-button-outline-wp-dark {
  border-color: #343434;
  color: #343434;
  background-color: transparent;
}

.bar-button-outline-wp-dark.activated {
  color: #fff;
  background-color: #343434;
}

.bar-button-solid-wp-dark {
  color: #fff;
  background-color: #222;
}

.bar-button-solid-wp-dark.activated {
  color: #fff;
  background-color: #343434;
}

.bar-button-strong-wp {
  font-weight: bold;
}

.text-ios-primary {
  color: #327eff;
}

.text-ios-secondary {
  color: #32db64;
}

.text-ios-danger {
  color: #f53d3d;
}

.text-ios-light {
  color: #f4f4f4;
}

.text-ios-dark {
  color: #222;
}

.text-md-primary {
  color: #327eff;
}

.text-md-secondary {
  color: #32db64;
}

.text-md-danger {
  color: #f53d3d;
}

.text-md-light {
  color: #f4f4f4;
}

.text-md-dark {
  color: #222;
}

.text-wp-primary {
  color: #327eff;
}

.text-wp-secondary {
  color: #32db64;
}

.text-wp-danger {
  color: #f53d3d;
}

.text-wp-light {
  color: #f4f4f4;
}

.text-wp-dark {
  color: #222;
}

.virtual-loading {
  opacity: 0;
}

.virtual-scroll {
  position: relative;
  contain: content;
}

.virtual-scroll .virtual-position,
.virtual-scroll .virtual-position.item {
  left: 0;
  top: 0;
  position: absolute;
  -webkit-transition-duration: 0ms;
  transition-duration: 0ms;
  contain: content;
}

.virtual-scroll .virtual-last {
  display: none;
}

.ios ion-nav > .ion-page > .toolbar.statusbar-padding:first-child,
.ios ion-nav > .ion-page > ion-header > .toolbar.statusbar-padding:first-child,
.ios ion-tab > .ion-page > .toolbar.statusbar-padding:first-child,
.ios ion-tab > .ion-page > ion-header > .toolbar.statusbar-padding:first-child,
.ios ion-tabs > .ion-page.tab-subpage > ion-header > .toolbar.statusbar-padding:first-child,
.ios ion-menu > .menu-inner > .toolbar.statusbar-padding:first-child,
.ios ion-menu > .menu-inner > ion-header > .toolbar.statusbar-padding:first-child {
  padding-top: calc(20px + 4px);
  padding-top: calc(constant(safe-area-inset-top) + 4px);
  padding-top: calc(env(safe-area-inset-top) + 4px);
  min-height: calc(44px + 20px);
  min-height: calc(44px + constant(safe-area-inset-top));
  min-height: calc(44px + env(safe-area-inset-top));
}

.ios ion-nav > .ion-page > ion-content.statusbar-padding:first-child .scroll-content,
.ios ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content,
.ios ion-tab > .ion-page > ion-content.statusbar-padding:first-child .scroll-content,
.ios ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content,
.ios ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child .scroll-content,
.ios ion-menu > .menu-inner > ion-content.statusbar-padding:first-child .scroll-content,
.ios ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child .scroll-content {
  padding-top: 20px;
  padding-top: constant(safe-area-inset-top);
  padding-top: env(safe-area-inset-top);
}

.ios ion-nav > .ion-page > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.ios ion-nav > .ion-page > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.ios ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.ios ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.ios ion-tab > .ion-page > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.ios ion-tab > .ion-page > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.ios ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.ios ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.ios ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.ios ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.ios ion-menu > .menu-inner > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.ios ion-menu > .menu-inner > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.ios ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.ios ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content {
  padding-top: calc(16px + 20px);
  padding-top: constant(safe-area-inset-top);
  padding-top: env(safe-area-inset-top);
}

.ios ion-nav > .ion-page > .toolbar.statusbar-padding:first-child ion-segment,
.ios ion-nav > .ion-page > .toolbar.statusbar-padding:first-child ion-title,
.ios ion-nav > .ion-page > ion-header > .toolbar.statusbar-padding:first-child ion-segment,
.ios ion-nav > .ion-page > ion-header > .toolbar.statusbar-padding:first-child ion-title,
.ios ion-tab > .ion-page > .toolbar.statusbar-padding:first-child ion-segment,
.ios ion-tab > .ion-page > .toolbar.statusbar-padding:first-child ion-title,
.ios ion-tab > .ion-page > ion-header > .toolbar.statusbar-padding:first-child ion-segment,
.ios ion-tab > .ion-page > ion-header > .toolbar.statusbar-padding:first-child ion-title,
.ios ion-tabs > .ion-page.tab-subpage > ion-header > .toolbar.statusbar-padding:first-child ion-segment,
.ios ion-tabs > .ion-page.tab-subpage > ion-header > .toolbar.statusbar-padding:first-child ion-title,
.ios ion-menu > .menu-inner > .toolbar.statusbar-padding:first-child ion-segment,
.ios ion-menu > .menu-inner > .toolbar.statusbar-padding:first-child ion-title,
.ios ion-menu > .menu-inner > ion-header > .toolbar.statusbar-padding:first-child ion-segment,
.ios ion-menu > .menu-inner > ion-header > .toolbar.statusbar-padding:first-child ion-title {
  padding-top: 20px;
  padding-top: constant(safe-area-inset-top);
  padding-top: env(safe-area-inset-top);
  height: calc(44px + 20px);
  height: calc(44px + constant(safe-area-inset-top));
  height: calc(44px + env(safe-area-inset-top));
  min-height: calc(44px + 20px);
  min-height: calc(44px + constant(safe-area-inset-top));
  min-height: calc(44px + env(safe-area-inset-top));
}

@media only screen and (max-width: 767px) {
  .ios .modal-wrapper > .ion-page > ion-header > .toolbar.statusbar-padding:first-child {
    padding-top: calc(20px + 4px);
    padding-top: calc(constant(safe-area-inset-top) + 4px);
    padding-top: calc(env(safe-area-inset-top) + 4px);
    min-height: calc(44px + 20px);
    min-height: calc(44px + constant(safe-area-inset-top));
    min-height: calc(44px + env(safe-area-inset-top));
  }
  .ios .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content {
    padding-top: 20px;
    padding-top: constant(safe-area-inset-top);
    padding-top: env(safe-area-inset-top);
  }
  .ios .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
  .ios .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content {
    padding-top: calc(16px + 20px);
    padding-top: constant(safe-area-inset-top);
    padding-top: env(safe-area-inset-top);
  }
  .ios .modal-wrapper > .ion-page > ion-header > .toolbar.statusbar-padding:first-child ion-segment,
  .ios .modal-wrapper > .ion-page > ion-header > .toolbar.statusbar-padding:first-child ion-title {
    padding-top: 20px;
    padding-top: constant(safe-area-inset-top);
    padding-top: env(safe-area-inset-top);
    height: calc(44px + 20px);
    height: calc(44px + constant(safe-area-inset-top));
    height: calc(44px + env(safe-area-inset-top));
    min-height: calc(44px + 20px);
    min-height: calc(44px + constant(safe-area-inset-top));
    min-height: calc(44px + env(safe-area-inset-top));
  }
}

.ios .tabs:not(.tabs-ios[tabsPlacement=top]) .tabbar {
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}

.ios ion-footer .toolbar:last-child {
  padding-bottom: calc(constant(safe-area-inset-bottom) + 4px);
  padding-bottom: calc(env(safe-area-inset-bottom) + 4px);
  min-height: calc(44px + constant(safe-area-inset-bottom));
  min-height: calc(44px + env(safe-area-inset-bottom));
}

.ios .tabs:not(.tabs-ios[tabsPlacement='top']) ion-footer .toolbar:last-child {
  padding-bottom: 4px;
  min-height: 44px;
}

.md ion-nav > .ion-page > .toolbar.statusbar-padding:first-child,
.md ion-nav > .ion-page > ion-header > .toolbar.statusbar-padding:first-child,
.md ion-tab > .ion-page > .toolbar.statusbar-padding:first-child,
.md ion-tab > .ion-page > ion-header > .toolbar.statusbar-padding:first-child,
.md ion-tabs > .ion-page.tab-subpage > ion-header > .toolbar.statusbar-padding:first-child,
.md ion-menu > .menu-inner > .toolbar.statusbar-padding:first-child,
.md ion-menu > .menu-inner > ion-header > .toolbar.statusbar-padding:first-child {
  padding-top: calc(20px + 4px);
  padding-top: calc(constant(safe-area-inset-top) + 4px);
  padding-top: calc(env(safe-area-inset-top) + 4px);
  min-height: calc(56px + 20px);
  min-height: calc(56px + constant(safe-area-inset-top));
  min-height: calc(56px + env(safe-area-inset-top));
}

.md ion-nav > .ion-page > ion-content.statusbar-padding:first-child .scroll-content,
.md ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content,
.md ion-tab > .ion-page > ion-content.statusbar-padding:first-child .scroll-content,
.md ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content,
.md ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child .scroll-content,
.md ion-menu > .menu-inner > ion-content.statusbar-padding:first-child .scroll-content,
.md ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child .scroll-content {
  padding-top: 20px;
  padding-top: constant(safe-area-inset-top);
  padding-top: env(safe-area-inset-top);
}

.md ion-nav > .ion-page > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.md ion-nav > .ion-page > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.md ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.md ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.md ion-tab > .ion-page > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.md ion-tab > .ion-page > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.md ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.md ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.md ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.md ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.md ion-menu > .menu-inner > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.md ion-menu > .menu-inner > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.md ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.md ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content {
  padding-top: calc(16px + 20px);
  padding-top: constant(safe-area-inset-top);
  padding-top: env(safe-area-inset-top);
}

@media only screen and (max-width: 767px) {
  .md .modal-wrapper > .ion-page > ion-header > .toolbar.statusbar-padding:first-child {
    padding-top: calc(20px + 4px);
    padding-top: calc(constant(safe-area-inset-top) + 4px);
    padding-top: calc(env(safe-area-inset-top) + 4px);
    min-height: calc(56px + 20px);
    min-height: calc(56px + constant(safe-area-inset-top));
    min-height: calc(56px + env(safe-area-inset-top));
  }
  .md .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content {
    padding-top: 20px;
    padding-top: constant(safe-area-inset-top);
    padding-top: env(safe-area-inset-top);
  }
  .md .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
  .md .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content {
    padding-top: calc(16px + 20px);
    padding-top: constant(safe-area-inset-top);
    padding-top: env(safe-area-inset-top);
  }
}

.md .tabs:not(.tabs-ios[tabsPlacement=top]) .tabbar {
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}

.md ion-footer .toolbar:last-child {
  padding-bottom: calc(constant(safe-area-inset-bottom) + 4px);
  padding-bottom: calc(env(safe-area-inset-bottom) + 4px);
  min-height: calc(56px + constant(safe-area-inset-bottom));
  min-height: calc(56px + env(safe-area-inset-bottom));
}

.md .tabs:not(.tabs-ios[tabsPlacement='top']) ion-footer .toolbar:last-child {
  padding-bottom: 4px;
  min-height: 56px;
}

.wp ion-nav > .ion-page > .toolbar.statusbar-padding:first-child,
.wp ion-nav > .ion-page > ion-header > .toolbar.statusbar-padding:first-child,
.wp ion-tab > .ion-page > .toolbar.statusbar-padding:first-child,
.wp ion-tab > .ion-page > ion-header > .toolbar.statusbar-padding:first-child,
.wp ion-tabs > .ion-page.tab-subpage > ion-header > .toolbar.statusbar-padding:first-child,
.wp ion-menu > .menu-inner > .toolbar.statusbar-padding:first-child,
.wp ion-menu > .menu-inner > ion-header > .toolbar.statusbar-padding:first-child {
  padding-top: calc(20px + 4px);
  padding-top: calc(constant(safe-area-inset-top) + 4px);
  padding-top: calc(env(safe-area-inset-top) + 4px);
  min-height: calc(46px + 20px);
  min-height: calc(46px + constant(safe-area-inset-top));
  min-height: calc(46px + env(safe-area-inset-top));
}

.wp ion-nav > .ion-page > ion-content.statusbar-padding:first-child .scroll-content,
.wp ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content,
.wp ion-tab > .ion-page > ion-content.statusbar-padding:first-child .scroll-content,
.wp ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content,
.wp ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child .scroll-content,
.wp ion-menu > .menu-inner > ion-content.statusbar-padding:first-child .scroll-content,
.wp ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child .scroll-content {
  padding-top: 20px;
  padding-top: constant(safe-area-inset-top);
  padding-top: env(safe-area-inset-top);
}

.wp ion-nav > .ion-page > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.wp ion-nav > .ion-page > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.wp ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.wp ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.wp ion-tab > .ion-page > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.wp ion-tab > .ion-page > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.wp ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.wp ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.wp ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.wp ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.wp ion-menu > .menu-inner > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.wp ion-menu > .menu-inner > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
.wp ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
.wp ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content {
  padding-top: calc(16px + 20px);
  padding-top: constant(safe-area-inset-top);
  padding-top: env(safe-area-inset-top);
}

@media only screen and (max-width: 767px) {
  .wp .modal-wrapper > .ion-page > ion-header > .toolbar.statusbar-padding:first-child {
    padding-top: calc(20px + 4px);
    padding-top: calc(constant(safe-area-inset-top) + 4px);
    padding-top: calc(env(safe-area-inset-top) + 4px);
    min-height: calc(46px + 20px);
    min-height: calc(46px + constant(safe-area-inset-top));
    min-height: calc(46px + env(safe-area-inset-top));
  }
  .wp .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content {
    padding-top: 20px;
    padding-top: constant(safe-area-inset-top);
    padding-top: env(safe-area-inset-top);
  }
  .wp .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
  .wp .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content {
    padding-top: calc(16px + 20px);
    padding-top: constant(safe-area-inset-top);
    padding-top: env(safe-area-inset-top);
  }
}

.wp .tabs:not(.tabs-ios[tabsPlacement=top]) .tabbar {
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}

.wp ion-footer .toolbar:last-child {
  padding-bottom: calc(constant(safe-area-inset-bottom) + 4px);
  padding-bottom: calc(env(safe-area-inset-bottom) + 4px);
  min-height: calc(46px + constant(safe-area-inset-bottom));
  min-height: calc(46px + env(safe-area-inset-bottom));
}

.wp .tabs:not(.tabs-ios[tabsPlacement='top']) ion-footer .toolbar:last-child {
  padding-bottom: 4px;
  min-height: 46px;
}

/*
 * Returns a css variable reference to the named theme font value
 */
/*
* Convert a color value to rgb components suitable for the css rgb and rgba functions
* Note: Deprecated now that styles are externalised - this is only required to make colors in theme files easier to read
*/
/*
 * Returns a css rgba function call for the specified rgb value and alpha combination.
 */
/*
 * Returns a css variable reference to the named theme color rgb value (without an rgba function call)
 */
/*
* Returns the named color as an rgba() css function call.
*/
/*
 * Returns a pair-foreground color set by apply-theme-color-pair() as an rgba() css function call.
*  If $alpha is specified, it is applied to --theme-color-pair-foreground,
*  If $alpha is not specified --theme-color-pair-foreground-color, is used, which will reflect the alpha specified to apply-theme-color-pair() as $foreground-alpha.
*  If $variant is specified, --theme-color-pair-<variant>-foreground or --theme-color-pair-<variant>-foreground-color are used instead.
 */
/*
 * Returns a pair-background color set by apply-theme-color-pair() or apply-theme-color-pair-background()as an rgba() css function call.
*  If $alpha is specified, it is applied to --theme-color-pair-background,
*  If $alpha is not specified --theme-color-pair-background-color, is used, which will reflect the alpha specified to apply-theme-color-pair() as $background-alpha.
 */
/*
* Applies the specified foreground color
*/
/*
* Applies the specified color for borders
*/
/*
* Applies the specified background color.
*/
/*
* Applies the named theme foreground color
*/
/*
* Applies the named theme foreground color for borders
*/
/*
* Applies the foreground of the named theme color-pair
* The paired foreground colors are also placed into css variables with and without alpha applied,
* and can be explicitly re-used for descendant elements.
*/
/*
* Applies the background of the named theme color-pair
* The paired background color is also placed into css variables with and without alpha applied,
* and can be explicitly re-used for descendant elements.
*/
/*
* Applies the background and foreground colors for a named theme color-pair.
*/
/*
* Applies a pair-foreground color set by apply-theme-color-pair() or apply-theme-color-pair-foreground()
*/
/*
* Applies a pair-background color set by apply-theme-color-pair() or apply-theme-color-pair-background()
*/
/*
 * Overrides the css variables for one theme color-pair with those of another (which may or may not be populated).
 *
 * This is a bit complex...
 *
 * Simplistically, we could set the target css variables to reference the overriding variables, and rely upon css cascading
 * to default the value back to the original if the overrides ar not set.
 * e.g.
 *   on <html>:      --woa-theme-color1: blue;
 *   on   <div 1>:   --woa-theme-color-1: var(--woa-theme-color-2);   (where --woa-theme-color-2 is NOT populated)
 *   on     <div 2>: --woa-theme-color-1: var(--woa-theme-color-3);   (where --woa-theme-color-3 is NOT populated)
 * Considering only <html> and <div 1> for the moment, if --woa-theme-color-2 is not set, we might expect --woa-theme-color-1
 * to evaluate to blue on <div 1>.
 * However, there are two issues with this:
 * 1. It does not seem to work as expected. --woa-theme-color-2 appears to be unset on <div 1>;
 * 2. If it did work, it would not produce the results we actually need.
 *    On <div 2>, if --woa-theme-color-3 was not populated but --woa-theme-color-2 was,
 *    then --woa-theme-color-1 would inherit the value of --woa-theme-color-2.
 *    However, we really only want to override colors based on the background on which they appear,
 *    not the background of some higher-level element.
 *
 * Instead, we populate "--ovd" variables, and rely upon the use of theme-rgb() to resolve the color reference
 * against the override variables first, and use the primary theme variable as a fallback.
 * So a reference for theme-color-1, as generated by theme-rgb() would take the form:
 *   var(--ovd-theme-color-1, var(--woa-theme-color-1));
 * And here, to override theme-color-1 with theme-color-2, we would set:
 *   --ovd-theme-color-1: var(--woa-theme-color-2);
 * So if --woa-theme-color-2 were not set, the color reference would resolve to its primary value.
 *
 * Now this is where things get odd. Despite earlier attempts at simple overrides not appearing to cascade as initially expected,
 * it has subsequently been observed that the settings for the --ovd override variables in fact ARE cascading.
 * So if we take this example:
 *   on <html>:      --woa-theme-color1: blue;
 *   on   <div 1>:   --ovd-theme-color-1: var(--woa-theme-color-2);   (where --woa-theme-color-2 is populated)
 *   on     <div 2>: --ovd-theme-color-1: var(--woa-theme-color-3);   (where --woa-theme-color-3 is NOT populated)
 * A reference to --woa-theme-color-1 is applied on <div 2> of the form
 *   var(--ovd-theme-color-1, var(--woa-theme-color-1));
 * We would expect to get the color blue since --ovd-theme-color-1 has been set to an empty value on <div 2>, and should therefore use
 * the specified fallback of var(--woa-theme-color-1).
 * Instead, what is happening is that the value of --ovd-theme-color-1 from the parent <div 1> is being used, so we get the value of
 * --woa-theme-color-2, an override for an parent element which, as stated above, is not relevant for <div 2> in our use case.
 *
 * It may be that the different behaviour between the two cases lies in the subtle difference between cascading a value versus cascading
 * from another variable reference (possibly due to the point at which the variable references are actually resolved).
 *
 * Regardless, in order to avoid the unwanted cascading effect, the override variable set here will now also provide a fallback
 * to the primary value:
 *   --ovd-theme-color-1: var(--woa-theme-color-2, var(--woa-theme-color-1));
 * The result is that if no override variable has been set (because no overriding context exists), the theme-rgb() reference
 * fallback will be used as normal, BUT if the override context does exist but is set to preference a color that itself is not populated
 * (i.e. an unspecified override), THEN the primary value of the color will be used directly, rather than a potentially cascaded value
 * for the override variable.
 */
/**
 * The following convenience mixins are used to apply certain standard color-pairs via a class.
 * This is primarily intended for use by the woa-background-image directive.
 * Normal usage should be to include the apply-theme-color-pair mixin directly via css.
 * Alternatively, one could use the directive to apply a local class to the element,
 * and include the mixins in css selected by that class.
 */
.theme-standard-page-color-pair {
  --theme-color-pair-background: var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-standard-page-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-standard-page--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-standard-page--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-standard-page--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-standard-page--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-standard-page--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-standard-page-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-standard-page-color-pair > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-standard-page-color-pair > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-standard-page-color-pair > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-standard-page-color-pair > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-standard-page-color-pair > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-standard-page-image-color-pair {
  --theme-color-pair-background: var(--ovd-theme-color-standard-page-image-pair-background, var(--woa-theme-color-standard-page-image-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-standard-page-image-pair-background, var(--woa-theme-color-standard-page-image-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-standard-page-image-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-standard-page-image--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-standard-page-image--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-standard-page-image--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-standard-page-image--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-standard-page-image--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-standard-page-image-pair-foreground, var(--woa-theme-color-standard-page-image-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-standard-page-image-pair-foreground, var(--woa-theme-color-standard-page-image-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-standard-page-image-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-standard-page-image-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-image-pair-foreground, var(--woa-theme-color-standard-page-image-pair-highlighted-foreground, var(--woa-theme-color-standard-page-image-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-standard-page-image-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-image-pair-foreground, var(--woa-theme-color-standard-page-image-pair-highlighted-foreground, var(--woa-theme-color-standard-page-image-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-standard-page-image-color-pair > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-standard-page-image-color-pair > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-standard-page-image-color-pair > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-standard-page-image-color-pair > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-standard-page-image-color-pair > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-standard-page-header-color-pair {
  --theme-color-pair-background: var(--ovd-theme-color-standard-page-header-pair-background, var(--woa-theme-color-standard-page-header-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-standard-page-header-pair-background, var(--woa-theme-color-standard-page-header-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-standard-page-header-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-standard-page-header--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-standard-page-header--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-standard-page-header--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-standard-page-header--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-standard-page-header--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-standard-page-header-pair-foreground, var(--woa-theme-color-standard-page-header-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-standard-page-header-pair-foreground, var(--woa-theme-color-standard-page-header-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-standard-page-header-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-standard-page-header-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-header-pair-foreground, var(--woa-theme-color-standard-page-header-pair-highlighted-foreground, var(--woa-theme-color-standard-page-header-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-standard-page-header-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-header-pair-foreground, var(--woa-theme-color-standard-page-header-pair-highlighted-foreground, var(--woa-theme-color-standard-page-header-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-standard-page-header-color-pair > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-standard-page-header-color-pair > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-standard-page-header-color-pair > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-standard-page-header-color-pair > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-standard-page-header-color-pair > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-panel-color-pair {
  --theme-color-pair-background: var(--ovd-theme-color-panel-pair-background, var(--woa-theme-color-panel-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-panel-pair-background, var(--woa-theme-color-panel-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-panel-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-panel--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-panel--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-panel--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-panel--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-panel--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-panel-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-panel-pair-highlighted-foreground, var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-highlighted-foreground, var(--woa-theme-color-panel-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-panel-pair-highlighted-foreground, var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-highlighted-foreground, var(--woa-theme-color-panel-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-panel-color-pair > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-panel-color-pair > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-panel-color-pair > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-panel-color-pair > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-panel-color-pair > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-brand-color-pair {
  --theme-color-pair-background: var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-brand-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-link-foreground: var(--woa-theme-color-brand--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-brand-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-brand-pair-highlighted-foreground, var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-brand-pair-highlighted-foreground, var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-brand-color-pair > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-brand-color-pair > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-brand-color-pair > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-brand-color-pair > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-brand-color-pair > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-danger-color-pair {
  --theme-color-pair-background: var(--ovd-theme-color-danger-pair-background, var(--woa-theme-color-danger-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-danger-pair-background, var(--woa-theme-color-danger-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-danger-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-danger--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-danger--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-danger--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-danger--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-danger--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-danger-pair-foreground, var(--woa-theme-color-danger-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-danger-pair-foreground, var(--woa-theme-color-danger-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-danger-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-danger-pair-highlighted-foreground, var(--ovd-theme-color-danger-pair-foreground, var(--woa-theme-color-danger-pair-highlighted-foreground, var(--woa-theme-color-danger-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-danger-pair-highlighted-foreground, var(--ovd-theme-color-danger-pair-foreground, var(--woa-theme-color-danger-pair-highlighted-foreground, var(--woa-theme-color-danger-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-danger-color-pair > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-danger-color-pair > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-danger-color-pair > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-danger-color-pair > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-danger-color-pair > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-panel-header-footer-color-pair {
  --theme-color-pair-background: var(--ovd-theme-color-panel-header-footer-pair-background, var(--woa-theme-color-panel-header-footer-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-background, var(--woa-theme-color-panel-header-footer-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-panel-header-footer-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-panel-header-footer--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-panel-header-footer--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-panel-header-footer--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-panel-header-footer--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-panel-header-footer--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-panel-header-footer-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-panel-header-footer-pair-highlighted-foreground, var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-highlighted-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-highlighted-foreground, var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-highlighted-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-panel-header-footer-color-pair > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-panel-header-footer-color-pair > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-panel-header-footer-color-pair > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-panel-header-footer-color-pair > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-panel-header-footer-color-pair > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-header-image-color-pair {
  --theme-color-pair-background: var(--ovd-theme-color-header-image-pair-background, var(--woa-theme-color-header-image-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-header-image-pair-background, var(--woa-theme-color-header-image-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-header-image-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-header-image--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-header-image--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-header-image--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-header-image--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-header-image--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-header-image-pair-foreground, var(--woa-theme-color-header-image-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-header-image-pair-foreground, var(--woa-theme-color-header-image-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-header-image-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-header-image-pair-highlighted-foreground, var(--ovd-theme-color-header-image-pair-foreground, var(--woa-theme-color-header-image-pair-highlighted-foreground, var(--woa-theme-color-header-image-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-header-image-pair-highlighted-foreground, var(--ovd-theme-color-header-image-pair-foreground, var(--woa-theme-color-header-image-pair-highlighted-foreground, var(--woa-theme-color-header-image-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-header-image-color-pair > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-header-image-color-pair > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-header-image-color-pair > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-header-image-color-pair > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-header-image-color-pair > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-success-message-color-pair {
  --theme-color-pair-background: var(--ovd-theme-color-success-message-pair-background, var(--woa-theme-color-success-message-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-success-message-pair-background, var(--woa-theme-color-success-message-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-success-message-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-success-message--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-success-message--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-success-message--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-success-message--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-success-message--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-success-message-pair-foreground, var(--woa-theme-color-success-message-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-success-message-pair-foreground, var(--woa-theme-color-success-message-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-success-message-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-success-message-pair-highlighted-foreground, var(--ovd-theme-color-success-message-pair-foreground, var(--woa-theme-color-success-message-pair-highlighted-foreground, var(--woa-theme-color-success-message-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-success-message-pair-highlighted-foreground, var(--ovd-theme-color-success-message-pair-foreground, var(--woa-theme-color-success-message-pair-highlighted-foreground, var(--woa-theme-color-success-message-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-success-message-color-pair > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-success-message-color-pair > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-success-message-color-pair > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-success-message-color-pair > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-success-message-color-pair > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.menu-page-image-color-pair {
  --theme-color-pair-background: var(--ovd-theme-color-menu-page-image-pair-background, var(--woa-theme-color-menu-page-image-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-menu-page-image-pair-background, var(--woa-theme-color-menu-page-image-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-menu-page-image-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-menu-page-image--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-menu-page-image--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-menu-page-image--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-menu-page-image--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-menu-page-image--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-menu-page-image-pair-foreground, var(--woa-theme-color-menu-page-image-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-menu-page-image-pair-foreground, var(--woa-theme-color-menu-page-image-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-menu-page-image-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-menu-page-image-pair-highlighted-foreground, var(--ovd-theme-color-menu-page-image-pair-foreground, var(--woa-theme-color-menu-page-image-pair-highlighted-foreground, var(--woa-theme-color-menu-page-image-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-menu-page-image-pair-highlighted-foreground, var(--ovd-theme-color-menu-page-image-pair-foreground, var(--woa-theme-color-menu-page-image-pair-highlighted-foreground, var(--woa-theme-color-menu-page-image-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.menu-page-image-color-pair > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.menu-page-image-color-pair > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.menu-page-image-color-pair > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.menu-page-image-color-pair > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.menu-page-image-color-pair > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

/********************************************************************************
  All themeable settings should appear here, and start with the '--woa-' prefix
********************************************************************************/
html {
  /*****************
     * PALETTE COLORS
     ****************/
  --woa-chewzie-orange: #ff6450;
  /**
     * The following provides default settings for a number of palette colors, based upon other palette colors.
     * Any palette color with a default value of "unset", is mandatory, and must be specified by the app-theme.
     *
     * A note on color naming:
     * Color-pairs are typically named based on the purpose of the background color.
     * So "standard-page" is the color that is commonly used for page backgrounds, and "panel" is used for panel backgrounds.
     * Foreground-only colors are obviously named according to the purpose of the foreground.
     */
  /**
     * standard-page
     *
     * This is the color-pair which is used predominantly throughout most of the pages and popups in the app.
     */
  --woa-theme-color-standard-page-pair-background: 255, 255, 255;
  --woa-theme-color-standard-page-pair-foreground: 255, 100, 80;
  /**
     * panel
     *
     * This color-pair is used throughout the app for content displayed in panels, in order distinguish it from the overall page background.
     * Use cases include:
     *   - default for the default-themed-tiled-menu-item color-pair;
     *   - side panel body on desktop home pages;
     *   - behind promo cards as the "peeled" area.
     *   - promo cards (without images).
     * The background is typically a shade or two lighter or darker than the standard-page background.
     * This color-pair is used to derive the auto-dark-panel and auto-light-panel colors below;
     *
     * foreground variants:
     *   - highlighted: used to display bolded text.
     */
  --woa-theme-color-panel-pair-background: none;
  --woa-theme-color-panel-pair-foreground: none;
  --woa-theme-color-panel-pair-highlighted-foreground: var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-foreground));
  /**
     * auto-dark-panel and auto-light-panel
     *
     * These two pseudo-theme-colors are generated automatically from the panel color-pair.
     * As the names suggest, these colors reflect the darker and lighter colors of the base color-pair.
     *
     * These colors are referenced in turn as the defaults for other color-pairs.
     * Currently, this is used only for feature-text.
     *
     * If so desired, these colors can be directly themed to override the automatic settings, however this is not typically necessary.
     */
  --woa-theme-color-auto-dark-panel: unset;
  --woa-theme-color-auto-light-panel: unset;
  /**
     * standard-page-header
     *
     * This color-pair is used for shading of headers, predominantly on mobile pages.
     * It is also used for:
     *   - the default for the panel-header-footer color-pair.
     * The background is typically dark where the standard-page background is light, or vice-versa.
     * However, it can also be the same or similar to the standard-page background if a less contrasting theme is desired (e.g. all white).
     */
  --woa-theme-color-standard-page-header-pair-background: unset;
  --woa-theme-color-standard-page-header-pair-foreground: unset;
  /**
     * panel-header-footer
     *
     * This color-pair is used for the contrasting header and footer sections of the side panels on the desktop home pages.
     * It is also used for:
     *   - the default for the header-image color-pair;
     *   - the desktop ordering page "image" header if no store image is defined;
     *   - the desktop ordering page footer.
     *   - the default loyalty card background;
     *   - the default for the loyalty card "placeholder" circles;
     * This color-pair can be themed directly, but the default behaviour is to use the standard-page-header color-pair.
     */
  --woa-theme-color-panel-header-footer-pair-background: var(--ovd-theme-color-standard-page-header-pair-background, var(--woa-theme-color-standard-page-header-pair-background));
  --woa-theme-color-panel-header-footer-pair-foreground: var(--ovd-theme-color-standard-page-header-pair-foreground, var(--woa-theme-color-standard-page-header-pair-foreground));
  --woa-theme-color-panel-header-footer-pair-background-shader: var(--ovd-theme-color-standard-page-header-pair-background-shader, var(--woa-theme-color-standard-page-header-pair-background-shader));
  --woa-theme-color-panel-header-footer-pair-foreground-shader: var(--ovd-theme-color-standard-page-header-pair-foreground-shader, var(--woa-theme-color-standard-page-header-pair-foreground-shader));
  /**
     * standard-page-image
     *
     * This color-pair is used as the 'tint' color behind the standard page background image which now appears only on the entry page.
     * The extent to which the background color is visible, and thereby lightens or darkens the image, depends upon the opacity of the image.
     * This color-pair can be themed directly, but the default behaviour is to use the standard-page color-pair.
     */
  --woa-theme-color-standard-page-image-pair-background: var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background));
  --woa-theme-color-standard-page-image-pair-foreground: var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground));
  --woa-theme-color-standard-page-image-pair-background-shader: var(--ovd-theme-color-standard-page-pair-background-shader, var(--woa-theme-color-standard-page-pair-background-shader));
  --woa-theme-color-standard-page-image-pair-foreground-shader: var(--ovd-theme-color-standard-page-pair-foreground-shader, var(--woa-theme-color-standard-page-pair-foreground-shader));
  /**
     * header-image
     *
     * This color-pair is used as the 'tint' color behind header images which appear in the following places:
     *   - on the mobile ordering page header;
     *   - on the desktop home page "image" header;
     *   - on the desktop store-selection page store tile headers.
     * Note that while different stores can have different images, the same color-pair will always be used.
     * The extent to which the background color is visible, and thereby lightens or darkens the image, depends upon the opacity of the image.
     * The foreground color is used for test displayed on the header images.
     * This color-pair can be themed directly, but the default behaviour is to use the page-header-footer color-pair.
     */
  --woa-theme-color-header-image-pair-background: var(--ovd-theme-color-standard-page-header-pair-background, var(--woa-theme-color-standard-page-header-pair-background));
  --woa-theme-color-header-image-pair-foreground: var(--ovd-theme-color-standard-page-header-pair-foreground, var(--woa-theme-color-standard-page-header-pair-foreground));
  --woa-theme-color-header-image-pair-background-shader: var(--ovd-theme-color-standard-page-header-pair-background-shader, var(--woa-theme-color-standard-page-header-pair-background-shader));
  --woa-theme-color-header-image-pair-foreground-shader: var(--ovd-theme-color-standard-page-header-pair-foreground-shader, var(--woa-theme-color-standard-page-header-pair-foreground-shader));
  /**
     * error-message
     *
     * This color-pair is used for content and footer inline error messages.
     */
  --woa-theme-color-error-message-pair-background: unset;
  --woa-theme-color-error-message-pair-foreground: unset;
  /**
     * warning-message
     *
     * This color-pair is used for content and footer inline warning messages.
     */
  --woa-theme-color-warning-message-pair-background: unset;
  --woa-theme-color-warning-message-pair-foreground: unset;
  /**
     * success-message
     *
     * This color-pair is used for content and footer inline success messages.
     */
  --woa-theme-color-success-message-pair-background: unset;
  --woa-theme-color-success-message-pair-foreground: unset;
  /**
     * info-message
     *
     * This color-pair is used for content and footer inline informational messages.
     */
  --woa-theme-color-info-message-pair-background: unset;
  --woa-theme-color-info-message-pair-foreground: unset;
  /**
     * menu-page-image
     *
     * This color-pair is used as the 'tint' color behind the desktop menu page background image.
     * The extent to which the background color is visible, and thereby lightens or darkens the image, depends upon the opacity of the image.
     * The foreground color is used for content on the desktop menu page when an image is applied.
     * This color-pair is set from the menu rather than the theme. The default behaviour is to use the standard-page color-pair.
     */
  --woa-theme-color-menu-page-image-pair-background: var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background));
  --woa-theme-color-menu-page-image-pair-foreground: var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground));
  --woa-theme-color-menu-page-image-pair-background-shader: var(--ovd-theme-color-standard-page-pair-background-shader, var(--woa-theme-color-standard-page-pair-background-shader));
  --woa-theme-color-menu-page-image-pair-foreground-shader: var(--ovd-theme-color-standard-page-pair-foreground-shader, var(--woa-theme-color-standard-page-pair-foreground-shader));
  /**
     * feature-text
     *
     * This color-pair is used for displaying text on deals, promos etc where text is displayed over images,
     * requiring use of a background shadow or shroud to improve readability.
     * The foreground color is used for the text, and the background is used for the shadow or shroud.
     * This color-pair can be themed directly, but the default behaviour is to use auto-dark-panel/auto-light-panel for
     * light text with a dark shadow.
     */
  --woa-theme-color-feature-text-pair-background: var(--ovd-theme-color-auto-dark-panel, var(--woa-theme-color-auto-dark-panel));
  --woa-theme-color-feature-text-pair-foreground: var(--ovd-theme-color-auto-light-panel, var(--woa-theme-color-auto-light-panel));
  /**
     * brand
     *
     * This is the primary brand color of the theme.
     * It is used throughout the application for buttons, headers, heading text etc.
     * It is defined as both as a foreground/border color, and as a color-pair, and while these can theoretically be themed
     * differently, this is not typically recommended.
     * Given its wide usage, it should be made accessible against the backgrounds of the following color-pairs:
     *   - standard-page;
     *   - standard-page-header;
     *   - standard-page-image;
     *   - panel;
     *   - panel-header-footer;
     *   - header-image;
     *
     * Note: To aid in ensuring accessibility, this color pair and foreground color are background-context-overridable.
     */
  --woa-theme-color-brand-pair-background: unset;
  --woa-theme-color-brand-pair-foreground: unset;
  --woa-theme-color-brand-foreground: var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background));
  /**
     * link
     *
     * This foreground-only color is used for tertiary action controls which are displayed in a "link" style.
     * It is used throughout the application, including directly on the desktop for navigation and refresh links.
     * Given its wide usage, it should be made accessible against the backgrounds of the following color-pairs:
     *   - standard-page,
     *   - standard-page-header;
     *   - standard-page-image;
     *   - panel;
     *   - panel-header-footer;
     *   - header-image;
     *   - menu-page;
     * It is preferred that this color be distinguishable from brand, although it will often be similar (e.g. a darker shade).
     *
     * Note: To aid in ensuring accessibility, this foreground color is background-context-overridable.
     */
  --woa-theme-color-link-foreground: unset;
  /**
     * danger
     *
     * This color-pair is used for controls or buttons which have a destructive or negative connotation.
     * It is also used for indicating error states on form input controls.
     * It is defined both as a foreground/border color, and as color-pair, and while these can theoretically be themed
     * differently, this is not typically recommended.
     * Given its wide usage, it should be made accessible against the backgrounds of the following color-pairs:
     *   - standard-page;
     *   - standard-page-header;
     *   - panel;
     *   - panel-header-footer;
     * A bright shade of red is typically used, unless this is too similar to the primary color, in which case
     * an alternative such as orange may be used.
     *
     * This color is NOT currently background-context-overridable.
     */
  --woa-theme-color-danger-pair-background: unset;
  --woa-theme-color-danger-pair-foreground: unset;
  --woa-theme-color-danger-foreground: var(--ovd-theme-color-danger-pair-background, var(--woa-theme-color-danger-pair-background));
  /**
     * success
     *
     * This foreground-only color is used in limited circumstances to indicate success of a process such as completing selections for a composite product.
     * In current use cases, an icon displayed in the danger color is replaced with one in this color when the process is finished.
     * A bright shade of green is typically used, even if this is similar to the primary color.
     */
  --woa-theme-color-success-foreground: unset;
  /**
     * Background context overriding
     * -----------------------------
     * Certain color-pairs and foreground-colors can be altered based on the background in which they appear.
     * This can simplify theme creation by adjusting colors for accessibility, or even allowing certain color-pair
     * backgrounds to share colors with foregrounds.
     * For example, If the brand color was green, I might want to use the same green as the panel-header-footer
     * color-pair, and change the brand color to black when used on that background.
     * As long as all code references and applies colors via the appropriate theming-support functions and mixins,
     * it is possible to define additional --woa-theme-color entries to support this kind of theming.
     *
     * At time of writing, the colors which can be overridden in this way are:
     *   - brand (color-pair and foreground)
     *   - link (foreground)
     * Support can be added for other colors by modifying the $overridable-color-pairs and $overridable-foreground-colors
     * lists defined in _theming-support.scss.
     *
     * The override css variables are formed by combining the context color-pair name with the name of the palette entry to be overridden.
     * For example, for the example above, the following could be defined:
     *   --woa-theme-color-panel-header-footer--brand-pair-background: 255, 255, 255
     *   --woa-theme-color-panel-header-footer--brand-pair-foreground: 0, 255, 0
     *   --woa-theme-color-panel-header-footer--brand-foreground: 255, 255, 255
     * This says that when used within the contract background, the brand color-pair is green on white,
     * and the brand foreground is white.
     *
     * Note the following about the above example:
     *   1. Even though the panel-header-footer color-pair defaults to the standard-page-header color-pair, the override variables
     *      must be set for panel-header-footer specifically. An override for the standard-page-header background would not be applied
     *      to brand colored-elements in the desktop panel header.
     *   2. Even though the brand foreground defaults to the brand-pair background, it must be explicitly overridden.
     *      This is applied dynamically when the palette colors are loaded.
     *
     * Both of these limitations relate to the cascading nature of css variables, and the point at which the defaults are defined.
     */
  --woa-theme-font-common: Inter, sans-serif;
  --woa-horizontal-logo-height: 40px;
  --woa-vertical-logo-width: 120px;
  --woa-button-tier1-width: 100%;
  --woa-button-tier1-height: 48px;
  --woa-button-tier1-side-padding: 12px;
  --woa-button-tier1-top-bottom-padding: 3px;
  --woa-button-tier1-font-size: 1.6rem;
  --woa-button-tier1-font-weight: 600;
  --woa-button-tier1-content-spacing: 8px;
  --woa-button-tier1-rounded-border-radius: 5px;
  --woa-button-tier1-high-outline-border-width: 4px;
  --woa-button-tier1-low-outline-border-width: 1px;
  --woa-button-tier1-icon-size: 24px;
  --woa-button-tier1-raised-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
  --woa-button-tier2-width: auto;
  --woa-button-tier2-min-width: auto;
  --woa-button-tier2-max-width: auto;
  --woa-button-tier2-height: 34px;
  --woa-button-tier2-side-padding: 12px;
  --woa-button-tier2-top-bottom-padding: 2px;
  --woa-button-tier2-font-size: 1.4rem;
  --woa-button-tier2-font-weight: 600;
  --woa-button-tier2-content-spacing: 5px;
  --woa-button-tier2-rounded-border-radius: 2px;
  --woa-button-tier2-high-outline-border-width: 2px;
  --woa-button-tier2-low-outline-border-width: 1px;
  --woa-button-tier2-icon-size: 18px;
  --woa-button-tier2-raised-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  --woa-field-border-radius: 3px;
  --woa-default-field-padding: 12px 15px 12px 10px;
  --woa-field-padding: var(--woa-default-field-padding);
  --woa-selection-field-icon-size: 13px;
  --woa-password-field-icon-size: 19px;
  --woa-page-open-background-alpha: 0.6;
  --woa-page-transition-period: 300ms;
  --woa-page-navbar-height: 63px;
  --woa-page-navbar-padding: 12px 16px;
  --woa-page-default-content-padding: 15px;
  --woa-page-default-footer-padding: 15px;
  --woa-full-page-pillarbox-width: 450px;
  --woa-modal-page-border-radius: 15px;
  --woa-side-modal-min-width: Min(330px, 85vw);
  --woa-side-modal-max-width: 85vw;
  --woa-modal-header-title-font-size: 1.9rem;
  --woa-desktop-pillarbox-width: 1200px;
  --woa-desktop-header-navbar-height: 63px;
  --woa-desktop-header-navbar-unscrolled-opacity: 0.1;
  --woa-desktop-header-navbar-hover-opacity: 0.3;
  --woa-desktop-header-navbar-scrolled-opacity: 0.99;
  --woa-desktop-header-navbar-scroll-transition-time: 1.0s;
  --woa-desktop-header-navbar-hover-transition-time: 0.5s;
  --woa-desktop-content-header-image-height: 200px;
  --woa-desktop-full-width-header-image-height: 300px;
  --woa-desktop-header-image-logo-opacity: 0.8;
  --woa-desktop-header-image-logo-shadow-blur-radius: 2px;
  --woa-desktop-titlebar-height: 44px;
  --woa-mobile-header-separate-image-height: 125px;
  --woa-mobile-header-separate-image-shadow-width: 8px;
  --woa-mobile-header-overlay-image-height: 230px;
  --woa-sidebar-min-width: 370px;
  --woa-sidebar-narrow-min-width: 330px;
  --woa-sidebar-max-width: 450px;
  --woa-sidebar-border-width: 0;
  --woa-sidebar-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.75);
  --woa-item-edit-summary-width: 360px;
  --woa-item-edit-summary-narrow-width: 300px;
  --woa-item-edit-summary-image-height: 300px;
  --woa-menu-item-image-width: 135px;
  --woa-menu-item-image-height: 115px;
  --woa-menu-item-image-border-radius: 5px;
  --woa-menu-item-image-fade-in-duration: 0.8s;
  --woa-menu-item-promo-opacity: 0.8;
  --woa-menu-item-promo-border-radius: 1000px;
  --woa-menu-item-price-strikeout-thickness: 2px;
  --woa-menu-item-unavailable-grayscale: 0.9;
  --woa-menu-text-item-max-width: 700px;
  --woa-menu-category-image-height: 145px;
  --woa-desktop-menu-category-selector-narrow-width: var(--woa-menu-category-image-height);
  --woa-desktop-menu-category-selector-width-with-images: 370px;
  --woa-desktop-menu-category-selector-width-without-images: 200px;
  --woa-promo-slide-aspect-ratio: (16 / 9);
  --woa-promo-slide-edge-width: 15px;
  --woa-promo-slide-side-margin: 15px;
  --woa-promo-slide-min-height: 162px;
  --woa-promo-label-font-scale: 0.65;
  --woa-promo-label-transform: none;
  --woa-promo-productName-font-scale: 0.6;
  --woa-promo-productName-transform: none;
  --woa-promo-productPrice-font-scale: 0.55;
  --woa-promo-productPrice-transform: none;
  --woa-promo-message-font-scale: 0.45;
  --woa-promo-message-transform: none;
  --woa-promo-faded-image-opacity: 0.5;
  --woa-promo-image-shade-opacity: 0.5;
  --woa-promo-shaded-image-text-shadow:
        -1px -1px 0 rgba(var(--ovd-theme-color-feature-text-pair-background, var(--woa-theme-color-feature-text-pair-background)), 0.5),
        1px -1px 0 rgba(var(--ovd-theme-color-feature-text-pair-background, var(--woa-theme-color-feature-text-pair-background)), 0.5),
        -1px 1px 0 rgba(var(--ovd-theme-color-feature-text-pair-background, var(--woa-theme-color-feature-text-pair-background)), 0.5),
        1px 1px 0 rgba(var(--ovd-theme-color-feature-text-pair-background, var(--woa-theme-color-feature-text-pair-background)), 0.5);
  --woa-promo-unshaded-image-text-shadow:
        -1px -1px 0 rgba(var(--ovd-theme-color-panel-pair-background, var(--woa-theme-color-panel-pair-background)), 0.5),
        1px -1px 0 rgba(var(--ovd-theme-color-panel-pair-background, var(--woa-theme-color-panel-pair-background)), 0.5),
        -1px 1px 0 rgba(var(--ovd-theme-color-panel-pair-background, var(--woa-theme-color-panel-pair-background)), 0.5),
        1px 1px 0 rgba(var(--ovd-theme-color-panel-pair-background, var(--woa-theme-color-panel-pair-background)), 0.5);
  --woa-loyalty-card-max-width: 280px;
  --woa-loyalty-card-aspect-ratio: 1.586;
  --woa-loyalty-card-border-radius: 10px;
  --woa-loyalty-card-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  --woa-default-themed-loyalty-card-body-padding: 5px;
  --woa-default-themed-loyalty-card-background-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-background, var(--woa-theme-color-panel-header-footer-pair-background)), 1);
  --woa-default-themed-loyalty-card-max-column-spec: 5 7 9 12 15;
  --woa-default-themed-loyalty-card-header-text-color: rgba(var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground)), 1);
  --woa-default-themed-loyalty-card-header-background-color: rgba(var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background)), 1);
  --woa-default-themed-loyalty-card-header-background-opacity: 0.75;
  --woa-default-themed-loyalty-card-footer-text-color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  --woa-default-themed-loyalty-card-footer-background-color: rgba(var(--ovd-theme-color-panel-pair-background, var(--woa-theme-color-panel-pair-background)), 1);
  --woa-default-themed-loyalty-card-footer-background-opacity: 0.75;
  --woa-default-themed-loyalty-card-placeholder-background-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-background, var(--woa-theme-color-panel-header-footer-pair-background)), 1);
  --woa-default-themed-loyalty-card-placeholder-border-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground)), 1);
  --woa-default-themed-loyalty-card-placeholder-opacity: 0.7;
  --woa-default-themed-loyalty-card-stamp-color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  --woa-default-themed-loyalty-card-stamp-opacity: 0.8;
  --woa-default-themed-loyalty-card-stamp-icon: star-solid;
  --woa-default-themed-loyalty-card-stamp-icon-scale: 1;
  --woa-default-themed-loyalty-card-stamp-icon-rotate-factor: 1;
  --woa-ticket-max-width: 280px;
  --woa-ticket-aspect-ratio: 1.586;
  --woa-ticket-border-radius: 10px;
  --woa-ticket-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  --woa-default-themed-ticket-body-padding: 5px;
  --woa-default-themed-ticket-background-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-background, var(--woa-theme-color-panel-header-footer-pair-background)), 1);
  --woa-default-themed-ticket-max-column-spec: 5 7 9 12 15;
  --woa-default-themed-ticket-header-text-color: rgba(var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground)), 1);
  --woa-default-themed-ticket-header-background-color: rgba(var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background)), 1);
  --woa-default-themed-ticket-header-background-opacity: 0.75;
  --woa-default-themed-ticket-footer-text-color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  --woa-default-themed-ticket-footer-background-color: rgba(var(--ovd-theme-color-panel-pair-background, var(--woa-theme-color-panel-pair-background)), 1);
  --woa-default-themed-ticket-footer-background-opacity: 0.75;
  --woa-default-themed-ticket-placeholder-background-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-background, var(--woa-theme-color-panel-header-footer-pair-background)), 1);
  --woa-default-themed-ticket-placeholder-border-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground)), 1);
  --woa-default-themed-ticket-placeholder-opacity: 0.7;
  --woa-default-themed-ticket-stamp-color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  --woa-default-themed-ticket-stamp-opacity: 1;
  --woa-default-themed-ticket-stamp-icon: md-square;
  --woa-default-themed-ticket-stamp-icon-scale: 0.6;
  --woa-default-themed-ticket-stamp-icon-rotate-factor: 1;
  --woa-store-details-desktop-image-width: 150px;
  --woa-store-details-desktop-image-height: 150px;
  --woa-store-details-mobile-image-width: 100px;
  --woa-store-details-mobile-image-height: 100px;
  --woa-store-details-header-max-width: 400px;
  --woa-store-details-map-width: 400px;
  --woa-store-details-map-height: 300px;
  --woa-order-item-image-width: 85px;
  --woa-order-item-image-height: 70px;
  --woa-order-item-image-border-radius: 7px;
  --woa-order-item-heading-icon-size: 18px;
  --woa-order-item-name-font-size: 17px;
  --woa-order-item-component-name-font-size: 15px;
  --woa-order-item-extras-font-size: 14px;
  --woa-order-item-qty-icon-size: 17px;
  --woa-order-item-qty-spacing: 8px;
  --woa-order-item-price-col-width: 50px;
  --woa-composite-item-image-width: 120px;
  --woa-composite-item-image-height: 90px;
  --woa-composite-item-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  --woa-extras-image-overlay-remove-opacity: 85%;
  --woa-desktop-extras-group-spacing: 10px;
  --woa-desktop-extras-heading-spacing: 0;
  --woa-desktop-extras-row-spacing-with-image: 8px;
  --woa-desktop-extras-row-spacing-without-image: 15px;
  --woa-desktop-extras-normal-image-size: 70px;
  --woa-desktop-extras-compact-image-size: 40px;
  --woa-desktop-extras-normal-selected-image-border-width: 3px;
  --woa-desktop-extras-compact-selected-image-border-width: 2px;
  --woa-desktop-extras-normal-control-size: 19px;
  --woa-desktop-extras-compact-control-size: 19px;
  --woa-desktop-extras-normal-image-overlay-remove-margin: 5px;
  --woa-desktop-extras-compact-image-overlay-remove-margin: 4px;
  --woa-mobile-extras-group-spacing: 10px;
  --woa-mobile-extras-heading-spacing: 0;
  --woa-mobile-extras-row-spacing-with-image: 8px;
  --woa-mobile-extras-row-spacing-without-image: 15px;
  --woa-mobile-extras-normal-image-size: 60px;
  --woa-mobile-extras-compact-image-size: 40px;
  --woa-mobile-extras-normal-selected-image-border-width: 3px;
  --woa-mobile-extras-compact-selected-image-border-width: 2px;
  --woa-mobile-extras-normal-control-size: 19px;
  --woa-mobile-extras-compact-control-size: 19px;
  --woa-mobile-extras-normal-image-overlay-remove-margin: 5px;
  --woa-mobile-extras-compact-image-overlay-remove-margin: 4px;
  --woa-tip-selection-panel-option-size: 65px;
  --woa-tip-selection-panel-option-percentage-size: 1.8rem;
  --woa-tip-selection-panel-inline-option-size: 55px;
  --woa-tip-selection-panel-inline-option-percentage-size: 1.8rem;
}

/*========== IONIC ==========*/
ion-app.app-root, ion-app.md {
  background-color: transparent !important;
}

/*===========================*/
html {
  --safe-area-inset-bottom: env(safe-area-inset-bottom);
  position: fixed;
  height: 100%;
  max-height: 100%;
  background: transparent !important;
  overscroll-behavior: none;
  overflow: hidden;
}

@supports (-ms-ime-align: auto) {
  html {
    --safe-area-inset-bottom: 0px;
  }
}

body {
  position: static;
  overscroll-behavior: none;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  background-color: var(--loadingBackground, #ffffff) !important;
  color: var(--loadingForeground, #000000);
}

body.scanning {
  background-color: transparent !important;
}

body.scanning .splash {
  display: none;
}

body.initialLoadComplete .splash {
  display: none;
}

* {
  font-family: var(--woa-theme-font-common), sans-serif;
}

*:focus {
  outline: none !important;
}

* button {
  white-space: nowrap;
}

*:not(button) {
  word-break: normal;
  overflow-wrap: break-word;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px var(--theme-color-pair-background-color) inset;
  -webkit-text-fill-color: var(--theme-color-pair-foreground-color);
}

input {
  padding: 0 !important;
}

body.keyboard-is-open {
  --keyboard-open-display-none: none;
}

@font-face {
  font-family: 'Code 128';
  src: url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAABGUABAAAAAAOeQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAReAAAABwAAAAcToeuSUdERUYAABFcAAAAHAAAAB4AJwB0T1MvMgAAAeAAAAAuAAAAVl8G62JjbWFwAAACMAAAANgAAAFk1u5xRWN2dCAAAAoAAAAAIwAAAFRC/hZ2ZnBnbQAAAwgAAAZwAAANbTkajnxnYXNwAAARVAAAAAgAAAAIAAAAEGdseWYAAAsEAAAD/wAAIbQgqAyaaGVhZAAAAWwAAAAzAAAANt1LesFoaGVhAAABoAAAAB4AAAAkC7kE7WhtdHgAAAIQAAAAHQAAAbjyYgYxbG9jYQAACiQAAADeAAAA3s25xT5tYXhwAAABwAAAACAAAAAgAUQAXm5hbWUAAA8EAAABoQAAArTlHp2EcG9zdAAAEKgAAACqAAAA/g3yDKBwcmVwAAAJeAAAAIgAAACYPHKNAHicY2BkYGBglJxVv0mvKJ7f5iuDPAcDCOzOPJoJovf99N8Jopm3sYMkOBiYQDwAPoIKMAB4nGNgZGBgv8DAwGDEUgckGZi3MTAyoII8ADqQArUAAAABAAAAbgAQAAQAAAAAAAIAEAAiAIsAAAA2ACoAAAAAeJxjYGRSY5zAwMqAFfDgkgCCkMiAIAYHBgWGc+wXgFwjENnAwMAIkgMAmUAFrwAAeJxjUmMIZQACJrVRPJgxixTjFziuY2AAAECqFHkAAAB4nGNgYGBmgGAZBkYGEIgD8hjBfBYGJyDNBqQZGZgY6hjO//8P5CswHP7///9jIAukigWIkxiSGVIYUhnSGNIZMhgyGbIYshlyGHJBpjKyMUCNBdJMQIKJARUAJZlZWNnYOTi5uHl4+fgFBIWERUTFxCUkpaRlZOXkFRSVlFVU1dQ1NLW0dXT19A0MjYxNTM3MLSytrG1s7ewdHJ2cXVzd3D08vbx9fP38AwKDgkNCw8IjIqOiY2Lj4hMSGZJT0jIYiAapeGWTcMoAvZ2ek8ucjSkDABpGJV54nK1WaXcTNxTVeElMyEZCQsu0VEY4pbHGUMoSwECYieOCuzgB2hko7Uzs0H2BbnTfF/xr3iTtOfQbP633SbZJIKGnPfUHvyvpSm/V05DQksSVsBZJ2bgrRpcaNHDpakhHXToYxTdk50pImVLyV0EURKulVtxikUREIlALa8IRQex75GiS8Q2PMlq2Jd1rUm7m6tpBZ2dQa9VooBYWKVuKlq+FRVV0O6GkZhNT85EraY7RXBTJ1LKTNh3EVHck6TCvH2bmvWYoYU0nkTTUDGPMSF4bYnSc0fHYjaMocmEtDQUtEsshiQaTwQrcBu1jtK+R3B0XLWbczYuVKGonETnlKFIkmuFqFHmU1RKac6UEvuSDZkh55dOA8uE5qLFHOa3giWyn+RVf8gr76Fqb+Z8yca1F2dkiFgPZkR0oSA/nSwjLUhg33WQ5ClVUjCTNXwqx5nIwuvo9ymsaDMprImNjO4Ch8hVypPyEMis3yGnBCsrPejSoJZs6DF9yYkXyCTQfR0yJF4ypBb02OCyCmj9b7Gdrh96cvSF7ilOGCQH8jmWtoxLOpImwcDkLJF0Y2bMS+VTJglWxc5vtdAC7hHvftY2bhrVxaG3nUBbl4apiNFv0aESnmUyN2smCR6MaRClpJLjI2wGUH9Eoj5YxGsXIozEcM25CIhGBFvTSWBDLTixpDEHzaFw3Lodprr0QHaCRVXXbo126sRQ2LtlJt4j5STM/oVMxHlwJ0/HxgJzEp7EyVzmqyU9H+G8Uf+RMIxPZUjNMOXjw1u8gv1A7OltU2NbDrl3nLbg8PBPBkzrsr2N2c6q2SWAqxKRCtAISZ9ccxzG5mtQiFZna5ZDGlS9rNIzi26lQcL6Mof7PiQlHjAnf78TpxECZ7pTd/QjTbvg2WfZoSqcOy2nEmeUenWZZPqbTHMvHdZpnuVenAyxdnQ6yfEKnBZZP6nQHy2e06sWdBmJEWMkKOdf5gng0u2Fxur940y6WNyzO9Bdv2cV9WtBI+T/49xT82we7JPxjWYR/LPfDP5YK/rE8AP9YluAfyxn4x/Jp+MfyIPxjqbWsmjL1NNROxDJAbuPApBJXT3OtVjR5ZfJwCw/hAtTlNllUyZziHvpIhsveH+6lNh0u1LjS6NBsmnemaiH6H3v57IbwbMc5ouUxY/lzOM1yag/rxGXd0haeF9N/CP4tnFVz6RFnin09injAga3txyVJ5jw6pit7qh4d/ycqCroF+gmkSEyXZEXWuREgtBc6nbqqo3OEeGPQaNEdjjvO1G5EeA4da5p2gZZDEy0ZWjokfNoRlFc7FSVltYMzT26myYo9j3LK77ElxdxL5pfC9YzMSnc9M5PdG/ncXwto1crsUIu42cGD1zTmHmcfoEwQtxVlg6SN5UyQuMAx97cH9yQwDV1fLSLHChoW+XEqBEYLzttCibKdNIfmgWTkUXD5h07FiexVyRiB/6btoPd1oRBO9WIhMZuf6cZCVRGm0/0lKpj1RVVnpZzFaj+E7IyNNInLYUVW8Xaz9d1JyXZ1U0EDJYwubPxMsEncqtq72VJc8mc2WBL00hXzt8SDLvdSfBb9o8JRXKRdQdh08ZLKalRJK85u3Ntzm1aX3eam1fkt9z5qx3lNc+VHKfQ1nSx3YBvXGJzaloqEVqiCHYFxmetzxkY+oSHlW9e5QBWuTwU3z56/gMaEN6a35V+WdP3/qmL2iftYVaFVbaiXYtS1s4YGPFfuRWURo5PlourGpetNPwR1hGDKXnt8g+CGT1boKG7589vMX8Bxzu5JOgZ8UdMJiAZHsYZwy0U8uL1ovaC5oKkB+KJeQwsDeAnAYfCyXnPMTBPAzCwxpwawzBwGl5jD4DJzGFzR6+iF54FeAXIMelWvO3YuBLJzEfMcRleZZ9A15hn0GvMMus46A4DXWSeDN1gng5h1MkiYswiwwhwGLeYwaDOHwaqxywe6Yexi9Kaxi9Fbxi5Gbxu7GL1j7GL0rrGL0XvGLkbvI8an+gn8wIzoLOCHFp4D/IiDbkbzGN3EW9vl3LKQOR8bjtPlfILNp/unfmpGZsdnFvKOzy1k+m2c0yV8YSETvrSQCV+BW+2f97UZGfo3FjL9WwuZ/h12dgnfW8iEHyxkwo/gnumf95MZGfrPFjL9FwuZ/it2dgm/WciE3y1kwh29viOX6X3R+mUqrFL2QPN274n2/gZfzNOqeJxj8N7BcCIoYiMjY1/kBsadHAwcDMkFGxnYnTYzyDIxaIFYW1WYBDiYOCBsDQYpNjCb02k3pwOLAwMTAyeQx+20m8GBAcpjZnDZqMLYERixwaEjAsxTA/F2cTQwMLI4dCSHgAUjgWCrGpMQBxOP1g7G/60bWHo3MjG4bGZNYWNwcQEA9h0mHnicY2DACYyA8AQ7BwgyMEBIIH0BxEblg1UCIVgOiAGRdgXJAAAAACgAKAAoAFAAeACgAMgA8AEYAUABaAGQAbYB3AICAioCUgJ6AqICygLyAxoDQANmA44DtgPeBAYELgRWBH4EpgTOBPQFGgVABWgFkAW4BeAGCAYwBlYGfAaiBsoG8gcaB0IHageSB7oH4ggICDAIWAh+CKYIzgj2CR4JRgluCZYJvAnsChwKTAp0CpwKxArsCxQLPAtkC4wLtAvcDAIMKAxQDHYMngzGDO4NFg08DWQNjA20DdwOBA4sDlIOeg6iDsoO+A8eD0QPbA+UD7oP4hAKEDIQWhCCEKoQ2gAAeJy1mb9rFEEUx2d27xdY6HkIooF4ShDMVbu9XJHO2AgBQXI2c73/hI2N12RTG/APSGMtZ+HYp/LviBBWWHyzO3u3+26W7L43htwlhOST9+b9mO97KwJxIoT83RciFENxMH8q4LtAhEsRBPK0J6V8Lo+FGA76PfiNcNwfPTiMx9PxwXQ8PZEfs8/yXfa1L/6KJ73vwvyteZPr4Sjn3RGP5w/7YSDl/Ve9IBBiIo7H5uPeYPjoMH42jkN4SXilSiVKyYVSw9HNTfHqyptWeHKmlHYAC941mbdy8lateYY1MV8BlF1EURJFDl57fze8NfA++OdpJ6+dvyi+gJILhOPki+GtODwc39QB7OrvxL6UUudxfBbHFVpXXyusJI61L5bGWUKNAdRDYo4sSfzG1M1rV7MO3ppjn7MmEJCec0mS5xyzR23suwb7XkZR6rSv/flJa6My/Q6ShRtflMc1XFfbqizsacH6QfLzfRyfu/0k85acPMa9CYIgFx7yLrR5/LPRPhrvrPH8uvkb2jzWzLybljVRnl8UZVfM89vwQFSoRl57f6s8Y9+Fk0e6e5L801Odwc3oi5W67WrvY1ljkRET+ZXtyhG6HnPrHXov9qWf7F3boJ/a+4v1zqKmKng9yvDW/vSTwqfHYAFIOVikHNZcu3BMfekdy2vQO4yYMvqSs8aYfXOnxjzwZIVndFkVyLIPmjrHvjL35KYmsHU0XiWXHRqqez82mmcGRca1DWlPfHQsX3EkKL0ztHkMQpblK9Y7KfPsMG9HaBPqdlLyZnni4bHC8v6Q9NivOM6+OOuCwIN4LBt5lLotxFiqNbtut3NP6pjft6wXlwN1NN83PPj5Sc4Vp4Yrxest9nIgjmot2tSI1nKGrnHLX1D5m6MAjZVd4cvToZ2pfDtSN/AX3WNnDXbvweh3jO+9Ghau7JnfyWt3fg4NMfO1pyt3RJz4OnY6DfbRd0TcPeJGQ9j8wx6TNUnJW9N5eAZz7//ax6Le1+i6un5n5RegRi2Xs2tKuZq/rLF81tT61h7Yhictb6W1CSu5p+BZGHgNs3A3f0v71h7sm2zPD65S3s65GotZYyxosZ1h4wj1H5b92IjgxlgQeDCgJ8zY1gRDwdtpoNSZBPonxDb74H5uR+tPEA7yvqnuKzQo4yvjmd3Ozuk/1NnFLbHooK2wuWtsLnWHUtSwnx1KwaLvUBz1htdsjJ1HzvNSH9ZXjScJ6kwcFbuYhjuSoH3yK9ekNO/stnNdPnRmV3huktfw9q2T9jE2Bm/NA3yHts15bzrZN7G8JX4oS7CvynPNxT3zFnza8O6K/fnesB+GBjnoBeGWCdTRcK8WZdsF5SrfMNQ278U/+AdINWJlAHicfZHPSsNAEMa/1foPtHrx4mnAS4U2NKkVqyAUDwGRIgUfIGnWNhBTSJNCPYpP4mP4AD6BB6+CRy8evfll3aogmGV3fjPZmfkyAbCJByh8PV3cWVZYxbPlBazg3fIiNtS25QpWVdvyElx1b3kZK+qVN1Vljd6tySpZYQuPlhdQxYvlRezgw3IFW2rX8hJCdWJ5GVX1ZHiduevqDT4yBEgR4QYaIQo4EHhocrUMd5FwCfqIMcQIOSbG07Sa2VOeESMNbh89XBqrWVOb2mXuBeuGpBgDeufGljfKCvCzII1udFg44jWbLUe6SSL9eDjKJ9LXE51NdSQN8XuX4utUZ0EiF0WYxAM5jwc6nbDEKcbUoFnbpfZDBsaRFtcjlUKHbJ9QSkZXD4skyP6mHNHWzYd/Jx+5da/5b/F5iuDMTLEwTWZmgh2+m09yH8fknOuKNwraMScZMyNnvMYZupx1m/uAZ4PNPLbsYI8tqEHOgrQIspl4nXo5o/1jyfOroMjHozjNpTZ1nbZz0G5oL+rs/Qj+Jdeo7TGe4dr8E3wCUAduyAAAAHicfcNnNgIAAADgTyGzyN6SWfbeJCOy997+OouTOIdnPFfSCXzvfQL+95qbJyAoX4FCIUWKlShVplxYRIVKUVWq1ahVp16DRk2atWjVpl1Mh7hOXbr16NUnIanfgEFDho0YNWbchElTps2YNWfegkVLlqWsSFu1Zt2GjE1bsrbt2LVn34FDR46dOHXm3IVLV67duHXn3oN3j568efblxYdPv779/AEnoRqTAAAAAQAB//8AD3icY2BkYGDgAWIxIGZiYATCXCBmAfMYAAhNAJwAAAABAAAAANQkmSYAAAAAu2nFaQAAAAC++U+5) format("woff");
  font-weight: normal;
  font-style: normal;
}

woa-apple-pay-button {
  position: relative;
  display: block;
  max-width: var(--woa-full-page-pillarbox-width);
  margin-left: var(--woa-button-margin-left, auto);
  margin-right: var(--woa-button-margin-right, auto);
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  width: var(--woa-button-tier1-width);
  height: var(--woa-button-tier1-height);
}

woa-apple-pay-button.disabled {
  pointer-events: none;
}

woa-apple-pay-button .face {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  overflow: hidden;
  border-radius: var(--woa-button-tier1-rounded-border-radius);
  background-color: var(--apple-pay-button-style);
}

woa-apple-pay-button .face #tyro-apple-pay-form-holder {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--woa-button-tier1-rounded-border-radius);
}

woa-apple-pay-button .face #tyro-apple-pay-form-holder .tyro-pay-wallet-buttons-wrapper {
  height: 100%;
}

woa-apple-pay-button .face .apple-pay-button {
  -webkit-appearance: -apple-pay-button;
  -apple-pay-button-type: var(--apple-pay-button-type);
  -apple-pay-button-style: var(--apple-pay-button-style);
  border-radius: var(--woa-button-tier1-rounded-border-radius);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  max-width: 100%;
  overflow: hidden;
}

woa-apple-pay-button .face-spinner {
  position: absolute;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  right: 15px;
  --woa-spinner-color: #777777;
}

woa-button {
  position: relative;
  display: block;
  max-width: var(--woa-full-page-pillarbox-width);
  min-height: var(--woa-button-min-height);
  margin-left: var(--woa-button-margin-left, auto);
  margin-right: var(--woa-button-margin-right, auto);
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  border-radius: var(--button-border-radius);
}

woa-button.disabled {
  cursor: default;
  pointer-events: none;
  --face-filter: grayscale(1);
}

woa-button.tier-first {
  width: var(--woa-button-tier1-width);
  height: var(--woa-button-tier1-height);
  --button-side-padding: var(--woa-button-tier1-side-padding);
  --button-top-bottom-padding: var(--woa-button-tier1-top-bottom-padding);
  --button-font-size: var(--woa-button-tier1-font-size);
  --button-font-weight: var(--woa-button-tier1-font-weight);
  --button-line-height: var(--woa-button-tier1-line-height, var(--woa-button-tier1-font-size));
  --button-content-main-spacing: var(--woa-button-tier1-content-spacing);
  --button-icon-size: var(--woa-button-tier1-icon-size);
  --button-rounded-border-radius: var(--woa-button-tier1-rounded-border-radius);
  --button-raised-box-shadow: var(--woa-button-tier1-raised-box-shadow);
}

woa-button.tier-first.prominence-high {
  --button-outline-border-width: var(--woa-button-tier1-high-outline-border-width);
}

woa-button.tier-first.prominence-low {
  --button-outline-border-width: var(--woa-button-tier1-low-outline-border-width);
}

woa-button.tier-second {
  width: var(--woa-button-tier2-width);
  min-width: var(--woa-button-tier2-min-width);
  max-width: var(--woa-button-tier2-max-width);
  height: var(--woa-button-tier2-height);
  --button-side-padding: var(--woa-button-tier2-side-padding);
  --button-top-bottom-padding: var(--woa-button-tier2-top-bottom-padding);
  --button-font-size: var(--woa-button-tier2-font-size);
  --button-font-weight: var(--woa-button-tier2-font-weight);
  --button-line-height: var(--woa-button-tier2-line-height, var(--woa-button-tier2-font-size));
  --button-content-main-spacing: var(--woa-button-tier2-content-spacing);
  --button-icon-size: var(--woa-button-tier2-icon-size);
  --button-rounded-border-radius: var(--woa-button-tier2-rounded-border-radius);
  --button-raised-box-shadow: var(--woa-button-tier2-raised-box-shadow);
}

woa-button.tier-second.prominence-high {
  --button-outline-border-width: var(--woa-button-tier2-high-outline-border-width);
}

woa-button.tier-second.prominence-low {
  --button-outline-border-width: var(--woa-button-tier2-low-outline-border-width);
}

woa-button.shape-square {
  --button-border-radius: 0;
}

woa-button.shape-rounded {
  --button-border-radius: var(--button-rounded-border-radius);
}

woa-button.shape-oval {
  --button-border-radius: 9999px;
}

woa-button.style-flat.disabled {
  opacity: 0.4;
}

woa-button.style-flat .face {
  padding-top: var(--button-top-bottom-padding);
  padding-bottom: var(--button-top-bottom-padding);
  padding-left: var(--button-side-padding);
  padding-right: var(--button-side-padding);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

woa-button.style-flat .face.hovered {
  opacity: 0.5;
}

@media (hover: hover) and (pointer: fine) {
  woa-button.style-flat .face:not(.native):hover {
    opacity: 0.5;
  }
}

woa-button.style-flat .face.touched {
  opacity: 0.75;
}

woa-button.style-flat.connotation-affirmative.prominence-high.tier-first .face {
  --theme-color-pair-background: var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-brand-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-link-foreground: var(--woa-theme-color-brand--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-brand-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-brand-pair-highlighted-foreground, var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-brand-pair-highlighted-foreground, var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-flat.connotation-affirmative.prominence-high.tier-first .face > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-flat.connotation-affirmative.prominence-high.tier-first .face > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-flat.connotation-affirmative.prominence-high.tier-first .face > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-flat.connotation-affirmative.prominence-high.tier-first .face > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-flat.connotation-affirmative.prominence-high.tier-first .face > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-flat.connotation-affirmative.prominence-high.tier-second .face {
  --theme-color-pair-background: var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-standard-page-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-standard-page--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-standard-page--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-standard-page--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-standard-page--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-standard-page--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-standard-page-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-flat.connotation-affirmative.prominence-high.tier-second .face > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-flat.connotation-affirmative.prominence-high.tier-second .face > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-flat.connotation-affirmative.prominence-high.tier-second .face > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-flat.connotation-affirmative.prominence-high.tier-second .face > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-flat.connotation-affirmative.prominence-high.tier-second .face > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-flat.connotation-affirmative.prominence-low .face {
  --theme-color-pair-background: var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-standard-page-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-standard-page--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-standard-page--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-standard-page--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-standard-page--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-standard-page--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-standard-page-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-flat.connotation-affirmative.prominence-low .face > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-flat.connotation-affirmative.prominence-low .face > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-flat.connotation-affirmative.prominence-low .face > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-flat.connotation-affirmative.prominence-low .face > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-flat.connotation-affirmative.prominence-low .face > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-flat.connotation-dissuasive .face {
  background-color: var(--theme-color-pair-foreground-color);
  color: var(--theme-color-pair-background-color);
  fill: var(--theme-color-pair-background-color);
  stroke: var(--theme-color-pair-background-color);
}

woa-button.style-flat.connotation-dissuasive .face > * {
  color: var(--theme-color-pair-background-color);
  fill: var(--theme-color-pair-background-color);
  stroke: var(--theme-color-pair-background-color);
}

woa-button.style-flat.connotation-dissuasive .face > * ::-webkit-input-placeholder {
  color: var(--theme-color-pair-background-color);
}

woa-button.style-flat.connotation-dissuasive .face > * ::-moz-placeholder {
  color: var(--theme-color-pair-background-color);
}

woa-button.style-flat.connotation-dissuasive .face > * ::-ms-input-placeholder {
  color: var(--theme-color-pair-background-color);
}

woa-button.style-flat.connotation-dissuasive .face > * ::placeholder {
  color: var(--theme-color-pair-background-color);
}

woa-button.style-flat.connotation-negative .face {
  --theme-color-pair-background: var(--ovd-theme-color-danger-pair-background, var(--woa-theme-color-danger-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-danger-pair-background, var(--woa-theme-color-danger-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-danger-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-danger--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-danger--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-danger--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-danger--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-danger--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-danger-pair-foreground, var(--woa-theme-color-danger-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-danger-pair-foreground, var(--woa-theme-color-danger-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-danger-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-danger-pair-highlighted-foreground, var(--ovd-theme-color-danger-pair-foreground, var(--woa-theme-color-danger-pair-highlighted-foreground, var(--woa-theme-color-danger-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-danger-pair-highlighted-foreground, var(--ovd-theme-color-danger-pair-foreground, var(--woa-theme-color-danger-pair-highlighted-foreground, var(--woa-theme-color-danger-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-flat.connotation-negative .face > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-flat.connotation-negative .face > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-flat.connotation-negative .face > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-flat.connotation-negative .face > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-flat.connotation-negative .face > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-flat.override-flat-background-color .face {
  background-color: var(--woa-button-flat-background-color) !important;
}

woa-button.style-flat.override-flat-foreground-color .face {
  color: var(--woa-button-flat-foreground-color) !important;
  fill: var(--woa-button-flat-foreground-color) !important;
  stroke: var(--woa-button-flat-foreground-color) !important;
}

woa-button.style-flat.override-flat-foreground-color .face > * {
  color: var(--woa-button-flat-foreground-color) !important;
  fill: var(--woa-button-flat-foreground-color) !important;
  stroke: var(--woa-button-flat-foreground-color) !important;
}

woa-button.style-flat.override-flat-foreground-color .face > * ::-webkit-input-placeholder {
  color: var(--woa-button-flat-foreground-color) !important;
}

woa-button.style-flat.override-flat-foreground-color .face > * ::-moz-placeholder {
  color: var(--woa-button-flat-foreground-color) !important;
}

woa-button.style-flat.override-flat-foreground-color .face > * ::-ms-input-placeholder {
  color: var(--woa-button-flat-foreground-color) !important;
}

woa-button.style-flat.override-flat-foreground-color .face > * ::placeholder {
  color: var(--woa-button-flat-foreground-color) !important;
}

woa-button.style-outline.disabled {
  opacity: 0.4;
}

woa-button.style-outline .face {
  background-color: transparent;
  border-style: solid;
  border-width: var(--button-outline-border-width);
  border-radius: var(--button-border-radius);
  padding-top: calc(var(--button-top-bottom-padding) - var(--button-outline-border-width));
  padding-bottom: calc(var(--button-top-bottom-padding) - var(--button-outline-border-width));
  padding-left: calc(var(--button-side-padding) - var(--button-outline-border-width));
  padding-right: calc(var(--button-side-padding) - var(--button-outline-border-width));
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

woa-button.style-outline .face.hovered {
  opacity: 0.5;
}

@media (hover: hover) and (pointer: fine) {
  woa-button.style-outline .face:not(.native):hover {
    opacity: 0.5;
  }
}

woa-button.style-outline .face.touched {
  opacity: 0.75;
}

woa-button.style-outline.connotation-affirmative .face {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  border-color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-button.style-outline.connotation-affirmative .face > * {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-button.style-outline.connotation-affirmative .face > * ::-webkit-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-button.style-outline.connotation-affirmative .face > * ::-moz-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-button.style-outline.connotation-affirmative .face > * ::-ms-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-button.style-outline.connotation-affirmative .face > * ::placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-button.style-outline.connotation-affirmative .face > * {
  border-color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-button.style-outline.connotation-dissuasive .face {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  border-color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-outline.connotation-dissuasive .face > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-outline.connotation-dissuasive .face > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-outline.connotation-dissuasive .face > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-outline.connotation-dissuasive .face > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-outline.connotation-dissuasive .face > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-outline.connotation-dissuasive .face > * {
  border-color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-outline.connotation-negative .face {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
  border-color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-button.style-outline.connotation-negative .face > * {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-button.style-outline.connotation-negative .face > * ::-webkit-input-placeholder {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-button.style-outline.connotation-negative .face > * ::-moz-placeholder {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-button.style-outline.connotation-negative .face > * ::-ms-input-placeholder {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-button.style-outline.connotation-negative .face > * ::placeholder {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-button.style-outline.connotation-negative .face > * {
  border-color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-button.style-outline.override-outline-background-color .face {
  background-color: var(--woa-button-outline-background-color) !important;
}

woa-button.style-outline.override-outline-foreground-color .face {
  color: var(--woa-button-outline-foreground-color) !important;
  fill: var(--woa-button-outline-foreground-color) !important;
  stroke: var(--woa-button-outline-foreground-color) !important;
}

woa-button.style-outline.override-outline-foreground-color .face > * {
  color: var(--woa-button-outline-foreground-color) !important;
  fill: var(--woa-button-outline-foreground-color) !important;
  stroke: var(--woa-button-outline-foreground-color) !important;
}

woa-button.style-outline.override-outline-foreground-color .face > * ::-webkit-input-placeholder {
  color: var(--woa-button-outline-foreground-color) !important;
}

woa-button.style-outline.override-outline-foreground-color .face > * ::-moz-placeholder {
  color: var(--woa-button-outline-foreground-color) !important;
}

woa-button.style-outline.override-outline-foreground-color .face > * ::-ms-input-placeholder {
  color: var(--woa-button-outline-foreground-color) !important;
}

woa-button.style-outline.override-outline-foreground-color .face > * ::placeholder {
  color: var(--woa-button-outline-foreground-color) !important;
}

woa-button.style-outline.override-outline-border-color .face {
  border-color: var(--woa-button-outline-border-color) !important;
}

woa-button.style-outline.override-outline-border-color .face > * {
  border-color: var(--woa-button-outline-border-color) !important;
}

woa-button.style-raised {
  -webkit-box-shadow: var(--button-raised-box-shadow);
  box-shadow: var(--button-raised-box-shadow);
  --face-box-shadow: var(--button-raised-box-shadow);
  --face-background-alpha: 1;
}

woa-button.style-raised.hovered {
  --face-background-alpha: 0.5;
}

@media (hover: hover) and (pointer: fine) {
  woa-button.style-raised:not(.native):hover {
    --face-background-alpha: 0.5;
  }
}

woa-button.style-raised.touched {
  --face-background-alpha: 0.75;
}

woa-button.style-raised .face {
  padding-top: var(--button-top-bottom-padding);
  padding-bottom: var(--button-top-bottom-padding);
  padding-left: var(--button-side-padding);
  padding-right: var(--button-side-padding);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

woa-button.style-raised.connotation-affirmative.prominence-high {
  --face-background-color: rgba(var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background)), 1);
}

woa-button.style-raised.connotation-affirmative.prominence-high .face {
  --theme-color-pair-background: var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background)), var(--face-background-alpha));
  --theme-color-pair-background-shader: var(--woa-theme-color-brand-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), var(--face-background-alpha));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-brand--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-brand-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-brand-pair-highlighted-foreground, var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-brand-pair-highlighted-foreground, var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-raised.connotation-affirmative.prominence-high .face > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-raised.connotation-affirmative.prominence-high .face > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-raised.connotation-affirmative.prominence-high .face > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-raised.connotation-affirmative.prominence-high .face > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-raised.connotation-affirmative.prominence-high .face > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-raised.connotation-affirmative.prominence-low {
  --face-background-color: rgba(var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background)), 1);
}

woa-button.style-raised.connotation-affirmative.prominence-low .face {
  --theme-color-pair-background: var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background)), var(--face-background-alpha));
  --theme-color-pair-background-shader: var(--woa-theme-color-standard-page-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), var(--face-background-alpha));
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-standard-page--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-standard-page--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-standard-page--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-standard-page--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-standard-page--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-standard-page-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-raised.connotation-affirmative.prominence-low .face > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-raised.connotation-affirmative.prominence-low .face > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-raised.connotation-affirmative.prominence-low .face > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-raised.connotation-affirmative.prominence-low .face > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-raised.connotation-affirmative.prominence-low .face > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-raised.connotation-dissuasive {
  --face-background-color: var(--theme-color-pair-background-color);
}

woa-button.style-raised.connotation-dissuasive .face {
  background-color: rgba(var(--theme-color-pair-background), var(--face-background-alpha));
  color: var(--theme-color-pair-foreground-color);
  fill: var(--theme-color-pair-foreground-color);
  stroke: var(--theme-color-pair-foreground-color);
}

woa-button.style-raised.connotation-dissuasive .face > * {
  color: var(--theme-color-pair-foreground-color);
  fill: var(--theme-color-pair-foreground-color);
  stroke: var(--theme-color-pair-foreground-color);
}

woa-button.style-raised.connotation-dissuasive .face > * ::-webkit-input-placeholder {
  color: var(--theme-color-pair-foreground-color);
}

woa-button.style-raised.connotation-dissuasive .face > * ::-moz-placeholder {
  color: var(--theme-color-pair-foreground-color);
}

woa-button.style-raised.connotation-dissuasive .face > * ::-ms-input-placeholder {
  color: var(--theme-color-pair-foreground-color);
}

woa-button.style-raised.connotation-dissuasive .face > * ::placeholder {
  color: var(--theme-color-pair-foreground-color);
}

woa-button.style-raised.connotation-negative {
  --face-background-color: rgba(var(--ovd-theme-color-danger-pair-background, var(--woa-theme-color-danger-pair-background)), 1);
}

woa-button.style-raised.connotation-negative .face {
  --theme-color-pair-background: var(--ovd-theme-color-danger-pair-background, var(--woa-theme-color-danger-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-danger-pair-background, var(--woa-theme-color-danger-pair-background)), var(--face-background-alpha));
  --theme-color-pair-background-shader: var(--woa-theme-color-danger-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), var(--face-background-alpha));
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-danger--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-danger--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-danger--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-danger--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-danger--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-danger-pair-foreground, var(--woa-theme-color-danger-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-danger-pair-foreground, var(--woa-theme-color-danger-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-danger-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-danger-pair-highlighted-foreground, var(--ovd-theme-color-danger-pair-foreground, var(--woa-theme-color-danger-pair-highlighted-foreground, var(--woa-theme-color-danger-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-danger-pair-highlighted-foreground, var(--ovd-theme-color-danger-pair-foreground, var(--woa-theme-color-danger-pair-highlighted-foreground, var(--woa-theme-color-danger-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-raised.connotation-negative .face > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-raised.connotation-negative .face > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-raised.connotation-negative .face > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-raised.connotation-negative .face > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-raised.connotation-negative .face > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-button.style-raised.override-raised-background-color .face {
  background-color: var(--woa-button-raised-background-color) !important;
  --face-background-color: var(--woa-button-raised-background-color) !important;
}

woa-button.style-raised.override-raised-foreground-color .face {
  color: var(--woa-button-raised-foreground-color) !important;
  fill: var(--woa-button-raised-foreground-color) !important;
  stroke: var(--woa-button-raised-foreground-color) !important;
}

woa-button.style-raised.override-raised-foreground-color .face > * {
  color: var(--woa-button-raised-foreground-color) !important;
  fill: var(--woa-button-raised-foreground-color) !important;
  stroke: var(--woa-button-raised-foreground-color) !important;
}

woa-button.style-raised.override-raised-foreground-color .face > * ::-webkit-input-placeholder {
  color: var(--woa-button-raised-foreground-color) !important;
}

woa-button.style-raised.override-raised-foreground-color .face > * ::-moz-placeholder {
  color: var(--woa-button-raised-foreground-color) !important;
}

woa-button.style-raised.override-raised-foreground-color .face > * ::-ms-input-placeholder {
  color: var(--woa-button-raised-foreground-color) !important;
}

woa-button.style-raised.override-raised-foreground-color .face > * ::placeholder {
  color: var(--woa-button-raised-foreground-color) !important;
}

woa-button.style-raised .underlay {
  fill: var(--face-background-color);
  -webkit-filter: url(#underlay-black-white-threshold);
  filter: url(#underlay-black-white-threshold);
  display: block;
  position: absolute;
  top: 1px;
  left: 1px;
  height: calc(100% - 2px);
  width: calc(100% - 2px);
  border-radius: var(--button-border-radius);
  z-index: -1;
}

woa-button.invisible {
  -webkit-box-shadow: none;
  box-shadow: none;
}

woa-button.invisible .underlay {
  visibility: hidden;
}

woa-button.invisible .face {
  background-color: transparent !important;
  color: transparent !important;
  fill: transparent !important;
  stroke: transparent !important;
  border-color: transparent !important;
}

woa-button.invisible .face > * {
  color: transparent !important;
  fill: transparent !important;
  stroke: transparent !important;
}

woa-button.invisible .face > * ::-webkit-input-placeholder {
  color: transparent !important;
}

woa-button.invisible .face > * ::-moz-placeholder {
  color: transparent !important;
}

woa-button.invisible .face > * ::-ms-input-placeholder {
  color: transparent !important;
}

woa-button.invisible .face > * ::placeholder {
  color: transparent !important;
}

woa-button.invisible .face > * {
  border-color: transparent !important;
}

woa-button.layout-horizontal {
  --content-main-flex-direction: row;
  --content-main-justify-content: stretch;
  --label-flex-grow: 1;
  --button-content-main-horizontal-spacing: var(--button-content-main-spacing);
  --button-content-main-horizontal-padding-end: 1px;
  --button-content-main-max-height: calc(var(--button-line-height) * 2 + 0.1rem);
}

woa-button.layout-vertical {
  --content-main-flex-direction: column;
  --content-main-justify-content: space-between;
  --label-flex-grow: 0;
  --button-content-main-vertical-spacing: var(--button-content-main-spacing);
  --button-content-main-vertical-padding-end: 1px;
}

woa-button .face {
  width: 100%;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  -webkit-box-shadow: var(--face-box-shadow);
  box-shadow: var(--face-box-shadow);
  -webkit-filter: var(--face-filter);
  filter: var(--face-filter);
}

woa-button .face .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  max-width: 100%;
  overflow: hidden;
  font-size: var(--button-font-size);
  font-weight: var(--button-font-weight);
  line-height: var(--button-line-height);
  text-align: center;
  white-space: var(--woa-button-white-space, nowrap);
}

woa-button .face .content-main {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: var(--content-main-flex-direction);
  -ms-flex-direction: var(--content-main-flex-direction);
  flex-direction: var(--content-main-flex-direction);
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: var(--content-main-justify-content);
  -webkit-justify-content: var(--content-main-justify-content);
  -ms-flex-pack: var(--content-main-justify-content);
  justify-content: var(--content-main-justify-content);
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 2px;
  padding-bottom: 2px;
  max-height: var(--button-content-main-max-height);
  max-width: 100%;
  min-width: 50px;
}

woa-button .face .content-main > *:not(:last-child) {
  margin-right: var(--button-content-main-horizontal-spacing, 0);
  margin-bottom: var(--button-content-main-vertical-spacing, 0);
}

woa-button .face .content-main > *:last-child {
  padding-right: var(--button-content-main-horizontal-padding-end, 0);
  padding-bottom: var(--button-content-main-vertical-padding-end, 0);
}

woa-button .face .content-main-icon {
  --woa-icon-size: var(--button-icon-size);
}

woa-button .face .content-main-label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-flex: var(--label-flex-grow);
  -webkit-flex-grow: var(--label-flex-grow);
  -ms-flex-positive: var(--label-flex-grow);
  flex-grow: var(--label-flex-grow);
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 100%;
  max-height: calc(var(--button-line-height) * 2 + 0.1rem);
  width: var(--woa-button-label-width, auto);
}

woa-button .face .content-main-label-text {
  display: inline-block;
  text-align: center;
  margin-bottom: var(--woa-button-text-margin-bottom, 0);
  /*
                        display: flex;
                        flex: {
                            direction: row;
                            shrink: 1;
                        }
                        align-items: stretch;
                        justify-content: center;
                        */
  max-height: calc(var(--button-line-height) * 2 + 0.1rem);
}

woa-button .face .content-main-label-text::first-letter {
  text-transform: var(--woa-button-label-first-letter-text-transform, capitalize);
}

woa-button .face-spinner {
  position: absolute;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  right: 15px;
}

woa-google-pay-button {
  position: relative;
  display: block;
  max-width: var(--woa-full-page-pillarbox-width);
  margin-left: var(--woa-button-margin-left, auto);
  margin-right: var(--woa-button-margin-right, auto);
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  width: var(--woa-button-tier1-width);
  height: var(--woa-button-tier1-height);
}

woa-google-pay-button.disabled {
  pointer-events: none;
}

woa-google-pay-button .face {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--woa-button-tier1-rounded-border-radius);
  background-color: var(--google-pay-button-color);
}

woa-google-pay-button .face #tyro-google-pay-form-holder {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  overflow: hidden;
  border-radius: var(--woa-button-tier1-rounded-border-radius);
}

woa-google-pay-button .face #tyro-google-pay-form-holder .tyro-pay-wallet-buttons-wrapper {
  height: 100%;
  padding: 0;
}

woa-google-pay-button .face #tyro-google-pay-form-holder .tyro-pay-wallet-buttons-wrapper .tyro-pay-wallet-buttons-cell {
  height: 100%;
}

woa-google-pay-button .face .google-pay-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  max-width: 100%;
  overflow: hidden;
}

woa-google-pay-button .face .google-pay-button .gpay-button {
  border-radius: var(--woa-button-tier1-rounded-border-radius);
}

woa-google-pay-button .face-spinner {
  position: absolute;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  right: 15px;
  --woa-spinner-color: #777777;
}

woa-icon-button {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  background-color: transparent;
  cursor: pointer;
}

woa-icon-button.disabled {
  cursor: default;
  pointer-events: none;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  opacity: 0.5;
}

woa-icon-button.unavailable {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  opacity: 0.5;
}

woa-icon-button .icon-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  --woa-icon-size: var(--woa-icon-button-icon-size, var(--default-icon-size));
}

woa-icon-button .icon-button.enlarged {
  padding: 15px;
  margin: -15px;
}

woa-icon-button .icon-button.circular {
  --theme-color-pair-background: var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-standard-page-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-standard-page--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-standard-page--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-standard-page--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-standard-page--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-standard-page--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-standard-page-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  padding: var(--woa-icon-button-padding, 4px);
  border-radius: 50%;
}

woa-icon-button .icon-button.circular > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-icon-button .icon-button.circular > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-icon-button .icon-button.circular > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-icon-button .icon-button.circular > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-icon-button .icon-button.circular > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

@media (hover: hover) {
  woa-icon-button .icon-button:hover {
    opacity: 0.5;
  }
}

woa-icon-button .icon-button.touched {
  opacity: 0.75;
}

woa-icon-button .icon-button-icon {
  fill: var(--woa-icon-button-icon-color);
}

woa-link {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: var(--woa-link-align-items, center);
  -webkit-align-items: var(--woa-link-align-items, center);
  -ms-flex-align: var(--woa-link-align-items, center);
  align-items: var(--woa-link-align-items, center);
  -webkit-box-pack: var(--woa-link-justify-content, center);
  -webkit-justify-content: var(--woa-link-justify-content, center);
  -ms-flex-pack: var(--woa-link-justify-content, center);
  justify-content: var(--woa-link-justify-content, center);
  overflow: hidden;
  font-size: var(--woa-link-font-size, 1.4rem);
  --line-height: calc(var(--woa-link-font-size, 1.4rem) + 0.5rem);
  line-height: var(--line-height);
}

woa-link .link-label {
  margin-right: 8px;
  white-space: nowrap;
  font-weight: var(--woa-link-label-font-weight, 600);
}

woa-link .link-action {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: var(--woa-link-font-weight, 400);
  white-space: var(--woa-link-white-space, nowrap);
  max-height: calc(var(--woa-link-max-lines, 1) * var(--line-height));
  overflow: hidden;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  word-break: normal;
  overflow-wrap: break-word;
  padding-left: 1px;
  padding-right: 1px;
  text-align: center;
  text-transform: var(--woa-link-action-text-transform, none);
}

woa-link .link-action.disabled {
  pointer-events: none;
}

woa-link .link-action:not(.disabled) {
  cursor: pointer;
}

woa-link .link-action:not(.disabled).negative {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-link .link-action:not(.disabled).negative > * {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-link .link-action:not(.disabled).negative > * ::-webkit-input-placeholder {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-link .link-action:not(.disabled).negative > * ::-moz-placeholder {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-link .link-action:not(.disabled).negative > * ::-ms-input-placeholder {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-link .link-action:not(.disabled).negative > * ::placeholder {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-link .link-action:not(.disabled):not(.negative):not(.plain) {
  color: rgba(var(--ovd-theme-color-link-foreground, var(--woa-theme-color-link-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-link-foreground, var(--woa-theme-color-link-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-link-foreground, var(--woa-theme-color-link-foreground)), 1);
}

woa-link .link-action:not(.disabled):not(.negative):not(.plain) > * {
  color: rgba(var(--ovd-theme-color-link-foreground, var(--woa-theme-color-link-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-link-foreground, var(--woa-theme-color-link-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-link-foreground, var(--woa-theme-color-link-foreground)), 1);
}

woa-link .link-action:not(.disabled):not(.negative):not(.plain) > * ::-webkit-input-placeholder {
  color: rgba(var(--ovd-theme-color-link-foreground, var(--woa-theme-color-link-foreground)), 1);
}

woa-link .link-action:not(.disabled):not(.negative):not(.plain) > * ::-moz-placeholder {
  color: rgba(var(--ovd-theme-color-link-foreground, var(--woa-theme-color-link-foreground)), 1);
}

woa-link .link-action:not(.disabled):not(.negative):not(.plain) > * ::-ms-input-placeholder {
  color: rgba(var(--ovd-theme-color-link-foreground, var(--woa-theme-color-link-foreground)), 1);
}

woa-link .link-action:not(.disabled):not(.negative):not(.plain) > * ::placeholder {
  color: rgba(var(--ovd-theme-color-link-foreground, var(--woa-theme-color-link-foreground)), 1);
}

woa-link .link-action:not(.disabled).underlined {
  border-bottom: 1px solid rgba(var(--ovd-theme-color-link-foreground, var(--woa-theme-color-link-foreground)), 0.8);
}

@media (hover: hover) {
  woa-link .link-action:not(.disabled):hover {
    opacity: 0.5;
  }
}

woa-link .link-action:not(.disabled).touched {
  opacity: 0.5;
}

woa-link .link-action:first-letter {
  text-transform: var(--woa-link-action-first-letter-text-transform, none);
}

woa-link .link-postscript {
  margin-left: 5px;
  white-space: normal;
}

woa-age-verification-page .age-indicator {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  border-color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  margin-bottom: 25px;
  width: 120px;
  height: 120px;
  font-size: 5.0rem;
  font-weight: 900;
  line-height: 5.0rem;
  border-width: 10px;
  border-style: solid;
  border-radius: 9999px;
}

woa-age-verification-page .age-indicator > * {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-age-verification-page .age-indicator > * ::-webkit-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-age-verification-page .age-indicator > * ::-moz-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-age-verification-page .age-indicator > * ::-ms-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-age-verification-page .age-indicator > * ::placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-age-verification-page .age-indicator > * {
  border-color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-age-verification-page .age-legal {
  --woa-legal-font-size: 1.6rem;
  --woa-legal-text-align: left;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-bottom: 10px;
}

woa-age-verification-page .age-disclaimer {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.7rem;
}

woa-customer-details-panel .customer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 10px;
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
  margin: 5px;
}

woa-customer-details-panel .customer-name {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

woa-customer-details-panel .customer-contact-details {
  margin-top: 5px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

woa-customer-orders-page {
  --woa-modal-page-min-height: 300px;
}

woa-customer-orders-page .order {
  margin-top: 5px;
  margin-bottom: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(var(--theme-color-pair-foreground), 0.15);
}

woa-customer-orders-page .order-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.0rem;
  white-space: nowrap;
}

woa-customer-orders-page .order-title.subtitle {
  font-size: 1.6rem;
  line-height: 1.8rem;
}

woa-customer-orders-page .order-details {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.7rem;
}

woa-customer-orders-page .order-actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

woa-name-edit-page .name-details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  --woa-page-content-flex-grow: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

woa-receipt {
  background-color: white;
  text-align: left;
}

woa-receipt receipt {
  display: block;
}

woa-receipt receipt:not(:last-child) {
  margin-bottom: 12px;
}

woa-receipt receipt * {
  font-family: monospace;
  font-size: 1.25rem;
}

woa-receipt receipt barcode {
  display: block;
  font-family: 'Code 128';
  font-size: 2.8rem;
  text-align: center;
}

woa-receipt receipt billname {
  display: block;
}

woa-receipt receipt bold {
  font-weight: 600;
}

woa-receipt receipt centre {
  display: block;
  text-align: center;
}

woa-receipt receipt custfirstname:not(:first-child), woa-receipt receipt custpostcode:not(:first-child), woa-receipt receipt custstreet:not(:first-child), woa-receipt receipt custsuburb:not(:first-child) {
  margin-left: 6px;
}

woa-receipt receipt eftposreceipt {
  display: block;
  white-space: pre;
}

woa-receipt receipt footer {
  display: block;
}

woa-receipt receipt headerbitmap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

woa-receipt receipt lineseparator {
  background-color: var(--theme-color-pair-foreground-color);
  display: block;
  height: 1px;
}

woa-receipt receipt header {
  display: block;
}

woa-receipt receipt itemheading, woa-receipt receipt currencyheading {
  display: inline-block;
}

woa-receipt receipt ordername {
  display: block;
}

woa-receipt receipt ordername * {
  font-size: 3.2rem;
  -webkit-transform: scale(1, 1.5);
  transform: scale(1, 1.5);
}

woa-receipt receipt receiptline {
  display: block;
  min-height: 1rem;
}

woa-receipt receipt receiptline:not(:last-child) {
  margin-bottom: 4px;
}

woa-receipt receipt receiptline categorytotal {
  display: block;
  text-align: right;
}

woa-receipt receipt receiptline componentamount {
  float: right;
}

woa-receipt receipt receiptline currencyheading {
  float: right;
}

woa-receipt receipt receiptline discountamount:not(:first-child) {
  margin-left: 6px;
}

woa-receipt receipt receiptline extraname {
  margin-left: 15px;
}

woa-receipt receipt receiptline extraamount {
  float: right;
}

woa-receipt receipt receiptline grandtotal {
  display: block;
  text-align: right;
}

woa-receipt receipt receiptline itemprice {
  float: right;
}

woa-receipt receipt receiptline membercard, woa-receipt receipt receiptline membername, woa-receipt receipt receiptline memberpoints {
  float: right;
}

woa-receipt receipt receiptline membercard:not(:first-child), woa-receipt receipt receiptline membername:not(:first-child), woa-receipt receipt receiptline memberpoints:not(:first-child) {
  margin-left: 6px;
}

woa-receipt receipt receiptline payment {
  display: block;
  text-align: right;
}

woa-receipt receipt receiptline qty {
  margin-left: 12px;
}

woa-receipt receipt receiptline surchargeamount {
  float: right;
}

woa-receipt receipt receiptline title {
  display: block;
}

woa-receipt receipt receiptline brandblock {
  white-space: pre;
}

woa-receipt receipt taxindicator {
  display: block;
}

woa-receipt receipt total {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

woa-sale-receipt-page woa-receipt {
  position: relative;
  max-width: 450px;
  margin: 5px auto;
  padding: 10px;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
}

woa-deal-code-entry-page {
  --woa-modal-page-min-height: 300px;
  --woa-page-content-flex-grow: 1;
}

woa-deal-code-entry-page .deals {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 10px;
  --woa-message-text-weight: 300;
}

woa-deal-code-entry-page .deals.divided {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(var(--theme-color-pair-foreground), 0.1);
  margin-bottom: 15px;
}

woa-deal-code-entry-page .deals-label {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  overflow: hidden;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6rem;
  text-align: left;
  margin-bottom: -3px;
}

woa-deal-code-entry-page .deals-message {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7rem;
}

woa-deal-summary-icon .deal-summary {
  background-color: transparent;
  position: relative;
  max-height: 25px;
  cursor: pointer;
}

woa-deal-summary-icon .deal-summary-icon {
  --woa-icon-size: var(--woa-deal-summary-icon-size, 20px);
}

woa-deal-summary-icon .deal-summary-count {
  --theme-color-pair-background: var(--ovd-theme-color-success-message-pair-background, var(--woa-theme-color-success-message-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-success-message-pair-background, var(--woa-theme-color-success-message-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-success-message-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-success-message--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-success-message--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-success-message--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-success-message--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-success-message--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-success-message-pair-foreground, var(--woa-theme-color-success-message-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-success-message-pair-foreground, var(--woa-theme-color-success-message-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-success-message-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-success-message-pair-highlighted-foreground, var(--ovd-theme-color-success-message-pair-foreground, var(--woa-theme-color-success-message-pair-highlighted-foreground, var(--woa-theme-color-success-message-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-success-message-pair-highlighted-foreground, var(--ovd-theme-color-success-message-pair-foreground, var(--woa-theme-color-success-message-pair-highlighted-foreground, var(--woa-theme-color-success-message-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  bottom: -5px;
  right: calc(var(--woa-deal-summary-icon-size, 20px) - 31px);
  height: 19px;
  width: 19px;
  margin-left: -8px;
  padding-top: 1px;
  padding-right: 1px;
  border: 1px solid rgba(var(--theme-color-pair-foreground), 0.1);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.2rem;
}

woa-deal-summary-icon .deal-summary-count > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-deal-summary-icon .deal-summary-count > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-deal-summary-icon .deal-summary-count > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-deal-summary-icon .deal-summary-count > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-deal-summary-icon .deal-summary-count > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-deals-page .deals {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

woa-deals-page .deals.touched {
  opacity: 0.85;
}

woa-deals-page .deals-heading {
  text-align: left;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 2.2rem;
  margin-bottom: 10px;
}

woa-deals-page .deals-heading:not(:first-child) {
  margin-top: 10px;
}

woa-deals-page .deals-deal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  height: calc(1px * var(--woa-element-width) / var(--woa-promo-slide-aspect-ratio));
  margin-bottom: 15px;
  border-radius: 6px;
  overflow: hidden;
}

woa-group-order-page {
  --woa-modal-header-title-text-transform: none;
  --woa-button-white-space: wrap;
}

woa-group-order-page .group-order-intro {
  text-align: center;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 15px;
  margin-right: 15px;
  max-height: 8.5rem;
  overflow: hidden;
}

woa-group-order-page .group-order-intro.no-details {
  margin-top: auto;
}

woa-group-order-page .group-order-intro-heading {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.8rem;
  margin-bottom: 1em;
}

woa-group-order-page .group-order-intro-heading > * {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-group-order-page .group-order-intro-heading > * ::-webkit-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-group-order-page .group-order-intro-heading > * ::-moz-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-group-order-page .group-order-intro-heading > * ::-ms-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-group-order-page .group-order-intro-heading > * ::placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-group-order-page .group-order-intro-body {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.7rem;
}

woa-group-order-page .participation-intro {
  text-align: center;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 15px;
  margin-right: 15px;
  overflow: hidden;
}

woa-group-order-page .participation-intro-heading {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.8rem;
  margin-bottom: 1em;
}

woa-group-order-page .participation-intro-heading > * {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-group-order-page .participation-intro-heading > * ::-webkit-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-group-order-page .participation-intro-heading > * ::-moz-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-group-order-page .participation-intro-heading > * ::-ms-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-group-order-page .participation-intro-heading > * ::placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-group-order-page .participation-intro-body {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.7rem;
}

woa-group-order-page .group-order-details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 15px;
  overflow: hidden;
  min-height: 0;
}

woa-group-order-page .group-order-details-name {
  width: 280px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

woa-group-order-page .group-order-details-instructions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  line-height: 1.7rem;
}

woa-group-order-page .group-order-details-instructions-heading {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 5px;
}

woa-group-order-page .group-order-details-instructions-heading > * {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-group-order-page .group-order-details-instructions-heading > * ::-webkit-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-group-order-page .group-order-details-instructions-heading > * ::-moz-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-group-order-page .group-order-details-instructions-heading > * ::-ms-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-group-order-page .group-order-details-instructions-heading > * ::placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

@media (hover: hover) {
  woa-group-order-page .group-order-details-instructions-heading:hover {
    opacity: 0.5;
  }
}

woa-group-order-page .group-order-details-instructions-heading.touched {
  opacity: 0.5;
}

woa-group-order-page .group-order-details-instructions-heading-label {
  font-size: 1.5rem;
  font-weight: 600;
}

woa-group-order-page .group-order-details-instructions-heading-toggle {
  margin-left: 10px;
}

woa-group-order-page .group-order-details-instructions-body {
  text-align: left;
  font-size: 1.4rem;
  font-weight: 400;
  margin-left: 25px;
  margin-right: 45px;
  -webkit-margin-before: 0;
  margin-block-start: 0;
  -webkit-margin-after: 0;
  margin-block-end: 0;
  max-height: 0;
  -webkit-transition: max-height 0.33s ease;
  transition: max-height 0.33s ease;
  overflow-x: hidden;
  overflow-y: auto;
}

woa-group-order-page .group-order-details-instructions-body.expanded {
  padding-bottom: 10px;
}

woa-group-order-page .group-order-details-instructions-body-item {
  margin-top: 10px;
}

woa-group-order-page .group-order-details-participants {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 25px;
  overflow: hidden;
}

woa-group-order-page .group-order-details-participants-heading {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  font-size: 1.9rem;
  font-weight: 600;
}

woa-group-order-page .group-order-details-participants-heading > * {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-group-order-page .group-order-details-participants-heading > * ::-webkit-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-group-order-page .group-order-details-participants-heading > * ::-moz-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-group-order-page .group-order-details-participants-heading > * ::-ms-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-group-order-page .group-order-details-participants-heading > * ::placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-group-order-page .group-order-details-participants-message {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.7rem;
  text-align: center;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 20px;
  margin-left: 30px;
  margin-right: 30px;
  max-height: 6.8rem;
  overflow: hidden;
}

woa-group-order-page .group-order-details-participants-requests {
  display: var(--keyboard-open-display-none, flex);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 10px;
  margin-left: 25px;
  margin-right: 25px;
  padding-left: 25px;
  padding-right: 25px;
  overflow-x: hidden;
  overflow-y: auto;
  border-top: 1px solid rgba(var(--theme-color-pair-foreground), 0.08);
  border-bottom: 1px solid rgba(var(--theme-color-pair-foreground), 0.08);
}

woa-group-order-page .group-order-details-participants-requests-request {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  overflow: hidden;
  margin-top: 3px;
  margin-bottom: 3px;
}

woa-group-order-page .group-order-details-participants-requests-request.removed {
  --opacity: 0.3;
}

woa-group-order-page .group-order-details-participants-requests-request-name {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  min-width: 0;
  font-size: 1.8rem;
  font-weight: 600;
  opacity: var(--opacity, 1);
}

woa-group-order-page .group-order-details-participants-requests-request-subtotal {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  margin-left: 10px;
  font-size: 1.6rem;
  font-weight: 600;
  opacity: var(--opacity, 1);
}

woa-group-order-page .group-order-details-participants-requests-request-remove {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 10px;
  --woa-icon-button-icon-size: 16px;
}

woa-group-order-page .participation-details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 15px;
  overflow: hidden;
  min-height: 0;
}

woa-group-order-page .participation-details-name {
  width: 280px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

woa-group-order-page .participation-details-targets {
  display: var(--keyboard-open-display-none, flex);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 25px;
  overflow: hidden;
}

woa-group-order-page .participation-details-targets-heading {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

woa-group-order-page .participation-details-targets-heading > * {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-group-order-page .participation-details-targets-heading > * ::-webkit-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-group-order-page .participation-details-targets-heading > * ::-moz-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-group-order-page .participation-details-targets-heading > * ::-ms-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-group-order-page .participation-details-targets-heading > * ::placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

@media (hover: hover) {
  woa-group-order-page .participation-details-targets-heading:hover {
    opacity: 0.5;
  }
}

woa-group-order-page .participation-details-targets-heading.touched {
  opacity: 0.5;
}

woa-group-order-page .participation-details-targets-heading-label {
  font-size: 1.9rem;
  font-weight: 600;
}

woa-group-order-page .participation-details-targets-heading-toggle {
  margin-left: 10px;
}

woa-group-order-page .participation-details-targets-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 10px;
  margin-left: 25px;
  margin-right: 25px;
  padding-left: 25px;
  padding-right: 25px;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 0;
  -webkit-transition: max-height 0.33s ease;
  transition: max-height 0.33s ease;
}

woa-group-order-page .participation-details-targets-list.expanded {
  border-top: 1px solid rgba(var(--theme-color-pair-foreground), 0.075);
  border-bottom: 1px solid rgba(var(--theme-color-pair-foreground), 0.075);
}

woa-group-order-page .participation-details-targets-list-target {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  overflow: hidden;
  margin-top: 3px;
  margin-bottom: 3px;
  cursor: pointer;
}

woa-group-order-page .participation-details-targets-list-target-selector {
  margin-left: 3px;
}

woa-group-order-page .participation-details-targets-list-target-name {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  min-width: 0;
  margin-left: 10px;
  font-size: 1.8rem;
  font-weight: 600;
  opacity: var(--opacity, 1);
}

woa-group-order-page .participation-link {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  margin-top: 10px;
}

woa-group-order-summary-icon .group-order-summary {
  background-color: transparent;
  position: relative;
  max-height: 25px;
  cursor: pointer;
}

@-webkit-keyframes flash {
  33% {
    -webkit-transform: scale3d(1.15, 1.15, 1.15);
    transform: scale3d(1.15, 1.15, 1.15);
  }
}

@keyframes flash {
  33% {
    -webkit-transform: scale3d(1.15, 1.15, 1.15);
    transform: scale3d(1.15, 1.15, 1.15);
  }
}

woa-group-order-summary-icon .group-order-summary.highlighted {
  -webkit-animation-name: flash;
  animation-name: flash;
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
}

woa-group-order-summary-icon .group-order-summary-icon {
  --woa-icon-size: var(--woa-group-order-summary-icon-size, 23px);
}

woa-group-order-summary-icon .group-order-summary-count {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  bottom: -5px;
  right: calc(var(--woa-group-order-summary-icon-size, 23px) - 35px);
  height: 17px;
  width: 17px;
  margin-left: -8px;
  padding-top: 2px;
  border: 1px solid rgba(var(--theme-color-pair-foreground), 0.1);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.2rem;
}

woa-identification-page {
  --woa-modal-page-min-height: 300px;
}

woa-identification-page .forgot-password-link {
  justify-self: flex-end;
}

woa-identification-page woa-link[woa-page-footer-control] {
  margin-bottom: 15px;
}

woa-member-card-panel .member {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 10px;
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
  margin: 5px;
}

woa-member-card-panel .member-name {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

woa-member-card-panel .member-contact-details {
  margin-top: 5px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

woa-member-card-panel .member-type {
  margin-top: 10px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

woa-member-card-panel .member-number {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 10px;
}

woa-member-card-panel .member-number-label {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.7rem;
  margin-right: 10px;
}

woa-member-card-panel .member-number-value {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7rem;
}

woa-member-card-panel .member-code {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 75px;
  margin-top: 10px;
}

woa-member-card-panel .member-points {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  margin-top: 10px;
}

woa-member-card-panel .member-points-balance {
  margin-right: 5px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.1rem;
}

woa-member-card-panel .member-points-label {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.7rem;
}

woa-profile-edit-page {
  --woa-text-area-initial-height: 99px;
}

woa-profile-edit-page .label {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.0rem;
  text-align: left;
  margin-bottom: 10px;
}

woa-profile-edit-page .links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-content: baseline;
  -ms-flex-line-pack: baseline;
  align-content: baseline;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 20px;
}

woa-profile-edit-page .links-edit-details {
  margin-left: auto;
}

woa-profile-edit-page woa-member-card-panel {
  margin-bottom: 10px;
}

woa-profile-edit-page woa-customer-details-panel {
  margin-bottom: 15px;
}

woa-date-field {
  display: block;
}

woa-date-field .date-field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  overflow: hidden;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.9rem;
  min-height: 21px;
  max-height: 21px;
}

woa-date-field .date-field-input {
  width: 100%;
  background-color: transparent;
  border: none;
}

woa-date-field .date-field-input::-webkit-calendar-picker-indicator, woa-date-field .date-field-input::-webkit-inner-spin-button {
  opacity: 0;
}

woa-date-field .date-field-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  font-style: italic;
  color: rgba(var(--theme-color-pair-foreground), 0.5);
  pointer-events: none;
}

woa-date-field .date-field-icon {
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  --woa-icon-size: 17px;
  margin-top: 2px;
  background-color: var(--theme-color-pair-background-color);
}

woa-decimal-field {
  display: block;
}

woa-decimal-field .decimal-field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  overflow: hidden;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.9rem;
  min-height: 21px;
  max-height: 21px;
}

woa-decimal-field .decimal-field-input {
  width: 100%;
  background-color: transparent;
  border: none;
}

woa-decimal-field .decimal-field-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  font-style: italic;
  color: rgba(var(--theme-color-pair-foreground), 0.5);
  pointer-events: none;
}

woa-email-field {
  display: block;
}

woa-email-field .email-field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  overflow: hidden;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.9rem;
  min-height: 21px;
  max-height: 21px;
}

woa-email-field .email-field-input {
  width: 100%;
  background-color: transparent;
  border: none;
}

woa-email-field .email-field-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  font-style: italic;
  color: rgba(var(--theme-color-pair-foreground), 0.5);
  pointer-events: none;
}

woa-field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

woa-field:not(.no-message) {
  margin-bottom: 5px;
  --body-last-child-margin-bottom: 25px;
}

woa-field .field-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

woa-field .field-header-label {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  overflow: hidden;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6rem;
  text-align: left;
}

woa-field .field-header-label.required:not(.readOnly):after {
  content: "*";
  margin-left: 5px;
}

woa-field .field-header-link {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 15px;
  margin-bottom: -3px;
}

woa-field .field-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: var(--woa-field-body-justify-content, space-between);
  -webkit-justify-content: var(--woa-field-body-justify-content, space-between);
  -ms-flex-pack: var(--woa-field-body-justify-content, space-between);
  justify-content: var(--woa-field-body-justify-content, space-between);
  position: relative;
  margin-top: 7px;
  padding: var(--woa-field-padding);
  border-radius: var(--woa-field-border-radius);
  cursor: pointer;
}

woa-field .field-body:last-child {
  margin-bottom: var(--body-last-child-margin-bottom, 0);
}

woa-field .field-body:not(:last-child) {
  margin-bottom: 5px;
}

woa-field .field-body:focus-within {
  border: 1px solid rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 0.5);
}

woa-field .field-body:not(focus-within) {
  border: 1px solid rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 0.3);
}

woa-field .field-body.disabled, woa-field .field-body.readOnly {
  background-color: rgba(var(--theme-color-pair-background-shader), 0.1);
  pointer-events: none;
}

woa-field .field-body.invalid:after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  height: calc(100% + 2px);
  width: calc(var(--woa-field-border-radius) * 2);
  border-left: 3px solid rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
  border-radius: var(--woa-field-border-radius);
  pointer-events: none;
}

woa-field .field-messages {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

woa-field .field-messages-message {
  margin-bottom: 5px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.5rem;
  text-align: left;
  --woa-spinner-size: 15px;
}

woa-field .field-messages-message.error {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
  font-weight: 600;
}

woa-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-top: 10px;
  --woa-page-content-flex-grow: 1;
}

woa-form form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

woa-field-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

woa-field-group .field-group-title {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-bottom: var(--woa-field-group-title-padding-bottom, 10px);
  border-bottom: var(--woa-field-group-title-border-width, 1px) solid rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 0.15);
  margin-bottom: 15px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 2.6rem;
}

woa-field-group .field-group-title > * {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-field-group .field-group-title > * ::-webkit-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-field-group .field-group-title > * ::-moz-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-field-group .field-group-title > * ::-ms-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-field-group .field-group-title > * ::placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-field-group .field-group-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: var(--woa-field-group-gap, 0);
}

woa-field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 0;
}

woa-password-field .password-field-value {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  overflow: hidden;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.9rem;
  min-height: 21px;
  max-height: 21px;
}

woa-password-field .password-field-value-input {
  width: 100%;
  background-color: transparent;
  border: none;
}

woa-password-field .password-field-value-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  font-style: italic;
  color: rgba(var(--theme-color-pair-foreground), 0.5);
  pointer-events: none;
}

woa-password-field .password-field-toggle {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 15px;
  opacity: 0.6;
  --woa-icon-button-icon-size: var(--woa-password-field-icon-size);
}

woa-phone-number-field {
  display: block;
}

woa-phone-number-field .phone-number-field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  overflow: hidden;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.9rem;
  min-height: 21px;
  max-height: 21px;
}

woa-phone-number-field .phone-number-field-input {
  width: 100%;
  background-color: transparent;
  border: none;
}

woa-phone-number-field .phone-number-field-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  font-style: italic;
  color: rgba(var(--theme-color-pair-foreground), 0.5);
  pointer-events: none;
}

woa-quantity-control {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

woa-quantity-control .quantity-field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 7px;
  height: var(--woa-quantity-control-field-height, var(--woa-button-tier1-height));
  border: 1px solid rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 0.3);
  --woa-icon-button-icon-size: 17px;
  --woa-icon-button-icon-color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-quantity-control .quantity-field:not(.transparent) {
  --theme-color-pair-background: var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-standard-page-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-standard-page--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-standard-page--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-standard-page--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-standard-page--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-standard-page--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-standard-page-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-quantity-control .quantity-field:not(.transparent) > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-quantity-control .quantity-field:not(.transparent) > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-quantity-control .quantity-field:not(.transparent) > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-quantity-control .quantity-field:not(.transparent) > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-quantity-control .quantity-field:not(.transparent) > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-quantity-control .quantity-field.rounded {
  border-radius: var(--woa-button-tier1-rounded-border-radius);
}

woa-quantity-control .quantity-field.oval {
  border-radius: 9999px;
}

woa-quantity-control .quantity-field-label {
  margin-left: 15px;
  font-size: 1.8rem;
  line-height: 2.1rem;
}

woa-quantity-control .quantity-field-value {
  color: var(--theme-color-pair-foreground-color);
  display: block;
  min-width: 25px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.8rem;
  text-align: center;
  margin-left: var(--woa-quantity-control-value-margin, 17px);
  margin-right: var(--woa-quantity-control-value-margin, 17px);
}

woa-radio-field {
  padding: 12px;
  border: 1px solid rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 0.3);
  border-radius: var(--woa-field-border-radius);
  --woa-selector-label-font-size: 1.6rem;
  --woa-selector-label-font-weight: 600;
  -webkit-transition: max-height 0.33s ease, min-height 0.33s ease;
  transition: max-height 0.33s ease, min-height 0.33s ease;
  overflow: clip;
}

woa-radio-field.disabled {
  background-color: rgba(var(--theme-color-pair-background-shader), 0.1);
  pointer-events: none;
}

woa-radio-field .selector-field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

woa-radio-field .selector-field-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

woa-radio-field .selector-field-body-decorator {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3px;
}

woa-radio-field .selector-field-action {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

woa-radio-field .selector-field-action > :first-child {
  margin-top: 10px;
}

woa-radio-field .selector-field-message {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin-top: 10px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6rem;
  text-align: left;
}

woa-radio-field .selector-field-details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

woa-radio-field .selector-field-details > :first-child {
  margin-top: 15px;
}

woa-selection-field .selection-field-value {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  overflow: hidden;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.9rem;
  min-height: 21px;
  max-height: 21px;
}

woa-selection-field .selection-field-value.empty {
  font-style: italic;
  color: rgba(var(--theme-color-pair-foreground), 0.5);
}

woa-selection-field .selection-field-toggle {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 15px;
  --woa-toggle-icon-size: var(--woa-selection-field-icon-size);
}

woa-options-page .options-option {
  margin-bottom: 15px;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
}

woa-options-page .options-option.none {
  font-style: italic;
  opacity: 50%;
}

woa-selector-control {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
}

woa-selector-control.touched {
  --touched-filter: drop-shadow(0 0 2px rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1));
}

woa-selector-control.disabled {
  pointer-events: none;
}

woa-selector-control .selector-control {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

woa-selector-control .selector-control.touched {
  --touched-filter: drop-shadow(0 0 2px rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1));
  --label-opacity: 0.6;
}

woa-selector-control .selector-control-body {
  border-color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  --control-size: var(--woa-selector-control-size, 20px);
}

woa-selector-control .selector-control-body > * {
  border-color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-selector-control .selector-control-body.disabled {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  opacity: 0.4;
}

woa-selector-control .selector-control-body:not(.disabled) {
  -webkit-filter: var(--touched-filter, none);
  filter: var(--touched-filter, none);
}

woa-selector-control .selector-control-body-indicator {
  min-width: var(--control-size);
  min-height: var(--control-size);
  border: 1px solid;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}

woa-selector-control .selector-control-body-indicator:not(.selected) {
  background-color: var(--woa-selector-background-color, transparent);
}

woa-selector-control .selector-control-body-indicator.selected {
  background-color: rgba(var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background)), 1);
  --indicator-display: block;
}

woa-selector-control .selector-control-body-indicator.radio {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
}

woa-selector-control .selector-control-body-indicator.radio:before {
  content: "";
  display: var(--indicator-display, none);
  width: calc(var(--control-size) - 12px);
  height: calc(var(--control-size) - 12px);
  background-color: rgba(var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground)), 1);
  border-radius: 50%;
}

woa-selector-control .selector-control-body-indicator.checkbox {
  border-radius: 3px;
}

woa-selector-control .selector-control-body-indicator.checkbox:before {
  content: "";
  display: var(--indicator-display, none);
  width: calc(var(--control-size) / 2 - 0.5px);
  height: calc(var(--control-size) / 4 - 0.5px);
  margin-top: 4px;
  margin-left: 3px;
  border-left: Max(1px, calc(var(--control-size) / 8)) solid rgba(var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground)), 1);
  border-bottom: Max(1px, calc(var(--control-size) / 8)) solid rgba(var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground)), 1);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

woa-selector-control .selector-control-label {
  margin-left: 10px;
  font-size: var(--woa-selector-label-font-size, 1.4rem);
  font-weight: var(--woa-selector-label-font-weight, 500);
  line-height: calc(var(--woa-selector-label-font-size, 1.4rem) + 2px);
  text-align: left;
  opacity: var(--label-opacity, 1);
}

woa-text-area-field {
  display: block;
  --woa-field-padding: 0;
}

woa-text-area-field .text-area-field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  overflow: hidden;
  resize: vertical;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.9rem;
  height: var(--woa-text-area-initial-height, 150px);
}

woa-text-area-field .text-area-field-input {
  width: 100%;
  background-color: transparent;
  border: none;
  padding: var(--woa-default-field-padding);
}

woa-text-area-field .text-area-field-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  padding: var(--woa-default-field-padding);
  font-style: italic;
  color: rgba(var(--theme-color-pair-foreground), 0.5);
  pointer-events: none;
}

woa-text-field {
  display: block;
}

woa-text-field .text-field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  overflow: hidden;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.9rem;
  min-height: 21px;
  max-height: 21px;
}

woa-text-field .text-field-input {
  width: 100%;
  background-color: transparent;
  border: none;
}

woa-text-field .text-field-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  font-style: italic;
  color: rgba(var(--theme-color-pair-foreground), 0.5);
  pointer-events: none;
}

woa-legal-page {
  --woa-page-content-padding: 0;
  --woa-page-content-flex-grow: 1;
  --woa-modal-page-min-height: 80vh;
}

woa-legal-page .legal-content {
  background-color: white;
  border: none;
  width: 100%;
  height: 100%;
  padding-left: 15px;
}

woa-legal-panel {
  display: var(--woa-legal-text-display, inline);
  text-align: var(--woa-legal-text-align, center);
  max-width: var(--woa-legal-max-width, 350px);
  margin-left: var(--woa-legal-side-margins, auto);
  margin-right: var(--woa-legal-side-margins, auto);
}

woa-legal-panel .legal-text {
  display: inline;
  font-size: var(--woa-legal-font-size, 1.4rem);
  font-weight: 400;
  line-height: calc(var(--woa-legal-font-size, 1.4rem) + 0.3rem);
  text-align: var(--woa-legal-text-align, center);
}

woa-loyalty-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: var(--woa-loyalty-card-width);
  max-width: var(--woa-loyalty-card-max-width);
}

woa-loyalty-card .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  overflow: hidden;
  position: relative;
}

woa-loyalty-card .content:not(.button) {
  height: calc(((1px * var(--woa-element-width)) + 2px) / var(--woa-loyalty-card-aspect-ratio));
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  border-right: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: var(--woa-loyalty-card-border-radius);
  -webkit-box-shadow: var(--woa-loyalty-card-box-shadow);
  box-shadow: var(--woa-loyalty-card-box-shadow);
  --details-justify-content: space-between;
  --placeholder-background-color: var(--themed-loyalty-card-placeholder-background-color);
  --placeholder-border-color: var(--themed-loyalty-card-placeholder-border-color);
  --placeholder-opacity: var(--themed-loyalty-card-placeholder-opacity);
  --stamp-color: var(--themed-loyalty-card-stamp-color);
  --stamp-opacity: var(--themed-loyalty-card-stamp-opacity);
}

woa-loyalty-card .content.button {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  border-color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  height: var(--woa-loyalty-card-height);
  border-style: solid;
  border-width: var(--woa-button-tier1-low-outline-border-width);
  border-radius: var(--woa-button-tier1-rounded-border-radius);
  padding: var(--woa-button-tier1-top-bottom-padding);
  --details-justify-content: center;
  --themed-loyalty-card-background-color: transparent !important;
  --placeholder-background-color: transparent;
  --placeholder-border-color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  --placeholder-opacity: 1;
  --stamp-color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  --stamp-opacity: 0.75;
}

woa-loyalty-card .content.button > * {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-loyalty-card .content.button > * ::-webkit-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-loyalty-card .content.button > * ::-moz-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-loyalty-card .content.button > * ::-ms-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-loyalty-card .content.button > * ::placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-loyalty-card .content.button > * {
  border-color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-loyalty-card .content-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

woa-loyalty-card .content-media-object {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}

woa-loyalty-card .content-details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: var(--details-justify-content);
  -webkit-justify-content: var(--details-justify-content);
  -ms-flex-pack: var(--details-justify-content);
  justify-content: var(--details-justify-content);
  height: 100%;
  overflow: hidden;
  z-index: 1;
  --header-background-opacity: var(--themed-loyalty-card-header-background-opacity);
  --footer-background-opacity: var(--themed-loyalty-card-footer-background-opacity);
}

woa-loyalty-card .content-details.no-image {
  background-color: var(--themed-loyalty-card-background-color);
  --header-background-opacity: 1;
  --footer-background-opacity: 0;
}

woa-loyalty-card .content-details-header {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  color: var(--themed-loyalty-card-header-text-color) !important;
  font-size: Max(Min(var(--woa-font-size), 1.6rem), 1rem) !important;
  font-weight: 700;
  line-height: calc(max(min(var(--woa-font-size), 1.6rem), 1.0rem) + 2px);
  padding: 5px 10px;
  position: relative;
}

woa-loyalty-card .content-details-header:before {
  background-color: var(--themed-loyalty-card-header-background-color);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: var(--header-background-opacity);
  z-index: -1;
}

woa-loyalty-card .content-details-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  min-height: 0;
  padding: var(--themed-loyalty-card-body-padding);
}

woa-loyalty-card .content-details-body-stamps {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -1px;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}

woa-loyalty-card .content-details-body-stamps-cell {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-basis: calc(100% / var(--columns, 1));
  -ms-flex-preferred-size: calc(100% / var(--columns, 1));
  flex-basis: calc(100% / var(--columns, 1));
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

woa-loyalty-card .content-details-body-stamps-cell:first-child {
  margin-left: auto;
}

woa-loyalty-card .content-details-body-stamps-cell:last-child {
  margin-right: auto;
}

woa-loyalty-card .content-details-body-stamps-cell-container {
  width: var(--placeholder-container-size, 0);
  height: var(--placeholder-container-size, 0);
  padding: 1px;
}

woa-loyalty-card .content-details-body-stamps-cell-container-placeholder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  height: 100%;
  width: 100%;
  --padding: Max(Min(calc(var(--woa-font-size) * 2), 7px), 2px);
  padding: var(--padding);
  position: relative;
  --border-width: Max(Min(var(--woa-font-size), 3px), 1px);
}

woa-loyalty-card .content-details-body-stamps-cell-container-placeholder:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--placeholder-background-color);
  border: var(--border-width) solid var(--placeholder-border-color);
  border-radius: 50%;
  opacity: var(--placeholder-opacity);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

woa-loyalty-card .content-details-body-stamps-cell-container-placeholder-stamp {
  --woa-icon-size: calc(var(--placeholder-container-size, 0) - ((var(--padding) + 1px) * 2));
  --woa-icon-color: var(--stamp-color);
  opacity: var(--stamp-opacity);
  -webkit-transform: rotate(calc(var(--rotation, 0) * var(--themed-loyalty-card-stamp-icon-rotate-factor))) scale(var(--themed-loyalty-card-stamp-icon-scale));
  transform: rotate(calc(var(--rotation, 0) * var(--themed-loyalty-card-stamp-icon-rotate-factor))) scale(var(--themed-loyalty-card-stamp-icon-scale));
  -webkit-transform-origin: center;
  transform-origin: center;
}

woa-loyalty-card .content-details-body-points {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 2px 5px;
}

woa-loyalty-card .content-details-body-points-progressbar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: relative;
  --border-width: Max(Min(var(--woa-font-size), 2px), 1px);
  padding: calc(var(--border-width) * 2);
  height: calc(var(--woa-font-size) * 5);
  min-height: 15px;
}

woa-loyalty-card .content-details-body-points-progressbar:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--placeholder-background-color);
  border: var(--border-width) solid var(--placeholder-border-color);
  border-radius: 1000px;
  opacity: var(--placeholder-opacity);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

woa-loyalty-card .content-details-body-points-progressbar-progress {
  z-index: 1;
  border-radius: 1000px;
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
}

woa-loyalty-card .content-details-body-points-progressbar-progress:after {
  z-index: 2;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: calc(var(--percentage) * 1%);
  background-color: var(--stamp-color);
  opacity: var(--stamp-opacity);
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

woa-loyalty-card .content-details-button-label {
  font-size: var(--woa-button-tier1-font-size);
  font-weight: var(--woa-button-tier1-font-weight);
  line-height: var(--woa-button-tier1-line-height, var(--woa-button-tier1-font-size));
  text-align: center;
}

woa-loyalty-card .content-details-button-label.points {
  white-space: wrap;
  margin-bottom: 3px;
  max-height: calc(var(--woa-button-tier1-line-height, var(--woa-button-tier1-font-size)) * 2);
}

woa-loyalty-card .content-details-button-label:not(.points) {
  white-space: nowrap;
}

woa-loyalty-card .content-details-button-label:not(.points).multi-row {
  margin-bottom: 3px;
}

woa-loyalty-card .content-details-button-label:not(.points):not(.multi-row) {
  margin-bottom: 8px;
}

woa-loyalty-card .content-details-footer {
  padding: 2px 10px 5px;
  font-size: Min(var(--woa-font-size), 1.3rem) !important;
  font-weight: 700;
  text-align: center;
  color: var(--themed-loyalty-card-footer-text-color);
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: calc(min(var(--woa-font-size), 1.3rem) * 3.7);
}

woa-loyalty-card .content-details-footer-text::first-letter {
  text-transform: capitalize;
}

woa-loyalty-card .content-details-footer-text p {
  margin-top: 5px;
  margin-bottom: 0;
}

woa-loyalty-card .content-details-footer-text-purchaseCount {
  font-weight: 800;
}

woa-loyalty-card .content-details-footer-text-points {
  font-weight: 800;
}

woa-loyalty-card .content-details-footer-text-goal {
  font-weight: 800;
}

woa-loyalty-card .content-details-footer-text-remaining {
  font-weight: 800;
}

woa-loyalty-card .content-details-footer-link {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  --woa-link-font-size: Min(var(--woa-font-size), 1.3rem);
}

woa-loyalty-card .content-details-footer:before {
  background-color: var(--themed-loyalty-card-footer-background-color);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-bottom-left-radius: 9px;
  border-bottom-right-radius: 9px;
  opacity: var(--footer-background-opacity);
  z-index: -1;
}

woa-loyalty-cards-page {
  --woa-modal-page-min-height: 300px;
}

woa-loyalty-cards-page .cards {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

woa-loyalty-cards-page .cards-card {
  width: 100%;
}

woa-loyalty-cards-page .view-profile {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  margin-top: 15px;
  margin-right: 5px;
}

woa-ticket {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  max-width: var(--woa-ticket-max-width);
}

woa-ticket .content {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  border-right: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: var(--woa-ticket-border-radius);
  -webkit-box-shadow: var(--woa-ticket-box-shadow);
  box-shadow: var(--woa-ticket-box-shadow);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  overflow: hidden;
  position: relative;
  height: calc(1px * var(--woa-element-width) / var(--woa-ticket-aspect-ratio));
}

woa-ticket .content-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

woa-ticket .content-media-object {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}

woa-ticket .content-details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  z-index: 1;
  --header-background-opacity: var(--themed-ticket-header-background-opacity);
  --footer-background-opacity: var(--themed-ticket-footer-background-opacity);
}

woa-ticket .content-details.no-image {
  background-color: var(--themed-ticket-background-color);
  --header-background-opacity: 1;
  --footer-background-opacity: 0;
}

woa-ticket .content-details-header {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  color: var(--themed-ticket-header-text-color) !important;
  font-size: Max(Min(var(--woa-font-size), 1.6rem), 1rem) !important;
  font-weight: 700;
  line-height: calc(max(min(var(--woa-font-size), 1.6rem), 1.0rem) + 2px);
  padding: 5px 10px;
  position: relative;
}

woa-ticket .content-details-header:before {
  background-color: var(--themed-ticket-header-background-color);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: var(--header-background-opacity);
  z-index: -1;
}

woa-ticket .content-details-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  min-height: 0;
  padding: var(--themed-ticket-body-padding);
}

woa-ticket .content-details-body-countdown {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}

woa-ticket .content-details-body-countdown-cell {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-basis: calc(100% / var(--columns, 1));
  -ms-flex-preferred-size: calc(100% / var(--columns, 1));
  flex-basis: calc(100% / var(--columns, 1));
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

woa-ticket .content-details-body-countdown-cell:first-child {
  margin-left: auto;
}

woa-ticket .content-details-body-countdown-cell:last-child {
  margin-right: auto;
}

woa-ticket .content-details-body-countdown-cell-container {
  width: var(--placeholder-container-size, 0);
  height: var(--placeholder-container-size, 0);
  padding: 1px;
}

woa-ticket .content-details-body-countdown-cell-container-placeholder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  height: 100%;
  width: 100%;
  position: relative;
  --border-width: Max(Min(var(--woa-font-size), 3px), 1px);
}

woa-ticket .content-details-body-countdown-cell-container-placeholder:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--themed-ticket-placeholder-background-color);
  border: var(--border-width) solid var(--themed-ticket-placeholder-border-color);
  border-radius: 50%;
  opacity: var(--themed-ticket-placeholder-opacity);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

woa-ticket .content-details-body-countdown-cell-container-placeholder-stamp {
  --woa-icon-size: calc(var(--placeholder-container-size, 0) - 14px);
  --woa-icon-color: var(--themed-ticket-stamp-color);
  opacity: var(--themed-ticket-stamp-opacity);
  -webkit-transform: rotate(calc(var(--rotation, 0) * var(--themed-ticket-stamp-icon-rotate-factor))) scale(calc(var(--themed-ticket-stamp-icon-scale) * var(--woa-ticket-stamp-icon-scale, 1)));
  transform: rotate(calc(var(--rotation, 0) * var(--themed-ticket-stamp-icon-rotate-factor))) scale(calc(var(--themed-ticket-stamp-icon-scale) * var(--woa-ticket-stamp-icon-scale, 1)));
  text-align: center;
}

woa-ticket .content-details-footer {
  padding: 2px 10px 5px;
  font-size: Min(var(--woa-font-size), 1.3rem) !important;
  font-weight: 700;
  text-align: center;
  color: var(--themed-ticket-footer-text-color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: calc(min(var(--woa-font-size), 1.3rem) * 3.7);
  position: relative;
}

woa-ticket .content-details-footer-text::first-letter {
  text-transform: capitalize;
}

woa-ticket .content-details-footer-text p {
  margin-top: 5px;
  margin-bottom: 0;
}

woa-ticket .content-details-footer-text-used {
  font-weight: 800;
}

woa-ticket .content-details-footer-text-limit {
  font-weight: 800;
}

woa-ticket .content-details-footer-text-remaining {
  font-weight: 800;
}

woa-ticket .content-details-footer:before {
  background-color: var(--themed-ticket-footer-background-color);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-bottom-left-radius: 9px;
  border-bottom-right-radius: 9px;
  opacity: var(--footer-background-opacity);
  z-index: -1;
}

woa-menu-category-selection-panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: var(--woa-menu-category-selection-panel-margin-top, 15px);
  margin-bottom: 15px;
  min-width: 0;
}

woa-menu-category-selection-panel.with-images {
  gap: 15px;
  margin-left: 15px;
  margin-right: 15px;
  padding-top: 2px;
  max-width: calc(100% - 30px);
}

woa-menu-category-selection-panel:not(.with-images) {
  max-width: 100%;
}

woa-menu-category-selection-panel .menu-category {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 9px;
  cursor: pointer;
}

woa-menu-category-selection-panel .menu-category.with-image:not(.featured) {
  width: calc((100% - 15px) / 2);
}

woa-menu-category-selection-panel .menu-category:not(.with-image), woa-menu-category-selection-panel .menu-category.featured {
  width: 100%;
}

woa-menu-category-selection-panel .menu-category.narrow {
  min-width: var(--woa-desktop-menu-category-selector-narrow-width);
}

woa-menu-category-selection-panel .menu-category-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  width: 100%;
  height: var(--woa-menu-category-image-height);
  border-radius: var(--woa-menu-item-image-border-radius);
  overflow: hidden;
  -webkit-transition: outline-color 0.3s ease;
  transition: outline-color 0.3s ease;
}

woa-menu-category-selection-panel .menu-category-image.selected {
  outline: 2px solid rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-menu-category-selection-panel .menu-category-image:not(.selected) {
  outline: 2px solid transparent;
}

woa-menu-category-selection-panel .menu-category-image.empty {
  border: 1px solid rgba(var(--theme-color-pair-foreground), 0.1);
}

woa-menu-category-selection-panel .menu-category-image-object {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity var(--woa-menu-item-image-fade-in-duration) ease;
  transition: opacity var(--woa-menu-item-image-fade-in-duration) ease;
}

woa-menu-category-selection-panel .menu-category-image-object.cached-image-none {
  display: none;
}

woa-menu-category-selection-panel .menu-category-image-object.cached-image-loading {
  opacity: 0;
}

woa-menu-category-selection-panel .menu-category-image-object.cached-image-loaded {
  opacity: 1;
}

woa-menu-category-selection-panel .menu-category-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

woa-menu-category-selection-panel .menu-category-title:not(.with-image) {
  padding-top: 11px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

woa-menu-category-selection-panel .menu-category-title:not(.with-image).selected {
  background-color: rgba(var(--theme-color-pair-background-shader), 0.075);
}

woa-menu-category-selection-panel .menu-category-title-name {
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 2.0rem;
  text-align: left;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

woa-menu-category-selection-panel .menu-category-title-name.selected {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-menu-category-selection-panel .menu-category-title-name.selected > * {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-menu-category-selection-panel .menu-category-title-name.selected > * ::-webkit-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-menu-category-selection-panel .menu-category-title-name.selected > * ::-moz-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-menu-category-selection-panel .menu-category-title-name.selected > * ::-ms-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-menu-category-selection-panel .menu-category-title-name.selected > * ::placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-menu-category-selection-panel .menu-category-title-button {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 25px;
  font-size: 4.0rem;
  line-height: 4.0rem;
  opacity: 50%;
  --woa-icon-button-icon-size: 20px;
}

woa-menu-item-panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  gap: 10px;
  overflow: hidden;
  cursor: pointer;
}

woa-menu-item-panel.tile {
  border: 1px solid rgba(var(--theme-color-pair-foreground), 0.2);
  border-radius: var(--woa-menu-item-image-border-radius);
  --details-padding: 10px;
}

woa-menu-item-panel:not(.tile) {
  padding-top: 15px;
  padding-bottom: 15px;
  --image-border-radius: var(--woa-menu-item-image-border-radius);
}

woa-menu-item-panel .menu-item-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  width: calc(var(--woa-menu-item-image-width) + 2 * var(--details-padding, 0px));
  height: calc(var(--woa-menu-item-image-height) + 2 * var(--details-padding, 0px));
  border-radius: var(--image-border-radius, 0);
  overflow: hidden;
}

woa-menu-item-panel .menu-item-image.empty {
  border: 1px solid rgba(var(--theme-color-pair-foreground), 0.1);
}

woa-menu-item-panel .menu-item-image.unavailable {
  -webkit-filter: Grayscale(var(--woa-menu-item-unavailable-grayscale));
  filter: Grayscale(var(--woa-menu-item-unavailable-grayscale));
}

woa-menu-item-panel .menu-item-image-object {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity var(--woa-menu-item-image-fade-in-duration) ease;
  transition: opacity var(--woa-menu-item-image-fade-in-duration) ease;
}

woa-menu-item-panel .menu-item-image-object.cached-image-loading {
  opacity: 0;
}

woa-menu-item-panel .menu-item-image-object.cached-image-loaded {
  opacity: 1;
}

woa-menu-item-panel .menu-item-details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 5px;
  overflow: hidden;
  padding-top: var(--details-padding, 0);
  padding-bottom: var(--details-padding, 0);
  padding-right: var(--details-padding, 0);
}

woa-menu-item-panel .menu-item-details.with-image {
  height: calc(var(--woa-menu-item-image-height) + 2 * var(--details-padding, 0px));
}

woa-menu-item-panel .menu-item-details-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px;
  max-width: 100%;
  overflow: hidden;
}

woa-menu-item-panel .menu-item-details-header.with-order-action {
  --header-overflow: hidden;
}

woa-menu-item-panel .menu-item-details-header:not(.with-order-action) {
  --header-overflow: visible;
}

woa-menu-item-panel .menu-item-details-header-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 5px;
  min-width: 40px;
  overflow: var(--header-overflow);
}

woa-menu-item-panel .menu-item-details-header-main-promos {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 5px;
}

woa-menu-item-panel .menu-item-details-header-main-promos-promo {
  --theme-color-pair-background: var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background)), var(--woa-menu-item-promo-opacity));
  --theme-color-pair-background-shader: var(--woa-theme-color-brand-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), var(--woa-menu-item-promo-opacity));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-brand--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-brand-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-brand-pair-highlighted-foreground, var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-brand-pair-highlighted-foreground, var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  padding-top: 1px;
  padding-bottom: 1px;
  padding-left: 6px;
  padding-right: 6px;
  border-radius: var(--woa-menu-item-promo-border-radius);
}

woa-menu-item-panel .menu-item-details-header-main-promos-promo > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-menu-item-panel .menu-item-details-header-main-promos-promo > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-menu-item-panel .menu-item-details-header-main-promos-promo > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-menu-item-panel .menu-item-details-header-main-promos-promo > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-menu-item-panel .menu-item-details-header-main-promos-promo > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-menu-item-panel .menu-item-details-header-main-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 3px;
  overflow: var(--header-overflow);
  max-width: 100%;
}

woa-menu-item-panel .menu-item-details-header-main-title-name {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: left;
}

woa-menu-item-panel .menu-item-details-header-main-title-sizes {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 2px;
  font-size: 1.2rem;
  font-weight: 400;
}

woa-menu-item-panel .menu-item-details-header-main-title-sizes:before {
  content: "•";
  color: rgba(var(--theme-color-pair-foreground), 0.4);
}

woa-menu-item-panel .menu-item-details-header-main-title-sizes-size {
  color: rgba(var(--theme-color-pair-foreground), 0.6);
  white-space: nowrap;
}

woa-menu-item-panel .menu-item-details-header-main-title-sizes-size:not(:first-child):before {
  content: "/";
  margin-right: 2px;
}

woa-menu-item-panel .menu-item-details-header-stock {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  margin-left: auto;
  font-size: 1.3rem;
  font-weight: 500;
}

woa-menu-item-panel .menu-item-details-header-stock > * {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-menu-item-panel .menu-item-details-header-stock > * ::-webkit-input-placeholder {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-menu-item-panel .menu-item-details-header-stock > * ::-moz-placeholder {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-menu-item-panel .menu-item-details-header-stock > * ::-ms-input-placeholder {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-menu-item-panel .menu-item-details-header-stock > * ::placeholder {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-menu-item-panel .menu-item-details-header-action {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  min-width: 112px;
  margin-left: auto;
}

woa-menu-item-panel .menu-item-details-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 5px;
  overflow: hidden;
}

woa-menu-item-panel .menu-item-details-body-category {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: rgba(var(--theme-color-pair-foreground), 0.5);
  font-size: 1.0rem;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

woa-menu-item-panel .menu-item-details-body-category:before {
  content: "[";
}

woa-menu-item-panel .menu-item-details-body-category:after {
  content: "]";
}

woa-menu-item-panel .menu-item-details-body-description {
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: rgba(var(--theme-color-pair-foreground), 0.75);
  font-size: 1.4rem;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  padding-bottom: 10px;
  -webkit-mask: linear-gradient(to top, rgba(0, 0, 0, 0), black 10px, black);
  mask: linear-gradient(to top, rgba(0, 0, 0, 0), black 10px, black);
}

woa-menu-item-panel .menu-item-details-body-description:first-letter {
  text-transform: uppercase;
}

woa-menu-item-panel .menu-item-details-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px;
  margin-top: auto;
}

woa-menu-item-panel .menu-item-details-footer-pricing {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 3px;
}

woa-menu-item-panel .menu-item-details-footer-pricing-price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 5px;
}

woa-menu-item-panel .menu-item-details-footer-pricing-price-guest {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 500;
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
  text-decoration-thickness: var(--woa-menu-item-price-strikeout-thickness);
  -webkit-text-decoration-color: rgba(var(--theme-color-pair-foreground), 0.5);
  text-decoration-color: rgba(var(--theme-color-pair-foreground), 0.5);
}

woa-menu-item-panel .menu-item-details-footer-pricing-price-actual {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

woa-menu-item-panel .menu-item-details-footer-pricing-price-actual.discounted {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-menu-item-panel .menu-item-details-footer-pricing-size {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: rgba(var(--theme-color-pair-foreground), 0.8);
  font-size: 1.2rem;
  font-weight: 500;
}

woa-menu-item-panel .menu-item-details-footer-pricing-size:before {
  content: "•";
  color: rgba(var(--theme-color-pair-foreground), 0.5);
  font-size: 1.4rem;
}

woa-menu-item-panel .menu-item-details-footer-dietary {
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  --woa-dietary-panel-foreground-color: pair-foreground-color(0.5);
  --woa-dietary-panel-flex-wrap: wrap;
  --woa-dietary-panel-justify-content: flex-end;
}

woa-menu-item-selection-panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

woa-menu-item-selection-panel .menu-contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 25px;
  margin-bottom: 45px;
  border-bottom: 1px solid rgba(var(--theme-color-pair-foreground), 0.1);
  margin-top: var(--woa-menu-item-selection-panel-content-margin-top, var(--standard-margin));
}

woa-menu-item-selection-panel .menu-contents.with-description-only {
  --standard-margin: calc(var(--anchor-panel-height) + 15px);
}

woa-menu-item-selection-panel .menu-contents:not(.with-description-only) {
  --standard-margin: calc(var(--anchor-panel-height) + 20px);
}

woa-menu-item-selection-panel .menu-contents.mobile {
  margin-left: 15px;
  margin-right: 15px;
}

woa-menu-item-selection-panel .menu-contents.desktop:not(.with-images) {
  --side-margin: Max(calc((100% - var(--woa-menu-text-item-max-width)) / 2), 0px);
  margin-left: var(--side-margin, 0);
  margin-right: var(--side-margin, 0);
}

woa-menu-item-selection-panel .menu-contents-description {
  color: rgba(var(--theme-color-pair-foreground), 0.75);
  font-size: 1.5rem;
  font-weight: 400;
  text-align: left;
  margin-bottom: 15px;
}

woa-menu-item-selection-panel .menu-contents-category {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
  scroll-margin-top: calc(var(--anchor-panel-height) - 5px);
}

woa-menu-item-selection-panel .menu-contents-category-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 7px;
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(var(--theme-color-pair-foreground), 0.1);
}

woa-menu-item-selection-panel .menu-contents-category-header-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  width: 100%;
  height: var(--woa-menu-category-image-height);
  border-radius: var(--woa-menu-item-image-border-radius);
  overflow: hidden;
}

woa-menu-item-selection-panel .menu-contents-category-header-image-object {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity var(--woa-menu-item-image-fade-in-duration) ease;
  transition: opacity var(--woa-menu-item-image-fade-in-duration) ease;
}

woa-menu-item-selection-panel .menu-contents-category-header-image-object.cached-image-none {
  display: none;
}

woa-menu-item-selection-panel .menu-contents-category-header-image-object.cached-image-loading {
  opacity: 0;
}

woa-menu-item-selection-panel .menu-contents-category-header-image-object.cached-image-loaded {
  opacity: 1;
}

woa-menu-item-selection-panel .menu-contents-category-header-details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

woa-menu-item-selection-panel .menu-contents-category-header-details-name {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  text-align: left;
}

woa-menu-item-selection-panel .menu-contents-category-header-details-name > * {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-menu-item-selection-panel .menu-contents-category-header-details-name > * ::-webkit-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-menu-item-selection-panel .menu-contents-category-header-details-name > * ::-moz-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-menu-item-selection-panel .menu-contents-category-header-details-name > * ::-ms-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-menu-item-selection-panel .menu-contents-category-header-details-name > * ::placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-menu-item-selection-panel .menu-contents-category-header-details-name.with-image {
  font-size: 1.8rem;
  font-weight: 600;
}

woa-menu-item-selection-panel .menu-contents-category-header-details-name:not(.with-image) {
  font-size: 2.2rem;
  font-weight: 600;
}

woa-menu-item-selection-panel .menu-contents-category-header-details-action {
  margin-top: 3px;
}

woa-menu-item-selection-panel .menu-contents-category-header-description {
  color: rgba(var(--theme-color-pair-foreground), 0.75);
  font-size: 1.5rem;
  font-weight: 400;
  text-align: left;
}

woa-menu-item-selection-panel .menu-contents-category-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

woa-menu-item-selection-panel .menu-contents-category-items:not(.with-header) {
  margin-top: 10px;
}

woa-menu-item-selection-panel .menu-contents-category-items.tile {
  gap: 15px;
  margin-top: 15px;
  --item-width: calc((100% - (15px * (var(--item-columns) - 1))) / var(--item-columns));
}

woa-menu-item-selection-panel .menu-contents-category-items:not(.tile) {
  --item-width: 100%;
  --item-border-bottom: 1px solid rgba(var(--theme-color-pair-foreground), 0.1);
}

woa-menu-item-selection-panel .menu-contents-category-items-item {
  width: var(--item-width);
}

woa-menu-item-selection-panel .menu-contents-category-items-item:not(:last-child):not(.tile) {
  border-bottom: var(--item-border-bottom);
}

woa-menu-item-selection-panel .menu-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  width: 100%;
  margin-bottom: 20px;
}

woa-menu-item-selection-panel .menu-nav-message {
  color: rgba(var(--theme-color-pair-foreground), 0.75);
  font-size: 1.6rem;
  font-weight: 500;
}

woa-menu-item-selection-panel .menu-nav-action {
  --woa-button-tier1-width: auto;
  --button-side-padding: 25px;
}

woa-menu-search-page {
  --woa-modal-page-layout-no-content-bottom-padding: 0;
}

woa-menu-search-page .menu-search-entry {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  margin-right: 15px;
}

woa-menu-search-page .menu-search-entry-icon {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  --woa-icon-size: 24px;
}

woa-menu-search-page .menu-search-entry-field {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: block;
  position: relative;
}

woa-menu-search-page .menu-search-entry-field-input {
  background-color: transparent;
  border: none;
  width: 100%;
  height: 36px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8rem;
}

woa-menu-search-page .menu-search-entry-field-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  pointer-events: none;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8rem;
  opacity: 0.8;
}

woa-menu-subcategory-anchor-panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

woa-menu-subcategory-anchor-panel .menu-anchorbar {
  --theme-color-pair-background: var(--ovd-theme-color-standard-page-header-pair-background, var(--woa-theme-color-standard-page-header-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-standard-page-header-pair-background, var(--woa-theme-color-standard-page-header-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-standard-page-header-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-standard-page-header--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-standard-page-header--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-standard-page-header--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-standard-page-header--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-standard-page-header--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-standard-page-header-pair-foreground, var(--woa-theme-color-standard-page-header-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-standard-page-header-pair-foreground, var(--woa-theme-color-standard-page-header-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-standard-page-header-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-standard-page-header-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-header-pair-foreground, var(--woa-theme-color-standard-page-header-pair-highlighted-foreground, var(--woa-theme-color-standard-page-header-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-standard-page-header-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-header-pair-foreground, var(--woa-theme-color-standard-page-header-pair-highlighted-foreground, var(--woa-theme-color-standard-page-header-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 25px;
  -webkit-box-shadow: var(--woa-menu-subcategory-anchor-panel-box-shadow, 0 4px 4px rgba(0, 0, 0, 0.05));
  box-shadow: var(--woa-menu-subcategory-anchor-panel-box-shadow, 0 4px 4px rgba(0, 0, 0, 0.05));
}

woa-menu-subcategory-anchor-panel .menu-anchorbar > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-menu-subcategory-anchor-panel .menu-anchorbar > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-menu-subcategory-anchor-panel .menu-anchorbar > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-menu-subcategory-anchor-panel .menu-anchorbar > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-menu-subcategory-anchor-panel .menu-anchorbar > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-menu-subcategory-anchor-panel .menu-anchorbar.desktop:not(.with-item-images) {
  --side-margin: Max(calc((100% - var(--woa-menu-text-item-max-width)) / 2), 0px);
  margin-left: var(--side-margin, 0);
  margin-right: var(--side-margin, 0);
}

woa-menu-subcategory-anchor-panel .menu-anchorbar-scroller {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
  height: 100%;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-left: 15px;
  margin-right: 15px;
  overflow: auto;
  scrollbar-width: none;
}

woa-menu-subcategory-anchor-panel .menu-anchorbar-scroller::-webkit-scrollbar {
  display: none;
}

woa-menu-subcategory-anchor-panel .menu-anchorbar-scroller.scrolled {
  -webkit-mask: linear-gradient(to right, rgba(0, 0, 0, 0), black 20px, black calc(100% - 60px), rgba(0, 0, 0, 0));
  mask: linear-gradient(to right, rgba(0, 0, 0, 0), black 20px, black calc(100% - 60px), rgba(0, 0, 0, 0));
}

woa-menu-subcategory-anchor-panel .menu-anchorbar-scroller:not(.scrolled) {
  -webkit-mask: linear-gradient(to left, rgba(0, 0, 0, 0), black 60px, black);
  mask: linear-gradient(to left, rgba(0, 0, 0, 0), black 60px, black);
}

woa-menu-subcategory-anchor-panel .menu-anchorbar-scroller-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 20px;
  padding-top: 8px;
  padding-bottom: 4px;
}

woa-menu-subcategory-anchor-panel .menu-anchorbar-scroller-content-anchor {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

woa-menu-subcategory-anchor-panel .menu-anchorbar-scroller-content-anchor:last-child {
  width: calc(1px * var(--woa-element-width));
}

woa-menu-subcategory-anchor-panel .menu-anchorbar-scroller-content-anchor-name {
  padding-left: 2px;
  padding-right: 2px;
  padding-bottom: 6px;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: left;
  text-transform: capitalize;
  white-space: nowrap;
  cursor: pointer;
  border-bottom: 3px solid;
}

woa-menu-subcategory-anchor-panel .menu-anchorbar-scroller-content-anchor-name.selected {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  border-color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  -webkit-transition: color 0.75s ease, border-color 0.75s ease;
  transition: color 0.75s ease, border-color 0.75s ease;
}

woa-menu-subcategory-anchor-panel .menu-anchorbar-scroller-content-anchor-name.selected > * {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-menu-subcategory-anchor-panel .menu-anchorbar-scroller-content-anchor-name.selected > * ::-webkit-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-menu-subcategory-anchor-panel .menu-anchorbar-scroller-content-anchor-name.selected > * ::-moz-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-menu-subcategory-anchor-panel .menu-anchorbar-scroller-content-anchor-name.selected > * ::-ms-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-menu-subcategory-anchor-panel .menu-anchorbar-scroller-content-anchor-name.selected > * ::placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-menu-subcategory-anchor-panel .menu-anchorbar-scroller-content-anchor-name.selected > * {
  border-color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-menu-subcategory-anchor-panel .menu-anchorbar-scroller-content-anchor-name:not(.selected) {
  color: rgba(var(--theme-color-pair-foreground), 0.5);
  border-color: transparent;
}

woa-nav-menu-page {
  --woa-page-content-flex-grow: 1;
  --woa-modal-page-min-width: var(--woa-side-modal-min-width);
  --woa-modal-page-max-width: var(--woa-side-modal-max-width);
}

woa-nav-menu-page .nav-menu {
  --theme-color-pair-background: var(--ovd-theme-color-panel-pair-background, var(--woa-theme-color-panel-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-panel-pair-background, var(--woa-theme-color-panel-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-panel-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-panel--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-panel--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-panel--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-panel--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-panel--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-panel-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-panel-pair-highlighted-foreground, var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-highlighted-foreground, var(--woa-theme-color-panel-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-panel-pair-highlighted-foreground, var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-highlighted-foreground, var(--woa-theme-color-panel-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
}

woa-nav-menu-page .nav-menu > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-nav-menu-page .nav-menu > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-nav-menu-page .nav-menu > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-nav-menu-page .nav-menu > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-nav-menu-page .nav-menu > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-nav-menu-page .nav-menu-identity {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  margin-left: 3px;
  margin-right: 3px;
  margin-bottom: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(var(--theme-color-pair-foreground), 0.2);
}

woa-nav-menu-page .nav-menu-identity-greeting {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 2.7rem;
  white-space: normal;
  overflow: hidden;
}

woa-nav-menu-page .nav-menu-identity-greeting.standalone {
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

woa-nav-menu-page .nav-menu-identity-button {
  --woa-button-margin-right: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}

woa-nav-menu-page .nav-menu-identity-button.full-width {
  max-width: 100%;
}

woa-nav-menu-page .nav-menu-identity-button:not(.full-width) {
  max-width: calc((100% - 16px) / 2);
}

woa-nav-menu-page .nav-menu-options {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  overflow-x: hidden;
  overflow-y: auto;
}

woa-nav-menu-page .nav-menu-options-option {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-left: 3px;
  margin-right: 3px;
  margin-top: 18px;
  margin-bottom: 17px;
  cursor: pointer;
}

@media (hover: hover) {
  woa-nav-menu-page .nav-menu-options-option:hover {
    opacity: 0.5;
  }
}

@media (hover: none) {
  woa-nav-menu-page .nav-menu-options-option:active {
    opacity: 0.5;
  }
}

woa-nav-menu-page .nav-menu-options-option-label {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.0rem;
}

woa-nav-menu-page .nav-menu-options-option-label:first-letter {
  text-transform: capitalize;
}

woa-nav-menu-page .nav-menu-options-option-button {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: auto;
  font-size: 4.0rem;
  line-height: 4.0rem;
  opacity: 50%;
  --woa-icon-button-icon-size: 20px;
}

woa-nav-menu-page .nav-menu-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 12px;
  padding-bottom: Max(calc(var(--safe-area-inset-bottom, 0px) / 3), 15px);
}

woa-nav-menu-page .nav-menu-footer-legal {
  padding-top: 16px;
}

woa-nav-menu-page .nav-menu-footer-info {
  padding-top: 8px;
  color: rgba(var(--theme-color-pair-foreground), 0.4);
}

woa-footer-messages {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

woa-content-message {
  border: 1px solid rgba(var(--theme-color-pair-foreground), 0.08);
  --decorator-margin-right: 15px;
  --woa-icon-button-height: 23px;
}

woa-footer-message {
  border-bottom: 1px solid rgba(var(--theme-color-pair-foreground), 0.08);
  --decorator-margin-right: var(--woa-footer-message-decorator-margin-right, 10px);
}

woa-content-message, woa-footer-message {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.5s ease;
  transition: max-height 0.5s ease;
}

woa-content-message.errorLevel, woa-footer-message.errorLevel {
  --theme-color-pair-background: var(--ovd-theme-color-error-message-pair-background, var(--woa-theme-color-error-message-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-error-message-pair-background, var(--woa-theme-color-error-message-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-error-message-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-error-message--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-error-message--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-error-message--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-error-message--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-error-message--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-error-message-pair-foreground, var(--woa-theme-color-error-message-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-error-message-pair-foreground, var(--woa-theme-color-error-message-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-error-message-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-error-message-pair-highlighted-foreground, var(--ovd-theme-color-error-message-pair-foreground, var(--woa-theme-color-error-message-pair-highlighted-foreground, var(--woa-theme-color-error-message-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-error-message-pair-highlighted-foreground, var(--ovd-theme-color-error-message-pair-foreground, var(--woa-theme-color-error-message-pair-highlighted-foreground, var(--woa-theme-color-error-message-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-content-message.errorLevel > *, woa-footer-message.errorLevel > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-content-message.errorLevel > * ::-webkit-input-placeholder, woa-footer-message.errorLevel > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-content-message.errorLevel > * ::-moz-placeholder, woa-footer-message.errorLevel > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-content-message.errorLevel > * ::-ms-input-placeholder, woa-footer-message.errorLevel > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-content-message.errorLevel > * ::placeholder, woa-footer-message.errorLevel > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-content-message.warningLevel, woa-footer-message.warningLevel {
  --theme-color-pair-background: var(--ovd-theme-color-warning-message-pair-background, var(--woa-theme-color-warning-message-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-warning-message-pair-background, var(--woa-theme-color-warning-message-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-warning-message-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-warning-message--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-warning-message--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-warning-message--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-warning-message--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-warning-message--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-warning-message-pair-foreground, var(--woa-theme-color-warning-message-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-warning-message-pair-foreground, var(--woa-theme-color-warning-message-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-warning-message-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-warning-message-pair-highlighted-foreground, var(--ovd-theme-color-warning-message-pair-foreground, var(--woa-theme-color-warning-message-pair-highlighted-foreground, var(--woa-theme-color-warning-message-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-warning-message-pair-highlighted-foreground, var(--ovd-theme-color-warning-message-pair-foreground, var(--woa-theme-color-warning-message-pair-highlighted-foreground, var(--woa-theme-color-warning-message-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-content-message.warningLevel > *, woa-footer-message.warningLevel > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-content-message.warningLevel > * ::-webkit-input-placeholder, woa-footer-message.warningLevel > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-content-message.warningLevel > * ::-moz-placeholder, woa-footer-message.warningLevel > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-content-message.warningLevel > * ::-ms-input-placeholder, woa-footer-message.warningLevel > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-content-message.warningLevel > * ::placeholder, woa-footer-message.warningLevel > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-content-message.successLevel, woa-footer-message.successLevel {
  --theme-color-pair-background: var(--ovd-theme-color-success-message-pair-background, var(--woa-theme-color-success-message-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-success-message-pair-background, var(--woa-theme-color-success-message-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-success-message-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-success-message--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-success-message--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-success-message--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-success-message--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-success-message--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-success-message-pair-foreground, var(--woa-theme-color-success-message-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-success-message-pair-foreground, var(--woa-theme-color-success-message-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-success-message-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-success-message-pair-highlighted-foreground, var(--ovd-theme-color-success-message-pair-foreground, var(--woa-theme-color-success-message-pair-highlighted-foreground, var(--woa-theme-color-success-message-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-success-message-pair-highlighted-foreground, var(--ovd-theme-color-success-message-pair-foreground, var(--woa-theme-color-success-message-pair-highlighted-foreground, var(--woa-theme-color-success-message-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-content-message.successLevel > *, woa-footer-message.successLevel > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-content-message.successLevel > * ::-webkit-input-placeholder, woa-footer-message.successLevel > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-content-message.successLevel > * ::-moz-placeholder, woa-footer-message.successLevel > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-content-message.successLevel > * ::-ms-input-placeholder, woa-footer-message.successLevel > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-content-message.successLevel > * ::placeholder, woa-footer-message.successLevel > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-content-message.infoLevel, woa-footer-message.infoLevel {
  --theme-color-pair-background: var(--ovd-theme-color-info-message-pair-background, var(--woa-theme-color-info-message-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-info-message-pair-background, var(--woa-theme-color-info-message-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-info-message-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-info-message--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-info-message--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-info-message--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-info-message--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-info-message--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-info-message-pair-foreground, var(--woa-theme-color-info-message-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-info-message-pair-foreground, var(--woa-theme-color-info-message-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-info-message-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-info-message-pair-highlighted-foreground, var(--ovd-theme-color-info-message-pair-foreground, var(--woa-theme-color-info-message-pair-highlighted-foreground, var(--woa-theme-color-info-message-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-info-message-pair-highlighted-foreground, var(--ovd-theme-color-info-message-pair-foreground, var(--woa-theme-color-info-message-pair-highlighted-foreground, var(--woa-theme-color-info-message-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-content-message.infoLevel > *, woa-footer-message.infoLevel > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-content-message.infoLevel > * ::-webkit-input-placeholder, woa-footer-message.infoLevel > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-content-message.infoLevel > * ::-moz-placeholder, woa-footer-message.infoLevel > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-content-message.infoLevel > * ::-ms-input-placeholder, woa-footer-message.infoLevel > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-content-message.infoLevel > * ::placeholder, woa-footer-message.infoLevel > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-content-message.horizontal, woa-footer-message.horizontal {
  padding-left: 10px;
  padding-right: 10px;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  --body-flex-direction: row;
  --body-flex-grow: 1;
  --body-align-items: center;
  --body-padding-vertical: 12px;
  --text-margin-right: auto;
  --link-margin-top: 0;
  --link-margin-left: 15px;
}

woa-content-message.vertical, woa-footer-message.vertical {
  padding-left: 20px;
  padding-right: 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  --body-flex-direction: column;
  --body-flex-grow: 0;
  --body-align-items: flex-start;
  --body-padding-vertical: 9px;
  --text-margin-right: 0;
  --link-margin-top: 5px;
  --link-margin-left: 0;
}

woa-content-message.closable, woa-content-message.actionable, woa-footer-message.closable, woa-footer-message.actionable {
  cursor: pointer;
}

@media (hover: hover) {
  woa-content-message.closable:hover, woa-content-message.actionable:hover, woa-footer-message.closable:hover, woa-footer-message.actionable:hover {
    opacity: 0.5;
  }
}

@media (hover: none) {
  woa-content-message.closable:active, woa-content-message.actionable:active, woa-footer-message.closable:active, woa-footer-message.actionable:active {
    opacity: 0.5;
  }
}

woa-content-message .message-close, woa-footer-message .message-close {
  position: absolute;
  top: 5px;
  right: 5px;
  --woa-icon-button-icon-size: 13px;
}

woa-content-message .message-decorator, woa-footer-message .message-decorator {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  margin-right: var(--decorator-margin-right);
  margin-top: 2px;
  margin-bottom: 2px;
}

woa-content-message .message-decorator-icon, woa-footer-message .message-decorator-icon {
  --woa-icon-size: var(--woa-message-icon-size, 20px);
}

woa-content-message .message-body, woa-footer-message .message-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: var(--body-flex-direction);
  -ms-flex-direction: var(--body-flex-direction);
  flex-direction: var(--body-flex-direction);
  -webkit-box-flex: var(--body-flex-grow);
  -webkit-flex-grow: var(--body-flex-grow);
  -ms-flex-positive: var(--body-flex-grow);
  flex-grow: var(--body-flex-grow);
  -webkit-box-align: var(--body-align-items);
  -webkit-align-items: var(--body-align-items);
  -ms-flex-align: var(--body-align-items);
  align-items: var(--body-align-items);
  padding-top: var(--body-padding-vertical);
  padding-bottom: var(--body-padding-vertical);
}

woa-content-message .message-body-text, woa-footer-message .message-body-text {
  font-size: var(--woa-message-text-size, 1.4rem);
  font-weight: var(--woa-message-text-weight, 500);
  line-height: calc(var(--woa-message-text-size, 1.4rem) + 0.3rem);
  text-align: left;
  margin-right: var(--text-margin-right);
}

woa-content-message .message-body-text:not(:first-child), woa-footer-message .message-body-text:not(:first-child) {
  margin-top: 10px;
}

woa-content-message .message-body-text p, woa-footer-message .message-body-text p {
  margin-top: 5px;
  margin-bottom: 0;
}

woa-content-message .message-body woa-link, woa-footer-message .message-body woa-link {
  margin-top: var(--link-margin-top);
  margin-left: var(--link-margin-left);
}

woa-simple-dialog-page {
  --woa-button-white-space: wrap;
  --woa-page-content-text-align: left;
}

woa-simple-dialog-page .simple-dialog-checkbox {
  margin-bottom: 15px;
}

woa-page-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9996;
  pointer-events: none;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

woa-page-container.hidden {
  opacity: 0;
}

woa-page-container .container-shroud {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-transition: background-color var(--woa-page-transition-period) ease-out;
  transition: background-color var(--woa-page-transition-period) ease-out;
}

woa-page-container .container-shroud:not(.open) {
  background-color: transparent;
  pointer-events: none;
}

woa-page-container .container-shroud.open {
  background-color: rgba(0, 0, 0, calc(var(--woa-page-open-background-alpha) / 2));
  pointer-events: auto;
}

woa-page-component-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

woa-page-component-container .component-container-shroud {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

woa-page-component-container .component-container-shroud:not(.alignment-full) {
  -webkit-transition: background-color var(--woa-page-transition-period) ease-out;
  transition: background-color var(--woa-page-transition-period) ease-out;
}

woa-page-component-container .component-container-shroud:not(.open) {
  background-color: transparent;
  pointer-events: none;
  --wrapper-left-closed-transform: translateX(-100%);
  --wrapper-right-closed-transform: translateX(100%);
  --wrapper-top-closed-transform: translateY(-100%);
  --wrapper-bottom-closed-transform: translateY(100%);
  --wrapper-full-overlay-closed-opacity: 1;
}

woa-page-component-container .component-container-shroud.open {
  pointer-events: auto;
}

woa-page-component-container .component-container-shroud.open.alignment-full {
  background-color: white;
}

woa-page-component-container .component-container-shroud.open:not(.alignment-full) {
  background-color: rgba(0, 0, 0, calc(var(--woa-page-open-background-alpha) / 2));
}

woa-page-component-container .component-container-shroud .component-container-wrapper {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  --swipe-transform: translate(calc(var(--woa-swipe-x-distance) * 1px), calc(var(--woa-swipe-y-distance) * 1px));
}

woa-page-component-container .component-container-shroud .component-container-wrapper.initialised {
  visibility: visible;
}

woa-page-component-container .component-container-shroud .component-container-wrapper:not(.initialised) {
  visibility: hidden;
}

woa-page-component-container .component-container-shroud .component-container-wrapper.woa-swipe-engaged {
  -webkit-transition: none;
  transition: none;
}

woa-page-component-container .component-container-shroud .component-container-wrapper.alignment-left, woa-page-component-container .component-container-shroud .component-container-wrapper.alignment-right {
  top: 0;
  bottom: 0;
  height: 100%;
  max-height: 100%;
  min-width: var(--woa-side-modal-min-width);
  max-width: var(--woa-side-modal-max-width);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  --component-height: 100%;
  --component-min-width: 0;
}

woa-page-component-container .component-container-shroud .component-container-wrapper.alignment-left.initialised:not(.woa-swipe-engaged), woa-page-component-container .component-container-shroud .component-container-wrapper.alignment-right.initialised:not(.woa-swipe-engaged) {
  -webkit-transition: -webkit-transform var(--woa-page-transition-period) ease-out;
  transition: -webkit-transform var(--woa-page-transition-period) ease-out;
  transition: transform var(--woa-page-transition-period) ease-out;
  transition: transform var(--woa-page-transition-period) ease-out, -webkit-transform var(--woa-page-transition-period) ease-out;
}

woa-page-component-container .component-container-shroud .component-container-wrapper.alignment-left:after, woa-page-component-container .component-container-shroud .component-container-wrapper.alignment-right:after {
  top: calc((100% - 70px) / 2);
  width: 4px;
  height: 70px;
}

woa-page-component-container .component-container-shroud .component-container-wrapper.alignment-left {
  left: 0;
  right: auto;
  -webkit-transform: var(--wrapper-left-closed-transform, var(--swipe-transform));
  transform: var(--wrapper-left-closed-transform, var(--swipe-transform));
}

woa-page-component-container .component-container-shroud .component-container-wrapper.alignment-left:after {
  right: 7px;
}

woa-page-component-container .component-container-shroud .component-container-wrapper.alignment-right {
  left: auto;
  right: 0;
  -webkit-transform: var(--wrapper-right-closed-transform, var(--swipe-transform));
  transform: var(--wrapper-right-closed-transform, var(--swipe-transform));
}

woa-page-component-container .component-container-shroud .component-container-wrapper.alignment-right:after {
  left: 7px;
}

woa-page-component-container .component-container-shroud .component-container-wrapper.alignment-top, woa-page-component-container .component-container-shroud .component-container-wrapper.alignment-bottom {
  --modal-width: Min(var(--specified-width, var(--available-width, 100%)), 100%);
  --gutter-width: calc((100% - var(--modal-width)) / 2);
  left: var(--gutter-width);
  right: var(--gutter-width);
  width: 100%;
  max-width: var(--modal-width);
  height: Min(var(--specified-height, unset), 90%);
  max-height: Min(var(--specified-height, 80%), 90%);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  --component-width: 100%;
  --component-height: 100%;
  --component-min-height: 0;
  --woa-modal-page-header-footer-border-width: 1px;
}

woa-page-component-container .component-container-shroud .component-container-wrapper.alignment-top.initialised:not(.woa-swipe-engaged), woa-page-component-container .component-container-shroud .component-container-wrapper.alignment-bottom.initialised:not(.woa-swipe-engaged) {
  -webkit-transition: max-height var(--woa-page-transition-period) ease, max-width var(--woa-page-transition-period) ease, left var(--woa-page-transition-period) ease, -webkit-transform var(--woa-page-transition-period) ease-out;
  transition: max-height var(--woa-page-transition-period) ease, max-width var(--woa-page-transition-period) ease, left var(--woa-page-transition-period) ease, -webkit-transform var(--woa-page-transition-period) ease-out;
  transition: transform var(--woa-page-transition-period) ease-out, max-height var(--woa-page-transition-period) ease, max-width var(--woa-page-transition-period) ease, left var(--woa-page-transition-period) ease;
  transition: transform var(--woa-page-transition-period) ease-out, max-height var(--woa-page-transition-period) ease, max-width var(--woa-page-transition-period) ease, left var(--woa-page-transition-period) ease, -webkit-transform var(--woa-page-transition-period) ease-out;
}

woa-page-component-container .component-container-shroud .component-container-wrapper.alignment-top:after, woa-page-component-container .component-container-shroud .component-container-wrapper.alignment-bottom:after {
  left: calc((100% - 70px) / 2);
  width: 70px;
  height: 4px;
}

woa-page-component-container .component-container-shroud .component-container-wrapper.alignment-top {
  top: 0;
  bottom: auto;
  -webkit-transform: var(--wrapper-top-closed-transform, var(--swipe-transform));
  transform: var(--wrapper-top-closed-transform, var(--swipe-transform));
  -webkit-box-shadow: 0 -4px 4px rgba(0, 0, 0, 0.05);
  box-shadow: 0 -4px 4px rgba(0, 0, 0, 0.05);
}

woa-page-component-container .component-container-shroud .component-container-wrapper.alignment-top:after {
  bottom: 7px;
}

woa-page-component-container .component-container-shroud .component-container-wrapper.alignment-bottom {
  top: auto;
  bottom: 0;
  -webkit-transform: var(--wrapper-bottom-closed-transform, var(--swipe-transform));
  transform: var(--wrapper-bottom-closed-transform, var(--swipe-transform));
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
  border-top: 1px solid rgba(var(--theme-color-pair-foreground), 0.08);
  border-top-left-radius: var(--woa-modal-page-border-radius);
  border-top-right-radius: var(--woa-modal-page-border-radius);
}

woa-page-component-container .component-container-shroud .component-container-wrapper.alignment-bottom:after {
  top: 7px;
}

woa-page-component-container .component-container-shroud .component-container-wrapper.alignment-full {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  --component-width: 100%;
  --component-height: 100%;
  --component-min-width: 100%;
  --component-min-height: 100%;
}

woa-page-component-container .component-container-shroud .component-container-wrapper.alignment-full.initialised {
  --overlay-transition: opacity calc(var(--woa-page-transition-period) * 2) ease-in-out;
}

woa-page-component-container .component-container-shroud .component-container-wrapper.alignment-full:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  pointer-events: none;
  z-index: 100;
  -webkit-transition: var(--overlay-transition);
  transition: var(--overlay-transition);
  opacity: var(--wrapper-full-overlay-closed-opacity, 0);
}

woa-page-component-container .component-container-shroud .component-container-wrapper .page-component {
  width: var(--component-width, unset);
  height: var(--component-height, unset);
  min-width: var(--component-min-width, unset);
  min-height: var(--component-min-height, unset);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

woa-page-component-container .component-container-shroud .component-container-wrapper:not(.alignment-full).handle-enabled:after {
  content: "";
  position: absolute;
  border-radius: 2px;
  background-color: rgba(var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground)), 0.2);
}

woa-order-confirmation-page .acceptance {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  height: 100%;
}

woa-order-confirmation-page .acceptance-logo {
  margin-bottom: 15px;
}

woa-order-confirmation-page .acceptance-pending {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

woa-order-confirmation-page .acceptance-pending-phase1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

woa-order-confirmation-page .acceptance-pending-phase1-message {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 2.4rem;
  text-align: center;
  max-width: 350px;
}

woa-order-confirmation-page .acceptance-pending-phase1-message > * {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-order-confirmation-page .acceptance-pending-phase1-message > * ::-webkit-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-order-confirmation-page .acceptance-pending-phase1-message > * ::-moz-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-order-confirmation-page .acceptance-pending-phase1-message > * ::-ms-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-order-confirmation-page .acceptance-pending-phase1-message > * ::placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-order-confirmation-page .acceptance-pending-phase1-spinner {
  margin-top: 30px;
  --woa-spinner-size: 35px;
  --woa-spinner-color: theme-color(brand-foreground);
  height: 35px;
  width: 35px;
}

woa-order-confirmation-page .acceptance-pending-phase2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

woa-order-confirmation-page .acceptance-pending-phase2-message {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  font-size: 2.0rem;
  font-weight: 600;
  line-height: 2.4rem;
  text-align: center;
  max-width: 350px;
}

woa-order-confirmation-page .acceptance-pending-phase2-message > * {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-order-confirmation-page .acceptance-pending-phase2-message > * ::-webkit-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-order-confirmation-page .acceptance-pending-phase2-message > * ::-moz-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-order-confirmation-page .acceptance-pending-phase2-message > * ::-ms-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-order-confirmation-page .acceptance-pending-phase2-message > * ::placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-order-confirmation-page .acceptance-pending-phase2-progress {
  margin-top: 30px;
}

woa-order-confirmation-page .acceptance-pending-phase2-progress-circle {
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  -webkit-transition: stroke-dashoffset 1.2s;
  transition: stroke-dashoffset 1.2s;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

woa-order-confirmation-page .acceptance-cancelled, woa-order-confirmation-page .acceptance-rejected {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

woa-order-confirmation-page .acceptance-cancelled-message, woa-order-confirmation-page .acceptance-rejected-message {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
  font-size: 2.0rem;
  font-weight: 600;
  line-height: 2.4rem;
  text-align: center;
  max-width: 350px;
}

woa-order-confirmation-page .acceptance-cancelled-message > *, woa-order-confirmation-page .acceptance-rejected-message > * {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-order-confirmation-page .acceptance-cancelled-message > * ::-webkit-input-placeholder, woa-order-confirmation-page .acceptance-rejected-message > * ::-webkit-input-placeholder {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-order-confirmation-page .acceptance-cancelled-message > * ::-moz-placeholder, woa-order-confirmation-page .acceptance-rejected-message > * ::-moz-placeholder {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-order-confirmation-page .acceptance-cancelled-message > * ::-ms-input-placeholder, woa-order-confirmation-page .acceptance-rejected-message > * ::-ms-input-placeholder {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-order-confirmation-page .acceptance-cancelled-message > * ::placeholder, woa-order-confirmation-page .acceptance-rejected-message > * ::placeholder {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-order-confirmation-page .order-details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

woa-order-confirmation-page .order-placement {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

woa-order-confirmation-page .order-placement-summary {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 100%;
}

woa-order-confirmation-page .order-placement-summary-store-image {
  margin-bottom: 18px;
  --width: calc(1px * var(--woa-element-width));
  width: var(--width);
  height: calc(var(--width) / var(--woa-promo-slide-aspect-ratio));
}

woa-order-confirmation-page .order-placement-summary-icon {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  --woa-icon-size: 60px;
  margin-bottom: 10px;
}

woa-order-confirmation-page .order-placement-summary-icon > * {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-order-confirmation-page .order-placement-summary-icon > * ::-webkit-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-order-confirmation-page .order-placement-summary-icon > * ::-moz-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-order-confirmation-page .order-placement-summary-icon > * ::-ms-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-order-confirmation-page .order-placement-summary-icon > * ::placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-order-confirmation-page .order-placement-summary-heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.4rem;
  text-align: center;
}

woa-order-confirmation-page .order-placement-summary-heading-title {
  display: inline;
  max-width: 100%;
  margin-left: 20px;
  margin-right: 20px;
}

woa-order-confirmation-page .order-placement-summary-heading-notice {
  margin-top: 10px;
}

woa-order-confirmation-page .order-placement-details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  padding-top: var(--placement-details-padding-top, 0);
  padding-bottom: var(--placement-details-padding-bottom, 0);
}

woa-order-confirmation-page .order-placement-logo {
  margin-top: 40px;
}

woa-order-details-panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  text-align: center;
}

woa-order-details-panel .order-transfer {
  margin-bottom: 25px;
}

woa-order-details-panel .order-qr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 25px;
}

woa-order-details-panel .order-qr-label {
  margin-bottom: 5px;
}

woa-order-details-panel .order-receiptId {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6rem;
}

woa-order-details-panel .order-receiptId.with-time {
  margin-bottom: 10px;
}

woa-order-details-panel .order-receiptId:not(.with-time) {
  margin-bottom: 25px;
}

woa-order-details-panel .order-time {
  margin-bottom: 25px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6rem;
  white-space: nowrap;
}

woa-order-details-panel .delivery-address {
  margin-bottom: 25px;
  --woa-field-group-gap: 10px;
  font-size: 1.5rem;
  line-height: 1.7rem;
  text-align: left;
}

woa-order-details-panel .delivery-address-details {
  font-weight: 600;
}

woa-order-details-panel .delivery-address-mobile {
  font-weight: 600;
}

woa-order-details-panel .delivery-address-instructions {
  white-space-collapse: preserve;
  font-weight: 400;
}

woa-order-details-panel .order-request {
  margin-bottom: 10px;
  font-size: 1.5rem;
  line-height: 1.7rem;
}

woa-order-details-panel .order-request-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  margin-top: 5px;
  margin-bottom: 15px;
}

woa-order-details-panel .order-request-item-qty {
  -webkit-flex-basis: 30px;
  -ms-flex-preferred-size: 30px;
  flex-basis: 30px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  text-align: left;
  font-weight: 700;
}

woa-order-details-panel .order-request-item-details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 10px;
  margin-right: auto;
}

woa-order-details-panel .order-request-item-details-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

woa-order-details-panel .order-request-item-details-header-icon {
  margin-right: 10px;
  --woa-icon-size: 17px;
}

woa-order-details-panel .order-request-item-details-header-name {
  font-weight: 700;
  text-align: left;
}

woa-order-details-panel .order-request-item-details-component {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 5px;
}

woa-order-details-panel .order-request-item-details-component-name {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-weight: 600;
  text-align: left;
}

woa-order-details-panel .order-request-item-details-component-name:before {
  content: "•";
  font-size: 2.0rem;
  margin-right: 7px;
}

woa-order-details-panel .order-request-item-details-component-extras {
  margin-left: 15px;
}

woa-order-details-panel .order-request-item-total {
  -webkit-flex-basis: 60px;
  -ms-flex-preferred-size: 60px;
  flex-basis: 60px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  text-align: right;
}

woa-order-details-panel .order-request-subtotal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 15px;
  font-weight: 700;
}

woa-order-details-panel .order-notes {
  margin-bottom: 25px;
}

woa-order-details-panel .order-notes-text {
  margin-top: 5px;
  white-space-collapse: preserve;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.7rem;
  text-align: left;
}

woa-order-details-panel .order-payment-method {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
}

woa-order-details-panel .order-payment-method-brand {
  --woa-card-brand-width: 32px;
}

woa-order-details-panel .order-payment-method-details {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.6rem;
}

woa-order-details-panel .order-payment-action {
  margin-top: 20px;
  --woa-button-margin-left: 0;
  --woa-button-margin-right: 0;
  --woa-button-white-space: wrap;
}

woa-order-edit-panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

woa-order-edit-panel .order {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  min-height: 50px;
}

woa-order-edit-panel .order.populated {
  min-height: 85px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

woa-order-edit-panel .order-details {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  height: 100%;
  overflow-x: hidden;
  overflow-y: overlay;
}

woa-order-edit-panel .order-details-requests {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

woa-order-edit-panel .order-details-requests-request {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

woa-order-edit-panel .order-details-requests-request-heading {
  --theme-color-pair-background: var(--ovd-theme-color-panel-header-footer-pair-background, var(--woa-theme-color-panel-header-footer-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-background, var(--woa-theme-color-panel-header-footer-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-panel-header-footer-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-panel-header-footer--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-panel-header-footer--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-panel-header-footer--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-panel-header-footer--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-panel-header-footer--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-panel-header-footer-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-panel-header-footer-pair-highlighted-foreground, var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-highlighted-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-highlighted-foreground, var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-highlighted-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 54px;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 10px;
  margin-bottom: 5px;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

woa-order-edit-panel .order-details-requests-request-heading > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-edit-panel .order-details-requests-request-heading > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-edit-panel .order-details-requests-request-heading > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-edit-panel .order-details-requests-request-heading > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-edit-panel .order-details-requests-request-heading > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

@media (hover: hover) and (pointer: fine) {
  woa-order-edit-panel .order-details-requests-request-heading:hover {
    opacity: 0.5;
  }
}

@media (hover: hover) and (pointer: fine) {
  woa-order-edit-panel .order-details-requests-request-heading:active {
    opacity: 0.5;
  }
}

woa-order-edit-panel .order-details-requests-request-heading-toggle {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  margin-right: 15px;
}

woa-order-edit-panel .order-details-requests-request-heading-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

woa-order-edit-panel .order-details-requests-request-heading-body-details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

woa-order-edit-panel .order-details-requests-request-heading-body-details-title {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.9rem;
  white-space: nowrap;
}

woa-order-edit-panel .order-details-requests-request-heading-body-details-value {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  margin-left: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: calc(var(--woa-order-item-price-font-size) + 0.3rem);
  white-space: nowrap;
}

woa-order-edit-panel .order-details-requests-request-heading-body-action {
  --woa-link-font-size: 1.2rem;
}

woa-order-edit-panel .order-details-requests-request-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-left: 15px;
  margin-right: 15px;
  overflow: hidden;
}

woa-order-edit-panel .order-details-requests-request-items.collapsible {
  max-height: calc(1px * var(--max-height, 0));
  -webkit-transition: max-height 0.33s ease;
  transition: max-height 0.33s ease;
}

woa-order-edit-panel .order-details-requests-request-items:not(.collapsible) {
  margin-top: var(--woa-order-edit-items-margin-top, 10px);
  border-top: var(--woa-order-edit-items-border-width, 1px) solid rgba(var(--theme-color-pair-foreground), 0.1);
  border-bottom: var(--woa-order-edit-items-border-width, 1px) solid rgba(var(--theme-color-pair-foreground), 0.1);
}

woa-order-edit-panel .order-details-requests-request-items-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  padding-top: 15px;
  padding-bottom: 15px;
}

woa-order-edit-panel .order-details-requests-request-items-item:not(:last-child) {
  border-bottom: 1px solid rgba(var(--theme-color-pair-foreground), 0.1);
}

woa-order-edit-panel .order-details-requests-request-items-item-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  width: var(--woa-order-item-image-width);
  height: var(--woa-order-item-image-height);
  min-width: var(--woa-order-item-image-width);
  min-height: var(--woa-order-item-image-height);
  border: 1px solid rgba(var(--theme-color-pair-foreground), 0.1);
  border-radius: var(--woa-order-item-image-border-radius);
}

woa-order-edit-panel .order-details-requests-request-items-item-image-object {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

woa-order-edit-panel .order-details-requests-request-items-item-image-object.emptyImg {
  visibility: hidden;
}

woa-order-edit-panel .order-details-requests-request-items-item-details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

woa-order-edit-panel .order-details-requests-request-items-item-details-heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  cursor: pointer;
}

woa-order-edit-panel .order-details-requests-request-items-item-details-heading-deal-indicator {
  margin-right: 5px;
  --woa-icon-size: var(--woa-order-item-heading-icon-size);
}

woa-order-edit-panel .order-details-requests-request-items-item-details-heading-title {
  color: rgba(var(--theme-color-pair-highlighted-foreground), 1);
  fill: rgba(var(--theme-color-pair-highlighted-foreground), 1);
  stroke: rgba(var(--theme-color-pair-highlighted-foreground), 1);
  font-size: var(--woa-order-item-name-font-size);
  font-weight: 700;
  line-height: calc(var(--woa-order-item-name-font-size) + 0.3rem);
  text-align: left;
}

woa-order-edit-panel .order-details-requests-request-items-item-details-heading-title > * {
  color: rgba(var(--theme-color-pair-highlighted-foreground), 1);
  fill: rgba(var(--theme-color-pair-highlighted-foreground), 1);
  stroke: rgba(var(--theme-color-pair-highlighted-foreground), 1);
}

woa-order-edit-panel .order-details-requests-request-items-item-details-heading-title > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-highlighted-foreground), 1);
}

woa-order-edit-panel .order-details-requests-request-items-item-details-heading-title > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-highlighted-foreground), 1);
}

woa-order-edit-panel .order-details-requests-request-items-item-details-heading-title > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-highlighted-foreground), 1);
}

woa-order-edit-panel .order-details-requests-request-items-item-details-heading-title > * ::placeholder {
  color: rgba(var(--theme-color-pair-highlighted-foreground), 1);
}

woa-order-edit-panel .order-details-requests-request-items-item-details-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 5px;
}

woa-order-edit-panel .order-details-requests-request-items-item-details-content-components {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

woa-order-edit-panel .order-details-requests-request-items-item-details-content-components-component:not(:first-child) {
  margin-top: 5px;
}

woa-order-edit-panel .order-details-requests-request-items-item-details-content-components-component-title {
  font-size: var(--woa-order-item-component-name-font-size);
  font-weight: 600;
  line-height: calc(var(--woa-order-item-component-name-font-size) + 0.3rem);
  text-align: left;
}

woa-order-edit-panel .order-details-requests-request-items-item-details-controls {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

woa-order-edit-panel .order-details-requests-request-items-item-details-controls-quantity {
  --woa-quantity-control-field-height: 40px;
  --woa-quantity-control-value-margin: 8px;
}

woa-order-edit-panel .order-details-requests-request-items-item-details-controls-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

woa-order-edit-panel .order-details-requests-request-items-item-price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-basis: var(--woa-order-item-price-col-width);
  -ms-flex-preferred-size: var(--woa-order-item-price-col-width);
  flex-basis: var(--woa-order-item-price-col-width);
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  font-size: var(--woa-order-item-price-font-size);
  font-weight: 700;
  line-height: calc(var(--woa-order-item-name-font-size) + 0.3rem);
  white-space: nowrap;
}

woa-order-errors-panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

woa-order-extras-panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  font-size: 1.5rem;
  line-height: 1.7rem;
}

woa-order-extras-panel .extras {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

woa-order-extras-panel .extras-total {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 5px;
  font-size: var(--woa-order-item-extras-font-size);
  font-weight: 600;
  text-align: left;
}

woa-order-extras-panel .extras-extra {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: var(--woa-order-item-extras-font-size);
  font-weight: 400;
  text-align: left;
  color: rgba(var(--theme-color-pair-foreground), 0.8);
}

woa-order-extras-panel .extras-extra.single-select {
  font-style: italic;
}

woa-order-extras-panel .extras-extra.nested {
  padding-left: 10px;
}

woa-order-extras-panel .extras-extra.nested:before {
  content: "•";
  padding-right: 5px;
}

woa-order-extras-panel .extras-extra-qty {
  margin-right: 5px;
}

woa-order-extras-panel .extras-extra-qty:after {
  content: "x";
}

woa-order-extras-panel .extras-extra-item {
  text-align: left;
}

woa-dietary-panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: var(--woa-dietary-panel-flex-wrap, nowrap);
  -ms-flex-wrap: var(--woa-dietary-panel-flex-wrap, nowrap);
  flex-wrap: var(--woa-dietary-panel-flex-wrap, nowrap);
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: var(--woa-dietary-panel-justify-content, flex-start);
  -webkit-justify-content: var(--woa-dietary-panel-justify-content, flex-start);
  -ms-flex-pack: var(--woa-dietary-panel-justify-content, flex-start);
  justify-content: var(--woa-dietary-panel-justify-content, flex-start);
  gap: 5px;
}

woa-dietary-panel .kilojoules {
  margin-top: var(--woa-dietary-panel-margin-top, 0);
  margin-bottom: var(--woa-dietary-panel-margin-bottom, 0);
  color: var(--woa-dietary-panel-foreground-color, var(--theme-color-pair-foreground-color));
  font-size: var(--woa-dietary-panel-kilojoules-font-size, 1.4rem);
  font-weight: var(--woa-dietary-panel-kilojoules-font-weight, 400);
  line-height: var(--woa-dietary-panel-kilojoules-font-size, 1.4rem);
}

woa-dietary-panel .indicators {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: var(--woa-dietary-panel-margin-top, 0);
  margin-bottom: var(--woa-dietary-panel-margin-bottom, 0);
  font-size: 1.3rem;
}

woa-dietary-panel .indicators-indicator {
  margin-right: 3px;
  position: relative;
}

woa-dietary-panel .indicators-indicator:last-child {
  margin-right: 0;
}

woa-dietary-panel .indicators-indicator.touched {
  --label-visibility: visible;
}

@media (hover: hover) {
  woa-dietary-panel .indicators-indicator:hover {
    --label-visibility: visible;
  }
}

woa-dietary-panel .indicators-indicator-tooltip {
  --theme-color-pair-background: var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-standard-page-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-standard-page--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-standard-page--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-standard-page--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-standard-page--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-standard-page--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-standard-page-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  border: 1px solid rgba(var(--theme-color-pair-foreground), 0.1);
  border-radius: 4px;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
  padding: 3px 10px;
  visibility: var(--label-visibility, hidden);
  position: absolute;
  top: calc(-100% - 9px);
  left: -5px;
  font-size: 1.2rem;
  white-space: nowrap;
  z-index: 2;
}

woa-dietary-panel .indicators-indicator-tooltip > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-dietary-panel .indicators-indicator-tooltip > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-dietary-panel .indicators-indicator-tooltip > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-dietary-panel .indicators-indicator-tooltip > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-dietary-panel .indicators-indicator-tooltip > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-dietary-panel .indicators-indicator-tooltip.left {
  -webkit-transform: translateX(calc(-100% + 25px));
  transform: translateX(calc(-100% + 25px));
  --arrow-right: 5px;
}

woa-dietary-panel .indicators-indicator-tooltip:not(.left) {
  --arrow-left: 8px;
}

woa-dietary-panel .indicators-indicator-tooltip:after {
  --theme-color-pair-background: var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-standard-page-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-standard-page--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-standard-page--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-standard-page--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-standard-page--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-standard-page--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-standard-page-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  content: "";
  position: absolute;
  top: calc(100% - 5px);
  left: var(--arrow-left);
  right: var(--arrow-right);
  width: 8px;
  height: 8px;
  border: 1px solid rgba(var(--theme-color-pair-foreground), 0.1);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

woa-dietary-panel .indicators-indicator-tooltip:after > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-dietary-panel .indicators-indicator-tooltip:after > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-dietary-panel .indicators-indicator-tooltip:after > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-dietary-panel .indicators-indicator-tooltip:after > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-dietary-panel .indicators-indicator-tooltip:after > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-dietary-panel .indicators-indicator-icon {
  --theme-color-pair-background: var(--ovd-theme-color-panel-header-footer-pair-background, var(--woa-theme-color-panel-header-footer-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-background, var(--woa-theme-color-panel-header-footer-pair-background)), 0.75);
  --theme-color-pair-background-shader: var(--woa-theme-color-panel-header-footer-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 0.75);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-panel-header-footer--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-panel-header-footer--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-panel-header-footer--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-panel-header-footer--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-panel-header-footer--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-panel-header-footer-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-panel-header-footer-pair-highlighted-foreground, var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-highlighted-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-highlighted-foreground, var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-highlighted-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  border: 1px solid rgba(var(--theme-color-pair-foreground), 0.05);
  border-radius: 50%;
  overflow: hidden;
  text-align: center;
}

woa-dietary-panel .indicators-indicator-icon > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-dietary-panel .indicators-indicator-icon > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-dietary-panel .indicators-indicator-icon > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-dietary-panel .indicators-indicator-icon > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-dietary-panel .indicators-indicator-icon > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-dietary-panel .indicators-indicator-icon-text {
  display: block;
  font-size: 1.0rem;
  font-weight: 600;
  line-height: 1.0rem;
  overflow: hidden;
  text-overflow: clip;
  text-transform: uppercase;
  white-space: nowrap;
}

woa-dietary-panel .indicators-indicator-icon-text.compressed {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 0.8rem;
}

woa-order-item-edit-page .mobile-page {
  --theme-color-pair-background: var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-standard-page-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-standard-page--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-standard-page--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-standard-page--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-standard-page--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-standard-page--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-standard-page-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  --woa-page-content-padding: 0;
  --woa-page-content-flex-grow: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  min-height: 100%;
}

woa-order-item-edit-page .mobile-page > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-edit-page .mobile-page > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-edit-page .mobile-page > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-edit-page .mobile-page > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-edit-page .mobile-page > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-edit-page .mobile-page > .edit:not(:first-child) {
  border-top-color: rgba(var(--theme-color-pair-foreground), 0.3);
  border-top-style: solid;
  border-top-width: 1px;
  padding-top: 10px;
}

woa-order-item-edit-page .mobile-page > .edit:not(:last-child) {
  border-bottom-color: rgba(var(--theme-color-pair-foreground), 0.3);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

woa-order-item-edit-page .mobile-page .item-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  max-height: 40vh;
  overflow: hidden;
}

woa-order-item-edit-page .mobile-page .item-image-feature-tag {
  --theme-color-pair-background: var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-brand-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-link-foreground: var(--woa-theme-color-brand--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-brand-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-brand-pair-highlighted-foreground, var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-brand-pair-highlighted-foreground, var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  position: absolute;
  top: 0;
  right: 0;
  margin-left: auto;
  font-size: 2.0rem;
  font-weight: 600;
  line-height: 2.3rem;
  text-align: center;
  padding: 3px 12px 5px 11px;
  border-radius: 0 0 0 15px;
}

woa-order-item-edit-page .mobile-page .item-image-feature-tag > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-edit-page .mobile-page .item-image-feature-tag > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-edit-page .mobile-page .item-image-feature-tag > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-edit-page .mobile-page .item-image-feature-tag > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-edit-page .mobile-page .item-image-feature-tag > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-edit-page .mobile-page .item-image-object {
  display: block;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

woa-order-item-edit-page .mobile-page .item-body {
  --theme-color-pair-background: var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-standard-page-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-standard-page--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-standard-page--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-standard-page--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-standard-page--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-standard-page--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-standard-page-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

woa-order-item-edit-page .mobile-page .item-body > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-edit-page .mobile-page .item-body > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-edit-page .mobile-page .item-body > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-edit-page .mobile-page .item-body > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-edit-page .mobile-page .item-body > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-edit-page .mobile-page .item-body.with-image {
  -webkit-box-shadow: 0 -4px 4px rgba(0, 0, 0, 0.05);
  box-shadow: 0 -4px 4px rgba(0, 0, 0, 0.05);
  border-top: 1px solid rgba(var(--theme-color-pair-foreground), 0.08);
  border-top-left-radius: var(--woa-modal-page-border-radius);
  border-top-right-radius: var(--woa-modal-page-border-radius);
  overflow: clip;
  z-index: 1;
  margin-top: calc(0px - var(--woa-modal-page-border-radius));
  --title-padding-top: 15px;
  -webkit-animation: calc(var(--woa-page-transition-period) * 2.5) ease-out 0s 1 slide-up;
  animation: calc(var(--woa-page-transition-period) * 2.5) ease-out 0s 1 slide-up;
}

@-webkit-keyframes slide-up {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  40% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slide-up {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  40% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

woa-order-item-edit-page .mobile-page .item-body:not(.with-image) {
  margin-top: var(--woa-page-navbar-height);
  --title-padding-top: 5px;
}

woa-order-item-edit-page .mobile-page .item-body-deal-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

woa-order-item-edit-page .mobile-page .item-body-deal-header-title {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  padding: 10px 15px 0;
  font-size: 2.0rem;
  font-weight: 600;
  line-height: 2.3rem;
  white-space: normal;
  text-align: center;
}

woa-order-item-edit-page .mobile-page .item-body-deal-header-title > * {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-order-item-edit-page .mobile-page .item-body-deal-header-title > * ::-webkit-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-order-item-edit-page .mobile-page .item-body-deal-header-title > * ::-moz-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-order-item-edit-page .mobile-page .item-body-deal-header-title > * ::-ms-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-order-item-edit-page .mobile-page .item-body-deal-header-title > * ::placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-order-item-edit-page .mobile-page .item-body-deal-header-subtitle {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  padding: 10px 15px 0;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 2.0rem;
  white-space: normal;
  text-align: center;
}

woa-order-item-edit-page .mobile-page .item-body-deal-header-subtitle > * {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-order-item-edit-page .mobile-page .item-body-deal-header-subtitle > * ::-webkit-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-order-item-edit-page .mobile-page .item-body-deal-header-subtitle > * ::-moz-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-order-item-edit-page .mobile-page .item-body-deal-header-subtitle > * ::-ms-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-order-item-edit-page .mobile-page .item-body-deal-header-subtitle > * ::placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-order-item-edit-page .mobile-page .item-body-item-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 9;
}

woa-order-item-edit-page .mobile-page .item-body-item-header:not(.stuck) {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 2.7rem;
  white-space: normal;
  --title-padding: var(--title-padding-top) 15px 0;
}

woa-order-item-edit-page .mobile-page .item-body-item-header.stuck {
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 2.3rem;
  white-space: nowrap;
  --title-height: var(--woa-page-navbar-height);
  --title-padding: 12px 15px 12px 72px;
  --title-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
}

woa-order-item-edit-page .mobile-page .item-body-item-header-title {
  --theme-color-pair-background: var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-standard-page-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-standard-page--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-standard-page--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-standard-page--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-standard-page--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-standard-page--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-standard-page-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  height: var(--title-height, 100%);
  width: 100%;
  -webkit-transition: padding 0.3s ease, font-size 0.3s ease;
  transition: padding 0.3s ease, font-size 0.3s ease;
  padding: var(--title-padding);
  -webkit-box-shadow: var(--title-box-shadow);
  box-shadow: var(--title-box-shadow);
}

woa-order-item-edit-page .mobile-page .item-body-item-header-title > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-edit-page .mobile-page .item-body-item-header-title > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-edit-page .mobile-page .item-body-item-header-title > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-edit-page .mobile-page .item-body-item-header-title > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-edit-page .mobile-page .item-body-item-header-title > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-edit-page .mobile-page .item-body-item-header-title-text {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 100%;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
}

woa-order-item-edit-page .mobile-page .item-body-details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 10px;
  padding-left: 15px;
  padding-right: 15px;
}

woa-order-item-edit-page .mobile-page .item-body-details-description {
  margin-bottom: 15px;
  color: var(--theme-color-pair-foreground-color);
  font-size: 1.4rem;
  text-align: left;
}

woa-order-item-edit-page .mobile-page .item-body-details-description:first-letter {
  text-transform: uppercase;
}

woa-order-item-edit-page .mobile-page .item-body-details-description p {
  margin-bottom: 0;
}

woa-order-item-edit-page .mobile-page .item-body-details-description p:first-child {
  margin-top: 0;
}

woa-order-item-edit-page .mobile-page .item-body-details-description p:not(:first-child) {
  margin-top: 10px;
}

woa-order-item-edit-page .mobile-page .item-body-details-dietary {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  --woa-dietary-panel-kilojoules-font-size: 1.6rem;
  --woa-dietary-panel-kilojoules-font-weight: 500;
}

woa-order-item-edit-page .mobile-page .item-body-details-dietary:last-child {
  --woa-dietary-panel-margin-bottom: 15px;
}

woa-order-item-edit-page .mobile-page .item-body-details-dietary:not(:last-child) {
  margin-bottom: 10px;
}

woa-order-item-edit-page .mobile-page .item-body-statement {
  margin-left: 15px;
  margin-right: 15px;
  margin-top: 10px;
}

woa-order-item-edit-page .mobile-page .item-body-statement:last-child {
  margin-bottom: 10px;
}

woa-order-item-edit-page .mobile-page .item-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  width: 100%;
}

woa-order-item-edit-page .mobile-page .item-footer-quantity {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  margin-right: 15px;
}

woa-order-item-edit-page .mobile-page .item-footer-button {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

woa-order-item-edit-page .desktop-page {
  --woa-modal-header-title-text-transform: none;
  --woa-page-content-padding: 0;
  --woa-modal-footer-control-justify-content: flex-end;
  --woa-button-tier1-width: 300px;
}

woa-order-item-edit-page .desktop-page .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

woa-order-item-edit-page .desktop-page .item.simple {
  --woa-item-edit-summary-width: 100%;
  --summary-details-border-radius: var(--woa-modal-page-border-radius);
  --summary-details-box-shadow: 0 -4px 4px rgba(0, 0, 0, 0.05);
}

woa-order-item-edit-page .desktop-page .item:not(.simple) {
  scrollbar-gutter: stable;
}

woa-order-item-edit-page .desktop-page .item:not(.simple).narrow {
  --woa-item-edit-summary-width: var(--woa-item-edit-summary-narrow-width);
}

woa-order-item-edit-page .desktop-page .item-summary {
  position: -webkit-sticky;
  position: sticky;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: var(--woa-item-edit-summary-width);
  min-width: var(--woa-item-edit-summary-width);
  padding-bottom: 15px;
  z-index: 10;
}

woa-order-item-edit-page .desktop-page .item-summary-image {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: var(--woa-item-edit-summary-image-height);
  overflow: hidden;
}

woa-order-item-edit-page .desktop-page .item-summary-image-object {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: var(--woa-item-edit-summary-image-height);
}

woa-order-item-edit-page .desktop-page .item-summary-image-tag {
  --theme-color-pair-background: var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-brand-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-link-foreground: var(--woa-theme-color-brand--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-brand-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-brand-pair-highlighted-foreground, var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-brand-pair-highlighted-foreground, var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  position: absolute;
  top: 0;
  right: 0;
  margin-left: auto;
  font-size: 2.0rem;
  font-weight: 600;
  text-align: center;
  padding: 2px 12px 2px 11px;
  border-radius: 0 0 0 15px;
}

woa-order-item-edit-page .desktop-page .item-summary-image-tag > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-edit-page .desktop-page .item-summary-image-tag > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-edit-page .desktop-page .item-summary-image-tag > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-edit-page .desktop-page .item-summary-image-tag > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-edit-page .desktop-page .item-summary-image-tag > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-edit-page .desktop-page .item-summary-details {
  --theme-color-pair-background: var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-standard-page-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-standard-page--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-standard-page--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-standard-page--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-standard-page--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-standard-page--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-standard-page-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

woa-order-item-edit-page .desktop-page .item-summary-details > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-edit-page .desktop-page .item-summary-details > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-edit-page .desktop-page .item-summary-details > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-edit-page .desktop-page .item-summary-details > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-edit-page .desktop-page .item-summary-details > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-edit-page .desktop-page .item-summary-details.with-image {
  -webkit-box-shadow: var(--summary-details-box-shadow);
  box-shadow: var(--summary-details-box-shadow);
  border-top: 1px solid rgba(var(--theme-color-pair-foreground), 0.08);
  border-top-left-radius: var(--summary-details-border-radius, 0);
  border-top-right-radius: var(--summary-details-border-radius, 0);
  overflow: clip;
  z-index: 1;
  margin-top: calc(0px - var(--summary-details-border-radius, 0));
}

woa-order-item-edit-page .desktop-page .item-summary-details-title {
  margin-top: 15px;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 30px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 2.7rem;
  white-space: normal;
  text-align: left;
  text-overflow: ellipsis;
}

woa-order-item-edit-page .desktop-page .item-summary-details-description {
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 15px;
  font-size: 1.4rem;
  line-height: 1.6rem;
  text-align: left;
}

woa-order-item-edit-page .desktop-page .item-summary-details-description:first-child {
  margin-top: 15px;
}

woa-order-item-edit-page .desktop-page .item-summary-details-dietary {
  margin-left: 15px;
  margin-right: 15px;
  --woa-dietary-panel-margin-bottom: 15px;
  --woa-dietary-panel-kilojoules-font-size: 1.6rem;
  --woa-dietary-panel-kilojoules-font-weight: 500;
}

woa-order-item-edit-page .desktop-page .item-summary-details-dietary:first-child {
  --woa-dietary-panel-margin-top: 15px;
}

woa-order-item-edit-page .desktop-page .item-summary-details-statement {
  margin-left: 15px;
  margin-right: 15px;
}

woa-order-item-edit-page .desktop-page .item-summary-details-statement:first-child {
  margin-top: 15px;
}

woa-order-item-edit-page .desktop-page .item-summary-details-statement:not(:first-child) {
  margin-top: 10px;
}

woa-order-item-edit-page .desktop-page .item-options {
  position: -webkit-sticky;
  position: sticky;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  min-width: 0;
  padding-top: 15px;
  padding-right: 15px;
  padding-left: 15px;
  padding-bottom: 5px;
}

woa-order-item-options-panel .order-item-options {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

woa-order-item-options-panel .order-item-options.desktop {
  --sizes-options-max-width: 300px;
  --size-indicator-control-size: var(--woa-desktop-extras-normal-control-size);
  --size-label-font-size: 1.3rem;
  --size-margin-top: var(--woa-desktop-extras-row-spacing-without-image);
  --simple-inclusions-align-self: flex-start;
}

woa-order-item-options-panel .order-item-options.mobile {
  --size-indicator-control-size: var(--woa-mobile-extras-normal-control-size);
  --size-label-font-size: 1.5rem;
  --size-margin-top: var(--woa-mobile-extras-row-spacing-without-image);
  --simple-inclusions-align-self: flex-end;
}

woa-order-item-options-panel .order-item-options-sizes {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 10px;
}

woa-order-item-options-panel .order-item-options-sizes-header {
  --theme-color-pair-background: var(--ovd-theme-color-panel-header-footer-pair-background, var(--woa-theme-color-panel-header-footer-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-background, var(--woa-theme-color-panel-header-footer-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-panel-header-footer-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-panel-header-footer--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-panel-header-footer--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-panel-header-footer--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-panel-header-footer--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-panel-header-footer--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-panel-header-footer-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-panel-header-footer-pair-highlighted-foreground, var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-highlighted-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-highlighted-foreground, var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-highlighted-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  padding: 13px 15px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.9rem;
  text-align: left;
  text-transform: lowercase;
}

woa-order-item-options-panel .order-item-options-sizes-header > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-options-panel .order-item-options-sizes-header > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-options-panel .order-item-options-sizes-header > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-options-panel .order-item-options-sizes-header > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-options-panel .order-item-options-sizes-header > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-options-panel .order-item-options-sizes-header:first-letter {
  text-transform: capitalize;
}

woa-order-item-options-panel .order-item-options-sizes-options {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: var(--sizes-options-max-width, unset);
  margin-top: 5px;
  margin-left: 15px;
  margin-right: 15px;
}

woa-order-item-options-panel .order-item-options-sizes-options-size {
  margin-top: var(--size-margin-top);
  margin-bottom: 6px;
}

woa-order-item-options-panel .order-item-options-simple {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

woa-order-item-options-panel .order-item-options-simple-inclusions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-align-self: var(--simple-inclusions-align-self);
  -ms-flex-item-align: var(--simple-inclusions-align-self);
  align-self: var(--simple-inclusions-align-self);
  margin-right: 15px;
  margin-bottom: 15px;
}

woa-order-item-options-panel .order-item-options-simple-inclusions-label {
  font-size: 1.5rem;
  font-weight: 600;
  margin-right: 5px;
}

woa-order-item-options-panel .order-item-options-simple-inclusions-amount {
  font-size: 1.5rem;
}

woa-order-item-options-panel .order-item-options-composite {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-top: 10px;
  border-radius: 5px;
  -webkit-box-shadow: var(--woa-composite-item-box-shadow);
  box-shadow: var(--woa-composite-item-box-shadow);
  overflow: hidden;
}

woa-order-item-options-panel .order-item-options-composite.mobile {
  margin-left: 8px;
  margin-right: 8px;
}

woa-order-item-options-panel .order-item-options-composite.error:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-order-item-options-panel .order-item-options-composite-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-left: 10px;
  margin-bottom: 10px;
}

woa-order-item-options-panel .order-item-options-composite-header:not(:last-child) {
  margin-bottom: 8px;
}

woa-order-item-options-panel .order-item-options-composite-header-indicator {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 1.8rem;
  width: 1.8rem;
  border: 1px solid rgba(var(--theme-color-pair-foreground), 0.3);
  border-radius: 9999px;
  margin-right: 10px;
}

woa-order-item-options-panel .order-item-options-composite-header-indicator.complete {
  background-color: rgba(var(--ovd-theme-color-success-foreground, var(--woa-theme-color-success-foreground)), 1);
}

woa-order-item-options-panel .order-item-options-composite-header-indicator:not(.complete) {
  background-color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-order-item-options-panel .order-item-options-composite-header-label {
  color: var(--theme-color-pair-foreground-color);
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.1rem;
  text-align: left;
}

woa-order-item-options-panel .order-item-options-composite-header-label:not(:last-child) {
  margin-bottom: 4px;
}

woa-order-item-options-panel .order-item-options-composite-unselected {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 10px;
}

woa-order-item-options-panel .order-item-options-composite-selected {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  max-height: calc(var(--woa-composite-item-image-height) + 6px);
  overflow: hidden;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 15px;
}

woa-order-item-options-panel .order-item-options-composite-selected-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  width: var(--woa-composite-item-image-width);
  height: var(--woa-composite-item-image-height);
  margin-top: 3px;
  margin-bottom: 3px;
  margin-right: 15px;
  border-radius: 10px;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

woa-order-item-options-panel .order-item-options-composite-selected-image-object {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

woa-order-item-options-panel .order-item-options-composite-selected-details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
}

woa-order-item-options-panel .order-item-options-composite-selected-details-heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 5px;
}

woa-order-item-options-panel .order-item-options-composite-selected-details-heading-label {
  color: var(--theme-color-pair-foreground-color);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6rem;
}

woa-order-item-options-panel .order-item-options-composite-selected-details-description {
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-height: 0;
  overflow: hidden;
  margin-top: 5px;
  color: var(--theme-color-pair-foreground-color);
  font-size: 1.1rem;
  line-height: 1.3rem;
  text-align: left;
}

woa-order-item-options-panel .order-item-options-composite-selected-details-description:first-letter {
  text-transform: uppercase;
}

woa-order-item-options-panel .order-item-options-composite-selected-details-description p {
  margin-bottom: 0;
}

woa-order-item-options-panel .order-item-options-composite-selected-details-description p:first-child {
  margin-top: 0;
}

woa-order-item-options-panel .order-item-options-composite-selected-details-description p:not(:first-child) {
  margin-top: 10px;
}

woa-order-item-options-panel .order-item-options-composite-selected-details-dietary {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 5px;
  margin-bottom: 2px;
  --woa-dietary-panel-kilojoules-font-size: 1.6rem;
  --woa-dietary-panel-kilojoules-font-weight: 500;
}

woa-order-item-options-panel .order-item-options-composite-plg-options {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: 15px;
}

woa-order-item-options-panel .order-item-options-composite-plg-options-option {
  padding-right: 30px;
  margin-bottom: 15px;
  --columns: 2;
  min-width: calc(100% / var(--columns));
  max-width: calc(100% / var(--columns));
}

woa-order-item-options-panel .order-item-options-composite-plg-options-option.narrow {
  --columns: 1;
}

woa-order-item-options-panel .order-item-options-composite-plg-options-option.wider {
  --columns: 3;
}

woa-order-item-options-panel .order-item-options-composite-plg-options-option:last-child {
  margin-right: auto;
}

woa-order-item-options-panel .order-item-options-composite-extras {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

woa-order-item-options-panel .order-item-options-composite-extras-inclusions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
}

woa-order-item-options-panel .order-item-options-composite-extras-inclusions.minimal {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

woa-order-item-options-panel .order-item-options-composite-extras-inclusions:not(.minimal) {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

woa-order-item-options-panel .order-item-options-composite-extras-inclusions-label {
  font-size: 1.5rem;
  font-weight: 600;
  margin-right: 5px;
}

woa-order-item-options-panel .order-item-options-composite-extras-inclusions-amount {
  font-size: 1.5rem;
}

woa-order-item-combined-extras-edit-page {
  --woa-page-content-padding: 0;
}

woa-order-item-extra-sizes-edit-page {
  --woa-modal-header-title-text-transform: lowercase;
  --woa-modal-header-title-first-letter-text-transform: capitalize;
}

woa-order-item-extra-sizes-edit-page .extras.with-images {
  --spacing: 8px;
}

woa-order-item-extra-sizes-edit-page .extras:not(.with-images) {
  --spacing: 16px;
}

woa-order-item-extra-sizes-edit-page .extras .extra:not(:last-child) {
  margin-bottom: var(--spacing);
}

woa-order-item-extras-edit-panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 15px;
}

woa-order-item-extras-edit-panel .extra-group.desktop {
  --group-spacing: var(--woa-desktop-extras-group-spacing);
  --heading-spacing: var(--woa-desktop-extras-heading-spacing);
  --row-spacing-with-image: var(--woa-desktop-extras-row-spacing-with-image);
  --row-spacing-without-image: var(--woa-desktop-extras-row-spacing-without-image);
  --group-body-flex-direction: row;
  --group-body-flex-wrap: wrap;
  --group-body-align-items: flex-start;
  --option-quantity-order: 1;
  --option-quantity-margin: 5px 0 0 0;
  --single-select-options-default-columns: 2;
}

woa-order-item-extras-edit-panel .extra-group.desktop.single-select {
  --option-padding-right: 30px;
  --option-last-margin-right: auto;
}

woa-order-item-extras-edit-panel .extra-group.desktop.multi-select.compact {
  --option-width: calc(125px + var(--woa-desktop-extras-compact-image-size));
}

woa-order-item-extras-edit-panel .extra-group.desktop.multi-select:not(.compact) {
  --option-width: calc(125px + var(--woa-desktop-extras-normal-image-size));
}

woa-order-item-extras-edit-panel .extra-group.mobile {
  --group-spacing: var(--woa-mobile-extras-group-spacing);
  --heading-spacing: var(--woa-mobile-extras-heading-spacing);
  --row-spacing-with-image: var(--woa-mobile-extras-row-spacing-with-image);
  --row-spacing-without-image: var(--woa-mobile-extras-row-spacing-without-image);
  --group-body-flex-direction: column;
  --group-body-flex-wrap: nowrap;
  --group-body-align-items: stretch;
  --option-quantity-order: 0;
  --option-quantity-margin: 0 0 0 auto;
  --single-select-options-default-columns: 1;
}

woa-order-item-extras-edit-panel .extra-group.single-select {
  --columns: var(--single-select-options-default-columns);
  --option-width: calc(100% / var(--columns));
}

woa-order-item-extras-edit-panel .extra-group.single-select.narrow {
  --columns: 1;
}

woa-order-item-extras-edit-panel .extra-group.single-select.wider {
  --columns: 3;
}

woa-order-item-extras-edit-panel .extra-group-header {
  --theme-color-pair-background: var(--ovd-theme-color-panel-header-footer-pair-background, var(--woa-theme-color-panel-header-footer-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-background, var(--woa-theme-color-panel-header-footer-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-panel-header-footer-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-panel-header-footer--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-panel-header-footer--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-panel-header-footer--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-panel-header-footer--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-panel-header-footer--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-panel-header-footer-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-panel-header-footer-pair-highlighted-foreground, var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-highlighted-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-highlighted-foreground, var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-highlighted-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  margin-bottom: var(--heading-spacing);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 15px;
}

woa-order-item-extras-edit-panel .extra-group-header > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-extras-edit-panel .extra-group-header > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-extras-edit-panel .extra-group-header > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-extras-edit-panel .extra-group-header > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-extras-edit-panel .extra-group-header > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-item-extras-edit-panel .extra-group-header-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  min-width: 0;
  text-align: left;
}

woa-order-item-extras-edit-panel .extra-group-header-title-extra {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.9rem;
  text-transform: lowercase;
}

woa-order-item-extras-edit-panel .extra-group-header-title-extra:first-letter {
  text-transform: capitalize;
}

woa-order-item-extras-edit-panel .extra-group-header-title-quantity {
  margin-top: 5px;
  font-size: 1.3rem;
  font-weight: 600;
}

woa-order-item-extras-edit-panel .extra-group-header-title-quantity.error {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-order-item-extras-edit-panel .extra-group-header-title-quantity.error > * {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-order-item-extras-edit-panel .extra-group-header-title-quantity.error > * ::-webkit-input-placeholder {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-order-item-extras-edit-panel .extra-group-header-title-quantity.error > * ::-moz-placeholder {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-order-item-extras-edit-panel .extra-group-header-title-quantity.error > * ::-ms-input-placeholder {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-order-item-extras-edit-panel .extra-group-header-title-quantity.error > * ::placeholder {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-order-item-extras-edit-panel .extra-group-header-title-quantity:not(.error) {
  color: rgba(var(--theme-color-pair-foreground), 0.7);
  fill: rgba(var(--theme-color-pair-foreground), 0.7);
  stroke: rgba(var(--theme-color-pair-foreground), 0.7);
}

woa-order-item-extras-edit-panel .extra-group-header-title-quantity:not(.error) > * {
  color: rgba(var(--theme-color-pair-foreground), 0.7);
  fill: rgba(var(--theme-color-pair-foreground), 0.7);
  stroke: rgba(var(--theme-color-pair-foreground), 0.7);
}

woa-order-item-extras-edit-panel .extra-group-header-title-quantity:not(.error) > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 0.7);
}

woa-order-item-extras-edit-panel .extra-group-header-title-quantity:not(.error) > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 0.7);
}

woa-order-item-extras-edit-panel .extra-group-header-title-quantity:not(.error) > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 0.7);
}

woa-order-item-extras-edit-panel .extra-group-header-title-quantity:not(.error) > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 0.7);
}

woa-order-item-extras-edit-panel .extra-group-header-selection {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-left: 10px;
}

woa-order-item-extras-edit-panel .extra-group-header-selection-selected {
  color: rgba(var(--theme-color-pair-foreground), 0.7);
  fill: rgba(var(--theme-color-pair-foreground), 0.7);
  stroke: rgba(var(--theme-color-pair-foreground), 0.7);
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  font-size: 1.3rem;
  font-weight: 600;
}

woa-order-item-extras-edit-panel .extra-group-header-selection-selected > * {
  color: rgba(var(--theme-color-pair-foreground), 0.7);
  fill: rgba(var(--theme-color-pair-foreground), 0.7);
  stroke: rgba(var(--theme-color-pair-foreground), 0.7);
}

woa-order-item-extras-edit-panel .extra-group-header-selection-selected > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 0.7);
}

woa-order-item-extras-edit-panel .extra-group-header-selection-selected > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 0.7);
}

woa-order-item-extras-edit-panel .extra-group-header-selection-selected > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 0.7);
}

woa-order-item-extras-edit-panel .extra-group-header-selection-selected > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 0.7);
}

woa-order-item-extras-edit-panel .extra-group-header-selection-toggle {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  margin-left: 15px;
}

woa-order-item-extras-edit-panel .extra-group-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: var(--group-body-flex-direction);
  -ms-flex-direction: var(--group-body-flex-direction);
  flex-direction: var(--group-body-flex-direction);
  -webkit-flex-wrap: var(--group-body-flex-wrap);
  -ms-flex-wrap: var(--group-body-flex-wrap);
  flex-wrap: var(--group-body-flex-wrap);
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: var(--group-body-align-items);
  -webkit-align-items: var(--group-body-align-items);
  -ms-flex-align: var(--group-body-align-items);
  align-items: var(--group-body-align-items);
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-left: 15px;
  margin-right: 15px;
  max-height: 0;
  -webkit-transition: max-height 0.5s ease;
  transition: max-height 0.5s ease;
  overflow-x: hidden;
  overflow-y: auto;
}

woa-order-item-extras-edit-panel .extra-group-body.expanded {
  max-height: unset;
  padding-bottom: calc(var(--group-spacing) - 2px);
}

woa-order-item-extras-edit-panel .extra-group-body-option {
  min-width: var(--option-width);
  max-width: var(--option-width);
  --woa-order-item-option-control-min-height: 38px;
  padding-right: var(--option-padding-right, 0);
}

woa-order-item-extras-edit-panel .extra-group-body-option.with-image {
  margin-top: var(--row-spacing-with-image);
}

woa-order-item-extras-edit-panel .extra-group-body-option:not(.with-image) {
  margin-top: var(--row-spacing-without-image);
}

woa-order-item-extras-edit-panel .extra-group-body-option:last-child {
  margin-right: var(--option-last-margin-right, 0);
}

woa-order-item-extras-edit-panel .extra-group-body-option-action {
  pointer-events: auto;
  --woa-link-action-text-transform: lowercase;
  --woa-link-action-first-letter-text-transform: capitalize;
}

woa-order-item-extras-edit-panel .extra-group-body-option-quantity {
  margin: var(--option-quantity-margin);
  -webkit-box-ordinal-group: var(--option-quantity-order);
  -webkit-order: var(--option-quantity-order);
  -ms-flex-order: var(--option-quantity-order);
  order: var(--option-quantity-order);
  --woa-quantity-control-field-height: 38px;
  --woa-quantity-control-value-margin: 5px;
}

woa-order-item-extras-edit-panel .extra-group-body-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding-top: 5px;
  padding-left: 0;
  padding-right: 0;
}

woa-order-item-extras-edit-panel .extra-group-body-list-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-top: 2px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6rem;
}

woa-order-item-extras-edit-panel .extra-group-body-list-item.nested {
  padding-left: 10px;
}

woa-order-item-extras-edit-panel .extra-group-body-list-item.nested:before {
  content: "•";
  padding-right: 5px;
}

woa-order-item-extras-edit-panel .extra-group-body-list-item-qty {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-right: 5px;
}

woa-order-item-extras-edit-panel .extra-group-body-list-item-qty:after {
  content: "x";
}

woa-order-item-option-control {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.4rem;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

woa-order-item-option-control.horizontal {
  --title-font-size: 1.6rem;
  --details-flex-direction: row;
  --details-flex-grow: 1;
  --details-align-items: center;
  --body-margin-right: 0;
  --price-min-width: 77px;
  --price-margin-left: 5px;
}

woa-order-item-option-control.horizontal.with-content {
  --order-item-align-items: flex-start;
}

woa-order-item-option-control.horizontal:not(.with-content) {
  --order-item-align-items: center;
}

woa-order-item-option-control.vertical {
  --order-item-align-items: flex-start;
  --title-font-size: 1.4rem;
  --details-flex-direction: column;
  --details-flex-grow: 0;
  --details-align-items: flex-start;
  --body-margin-right: 5px;
}

woa-order-item-option-control.desktop-size.compact {
  --image-size: var(--woa-desktop-extras-compact-image-size);
  --selected-image-border-width: var(--woa-desktop-extras-compact-selected-image-border-width);
  --woa-selector-control-size: var(--woa-desktop-extras-compact-control-size);
  --image-overlay-remove-margin: var(--woa-desktop-extras-compact-image-overlay-remove-margin);
  --details-transform: translateY(calc(-0.5 * (var(--woa-desktop-extras-normal-control-size) - var(--woa-desktop-extras-compact-control-size))));
}

woa-order-item-option-control.desktop-size:not(.compact) {
  --image-size: var(--woa-desktop-extras-normal-image-size);
  --selected-image-border-width: var(--woa-desktop-extras-normal-selected-image-border-width);
  --woa-selector-control-size: var(--woa-desktop-extras-normal-control-size);
  --image-overlay-remove-margin: var(--woa-desktop-extras-normal-image-overlay-remove-margin);
}

woa-order-item-option-control.mobile-size.compact {
  --image-size: var(--woa-mobile-extras-compact-image-size);
  --selected-image-border-width: var(--woa-mobile-extras-compact-selected-image-border-width);
  --woa-selector-control-size: var(--woa-mobile-extras-compact-control-size);
  --image-overlay-remove-margin: var(--woa-mobile-extras-compact-image-overlay-remove-margin);
  --details-transform: translateY(calc(-0.5 * (var(--woa-mobile-extras-normal-control-size) - var(--woa-mobile-extras-compact-control-size))));
}

woa-order-item-option-control.mobile-size:not(.compact) {
  --image-size: var(--woa-mobile-extras-normal-image-size);
  --selected-image-border-width: var(--woa-mobile-extras-normal-selected-image-border-width);
  --woa-selector-control-size: var(--woa-mobile-extras-normal-control-size);
  --image-overlay-remove-margin: var(--woa-mobile-extras-normal-image-overlay-remove-margin);
}

woa-order-item-option-control.with-image {
  --selector-align-self: flex-start;
  --control-transform: translateX(calc(0px - var(--woa-selector-control-size)));
  --woa-selector-background-color: rgba(var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background)), 1);
}

woa-order-item-option-control.with-image.compact {
  --selector-margin-top: 2px;
}

woa-order-item-option-control.with-image:not(.compact) {
  --selector-margin-top: 4px;
}

woa-order-item-option-control:not(.with-image).aligned {
  --control-transform: translateX(calc(var(--image-size) - var(--woa-selector-control-size) + 0px));
  --body-margin-left: calc(var(--image-size) + 8px);
}

woa-order-item-option-control:not(.with-image):not(.aligned).with-control {
  --body-margin-left: calc(var(--woa-selector-control-size) + 8px);
}

woa-order-item-option-control:not(.with-image):not(.aligned):not(.with-control) {
  --body-margin-left: 0;
}

woa-order-item-option-control:not(.with-image).horizontal.with-content {
  --selector-margin-top: 9px;
}

woa-order-item-option-control:not(.aligned) {
  --image-size: var(--woa-selector-control-size);
}

woa-order-item-option-control.unavailable {
  opacity: 50%;
}

woa-order-item-option-control .order-item-option {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: var(--order-item-align-items);
  -webkit-align-items: var(--order-item-align-items);
  -ms-flex-align: var(--order-item-align-items);
  align-items: var(--order-item-align-items);
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
  overflow: visible;
}

woa-order-item-option-control .order-item-option-image {
  position: relative;
  width: var(--image-size);
  height: var(--image-size);
  min-width: var(--image-size);
  min-height: var(--image-size);
  border-width: 2px;
  border-style: solid;
  border-color: #c4c4c4;
  border-radius: 50%;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}

woa-order-item-option-control .order-item-option-image.selected {
  border-color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 0.7);
  border-width: var(--selected-image-border-width);
  --object-margin: calc(2px - var(--selected-image-border-width));
}

woa-order-item-option-control .order-item-option-image-object {
  z-index: -1;
  width: calc(var(--image-size) - 4px);
  height: calc(var(--image-size) - 4px);
  min-width: calc(var(--image-size) - 4px);
  min-height: calc(var(--image-size) - 4px);
  margin: var(--object-margin, 0);
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

woa-order-item-option-control .order-item-option-image-object.emptyImg {
  visibility: hidden;
}

woa-order-item-option-control .order-item-option-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
}

woa-order-item-option-control .order-item-option-image-overlay-remove {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin: var(--image-overlay-remove-margin);
  opacity: var(--woa-extras-image-overlay-remove-opacity);
}

woa-order-item-option-control .order-item-option-selector {
  width: 0;
  margin-top: var(--selector-margin-top);
  -webkit-align-self: var(--selector-align-self);
  -ms-flex-item-align: var(--selector-align-self);
  align-self: var(--selector-align-self);
  overflow: visible;
  -webkit-transform: var(--control-transform);
  transform: var(--control-transform);
}

woa-order-item-option-control .order-item-option-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-left: var(--body-margin-left, 8px);
  margin-right: var(--body-margin-right);
}

woa-order-item-option-control .order-item-option-body-details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: var(--details-flex-direction);
  -ms-flex-direction: var(--details-flex-direction);
  flex-direction: var(--details-flex-direction);
  -webkit-box-flex: var(--details-flex-grow);
  -webkit-flex-grow: var(--details-flex-grow);
  -ms-flex-positive: var(--details-flex-grow);
  flex-grow: var(--details-flex-grow);
  -webkit-box-align: var(--details-align-items);
  -webkit-align-items: var(--details-align-items);
  -ms-flex-align: var(--details-align-items);
  align-items: var(--details-align-items);
  -webkit-transform: var(--details-transform);
  transform: var(--details-transform);
  min-height: var(--woa-order-item-option-control-min-height, 38px);
}

woa-order-item-option-control .order-item-option-body-details-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--theme-color-pair-foreground-color);
  font-size: var(--title-font-size);
  font-weight: 700;
  line-height: calc(var(--title-font-size) + 0.3rem);
  text-align: left;
}

woa-order-item-option-control .order-item-option-body-details-price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  min-width: var(--price-min-width, 0);
  margin-left: var(--price-margin-left, 0);
  white-space: nowrap;
}

woa-order-item-option-control .order-item-option-body-details-price-guest {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: rgba(var(--theme-color-pair-foreground), 0.7);
  font-size: calc(var(--title-font-size) - 0.1rem - var(--woa-menu-product-price-strikeout-font-reduction));
  font-weight: 700;
  line-height: calc(var(--title-font-size) + 0.2rem - var(--woa-menu-product-price-strikeout-font-reduction));
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
  text-decoration-thickness: var(--woa-menu-product-price-strikeout-thickness);
  -webkit-text-decoration-color: rgba(var(--theme-color-pair-foreground), 0.3);
  text-decoration-color: rgba(var(--theme-color-pair-foreground), 0.3);
}

woa-order-item-option-control .order-item-option-body-details-price-guest-sign {
  margin-right: 2px;
}

woa-order-item-option-control .order-item-option-body-details-price-actual {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: calc(var(--title-font-size) - 0.1rem);
  font-weight: 700;
  line-height: calc(var(--title-font-size) + 0.2rem);
}

woa-order-item-option-control .order-item-option-body-details-price-actual.discounted {
  margin-left: 5px;
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-order-item-option-control .order-item-option-body-details-price-actual:not(.discounted) {
  color: rgba(var(--theme-color-pair-foreground), 0.7);
}

woa-order-item-option-control .order-item-option-body-details-price-actual-sign {
  margin-right: 2px;
}

woa-order-item-option-control .order-item-option-body-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

woa-order-item-option-control .order-item-option-body-content > :first-child {
  margin-top: 5px;
}

woa-order-item-option-control .order-item-option-body-content > :last-child {
  margin-bottom: 2px;
}

woa-order-item-plg-edit-page .items.with-images {
  --spacing: 8px;
}

woa-order-item-plg-edit-page .items:not(.with-images) {
  --spacing: 16px;
}

woa-order-item-plg-edit-page .items.unavailable {
  opacity: 50%;
}

woa-order-item-plg-edit-page .items .item:not(:last-child) {
  margin-bottom: var(--spacing);
}

woa-order-summary-icon .order-summary {
  background-color: transparent;
  position: relative;
  margin-top: 7px;
  margin-right: 8px;
  cursor: pointer;
}

@keyframes flash {
  33% {
    -webkit-transform: scale3d(1.15, 1.15, 1.15);
    transform: scale3d(1.15, 1.15, 1.15);
  }
}

woa-order-summary-icon .order-summary.highlighted {
  -webkit-animation-name: flash;
  animation-name: flash;
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
}

woa-order-summary-icon .order-summary-icon {
  --woa-icon-size: 27px;
}

woa-order-summary-icon .order-summary-count {
  --theme-color-pair-background: var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-brand-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-link-foreground: var(--woa-theme-color-brand--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-brand-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-brand-pair-highlighted-foreground, var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-brand-pair-highlighted-foreground, var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: -6px;
  right: -8px;
  height: 16px;
  width: 16px;
  margin-left: -8px;
  border-radius: 9999px;
  font-size: 1.0rem;
  font-weight: bold;
}

woa-order-summary-icon .order-summary-count > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-summary-icon .order-summary-count > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-summary-icon .order-summary-count > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-summary-icon .order-summary-count > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-summary-icon .order-summary-count > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-totals-panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

woa-order-totals-panel .order-spinner {
  margin-left: auto;
  margin-right: auto;
  --woa-spinner-size: 22px;
}

woa-order-totals-panel .order-totals {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding-bottom: 4px;
}

woa-order-totals-panel .order-totals-total {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6rem;
}

woa-order-totals-panel .order-totals-total:not(:last-child) {
  padding-bottom: 5px;
}

woa-order-totals-panel .order-totals-total.final {
  color: rgba(var(--theme-color-pair-highlighted-foreground), 1);
  fill: rgba(var(--theme-color-pair-highlighted-foreground), 1);
  stroke: rgba(var(--theme-color-pair-highlighted-foreground), 1);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8rem;
}

woa-order-totals-panel .order-totals-total.final > * {
  color: rgba(var(--theme-color-pair-highlighted-foreground), 1);
  fill: rgba(var(--theme-color-pair-highlighted-foreground), 1);
  stroke: rgba(var(--theme-color-pair-highlighted-foreground), 1);
}

woa-order-totals-panel .order-totals-total.final > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-highlighted-foreground), 1);
}

woa-order-totals-panel .order-totals-total.final > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-highlighted-foreground), 1);
}

woa-order-totals-panel .order-totals-total.final > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-highlighted-foreground), 1);
}

woa-order-totals-panel .order-totals-total.final > * ::placeholder {
  color: rgba(var(--theme-color-pair-highlighted-foreground), 1);
}

woa-order-totals-panel .order-totals-total.saving {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8rem;
}

woa-order-totals-panel .order-totals-total.saving > * {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-order-totals-panel .order-totals-total.saving > * ::-webkit-input-placeholder {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-order-totals-panel .order-totals-total.saving > * ::-moz-placeholder {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-order-totals-panel .order-totals-total.saving > * ::-ms-input-placeholder {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-order-totals-panel .order-totals-total.saving > * ::placeholder {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-order-totals-panel .order-totals-total-description {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

woa-order-totals-panel .order-totals-total-description-action {
  margin-left: 10px;
  --woa-link-font-size: 1.3rem;
}

woa-order-totals-panel .order-totals-total-value {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

woa-customer-notes-edit-page {
  --woa-text-area-initial-height: 200px;
}

woa-location-search-panel .shroud {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 100;
}

woa-location-search-panel .location-search {
  position: relative;
  display: block;
  z-index: 101;
}

woa-location-search-panel .location-search-entry {
  --theme-color-pair-foreground: var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-standard-page-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-color: rgba(var(--theme-color-pair-foreground), 0.3);
  border-width: 1px;
  border-style: solid;
  border-radius: 9000px;
  padding-left: 18px;
  padding-right: 12px;
}

woa-location-search-panel .location-search-entry > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-location-search-panel .location-search-entry > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-location-search-panel .location-search-entry > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-location-search-panel .location-search-entry > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-location-search-panel .location-search-entry > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-location-search-panel .location-search-entry-input {
  background-color: transparent;
  border: none;
  width: 100%;
  height: 36px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7rem;
}

woa-location-search-panel .location-search-entry-placeholder {
  position: absolute;
  top: 0;
  left: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  margin-left: 2px;
  pointer-events: none;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.7rem;
}

woa-location-search-panel .location-search-entry-icon {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 10px;
  --woa-icon-size: 17px;
}

woa-location-search-panel .location-search-results {
  --theme-color-pair-background: var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-standard-page-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-standard-page--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-standard-page--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-standard-page--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-standard-page--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-standard-page--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-standard-page-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  top: calc(100% - 1px);
  left: 18px;
  width: calc(100% - 36px);
  border: 1px solid rgba(var(--theme-color-pair-foreground), 0.3);
}

woa-location-search-panel .location-search-results > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-location-search-panel .location-search-results > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-location-search-panel .location-search-results > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-location-search-panel .location-search-results > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-location-search-panel .location-search-results > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-location-search-panel .location-search-results-result {
  padding: 7px 10px;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6rem;
}

woa-location-search-panel .location-search-results-result:not(:last-child) {
  border-bottom: 1px solid rgba(var(--theme-color-pair-foreground), 0.15);
}

woa-location-search-panel .location-search-results-copyright {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  padding: 5px;
}

woa-location-search-panel .location-search-results-copyright img {
  background: initial;
  display: block;
}

woa-order-time-selection-page {
  --woa-modal-page-height: 55vh;
}

woa-order-time-selection-page .timing {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  height: 100%;
  --field-spacing: 15px;
  --date-field-width: 160px;
  --time-field-width: 160px;
  --time-cell-font-size: 1.2rem;
  --time-cell-min-width: 60px;
  --date-list-margin-left: 22px;
  --time-list-margin-right: 11px;
  --date-list-drop-down-arrow-left: 75px;
  --time-grid-drop-down-arrow-right: 98px;
  --time-list-drop-down-arrow-right: 87px;
}

woa-order-time-selection-page .timing.mobile.medium {
  --field-spacing: 10px;
  --time-cell-min-width: 57px;
  --time-cell-font-size: 1.1rem;
  --date-list-margin-left: 10px;
  --time-list-margin-right: 1px;
  --time-grid-drop-down-arrow-right: 88px;
}

woa-order-time-selection-page .timing.mobile.small {
  --field-spacing: 8px;
  --time-field-width: 140px;
  --time-cell-min-width: 47px;
  --time-cell-font-size: 1.0rem;
  --date-list-margin-left: 0;
  --time-list-margin-right: 0;
  --time-grid-drop-down-arrow-right: 60px;
}

woa-order-time-selection-page .timing-message {
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}

woa-order-time-selection-page .timing-selection {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

woa-order-time-selection-page .timing-selection-field.date {
  margin-right: var(--field-spacing);
  min-width: var(--date-field-width);
}

woa-order-time-selection-page .timing-selection-field.time {
  min-width: var(--time-field-width);
}

woa-order-time-selection-page .timing-select {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  min-height: 0;
  z-index: 1;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 15px;
  padding-bottom: 15px;
}

woa-order-time-selection-page .timing-select-message {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 15px;
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
}

woa-order-time-selection-page .timing-select-message :not(:last-child) {
  margin-right: 10px;
}

woa-order-time-selection-page .timing-select .drop-down {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  position: relative;
  top: 0;
  border-top: 1px solid rgba(var(--theme-color-pair-foreground), 0.2);
  border-left: 1px solid rgba(var(--theme-color-pair-foreground), 0.2);
  -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

woa-order-time-selection-page .timing-select .drop-down:before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--drop-down-arrow-left, unset);
  right: var(--drop-down-arrow-right, unset);
  width: 20px;
  height: 20px;
  --theme-color-pair-background: var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-standard-page-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-standard-page--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-standard-page--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-standard-page--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-standard-page--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-standard-page--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-standard-page-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(var(--theme-color-pair-foreground), 0.3);
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: rgba(var(--theme-color-pair-foreground), 0.3);
  -webkit-box-shadow: -1px -1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: -1px -1px 2px rgba(0, 0, 0, 0.1);
  -webkit-clip-path: polygon(-2px -2px, 100% -2px, -2px 100%);
  clip-path: polygon(-2px -2px, 100% -2px, -2px 100%);
  -webkit-transform: translateY(-9px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg);
}

woa-order-time-selection-page .timing-select .drop-down:before > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-time-selection-page .timing-select .drop-down:before > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-time-selection-page .timing-select .drop-down:before > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-time-selection-page .timing-select .drop-down:before > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-time-selection-page .timing-select .drop-down:before > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-time-selection-page .timing-select-date-list {
  --theme-color-pair-background: var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-standard-page-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-standard-page--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-standard-page--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-standard-page--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-standard-page--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-standard-page--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-standard-page-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  width: 170px;
  margin-left: var(--date-list-margin-left);
  --drop-down-arrow-left: var(--date-list-drop-down-arrow-left);
}

woa-order-time-selection-page .timing-select-date-list > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-time-selection-page .timing-select-date-list > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-time-selection-page .timing-select-date-list > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-time-selection-page .timing-select-date-list > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-time-selection-page .timing-select-date-list > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-time-selection-page .timing-select-date-list-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

woa-order-time-selection-page .timing-select-date-list-content-date:not(:last-child) {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(var(--theme-color-pair-foreground), 0.1);
}

woa-order-time-selection-page .timing-select-date-list-content-date-button {
  padding: 6px 15px;
  cursor: pointer;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4rem;
}

@media (hover: hover) {
  woa-order-time-selection-page .timing-select-date-list-content-date-button:hover {
    --theme-color-pair-background: var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background));
    --theme-color-pair-background-color: rgba(var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background)), 1);
    --theme-color-pair-background-shader: var(--woa-theme-color-brand-pair-background-shader);
    background-color: rgba(var(--theme-color-pair-background), 1);
    --ovd-theme-color-link-foreground: var(--woa-theme-color-brand--link-foreground, var(--woa-theme-color-link-foreground));
    --theme-color-pair-foreground: var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
    --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground)), 1);
    --theme-color-pair-foreground-shader: var(--woa-theme-color-brand-pair-foreground-shader);
    --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-brand-pair-highlighted-foreground, var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-foreground))));
    --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-brand-pair-highlighted-foreground, var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-foreground)))), 1);
    color: rgba(var(--theme-color-pair-foreground), 1);
    fill: rgba(var(--theme-color-pair-foreground), 1);
    stroke: rgba(var(--theme-color-pair-foreground), 1);
  }
  woa-order-time-selection-page .timing-select-date-list-content-date-button:hover > * {
    color: rgba(var(--theme-color-pair-foreground), 1);
    fill: rgba(var(--theme-color-pair-foreground), 1);
    stroke: rgba(var(--theme-color-pair-foreground), 1);
  }
  woa-order-time-selection-page .timing-select-date-list-content-date-button:hover > * ::-webkit-input-placeholder {
    color: rgba(var(--theme-color-pair-foreground), 1);
  }
  woa-order-time-selection-page .timing-select-date-list-content-date-button:hover > * ::-moz-placeholder {
    color: rgba(var(--theme-color-pair-foreground), 1);
  }
  woa-order-time-selection-page .timing-select-date-list-content-date-button:hover > * ::-ms-input-placeholder {
    color: rgba(var(--theme-color-pair-foreground), 1);
  }
  woa-order-time-selection-page .timing-select-date-list-content-date-button:hover > * ::placeholder {
    color: rgba(var(--theme-color-pair-foreground), 1);
  }
}

@media (hover: none) {
  woa-order-time-selection-page .timing-select-date-list-content-date-button:active {
    --theme-color-pair-background: var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background));
    --theme-color-pair-background-color: rgba(var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background)), 1);
    --theme-color-pair-background-shader: var(--woa-theme-color-brand-pair-background-shader);
    background-color: rgba(var(--theme-color-pair-background), 1);
    --ovd-theme-color-link-foreground: var(--woa-theme-color-brand--link-foreground, var(--woa-theme-color-link-foreground));
    --theme-color-pair-foreground: var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
    --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground)), 1);
    --theme-color-pair-foreground-shader: var(--woa-theme-color-brand-pair-foreground-shader);
    --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-brand-pair-highlighted-foreground, var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-foreground))));
    --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-brand-pair-highlighted-foreground, var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-foreground)))), 1);
    color: rgba(var(--theme-color-pair-foreground), 1);
    fill: rgba(var(--theme-color-pair-foreground), 1);
    stroke: rgba(var(--theme-color-pair-foreground), 1);
  }
  woa-order-time-selection-page .timing-select-date-list-content-date-button:active > * {
    color: rgba(var(--theme-color-pair-foreground), 1);
    fill: rgba(var(--theme-color-pair-foreground), 1);
    stroke: rgba(var(--theme-color-pair-foreground), 1);
  }
  woa-order-time-selection-page .timing-select-date-list-content-date-button:active > * ::-webkit-input-placeholder {
    color: rgba(var(--theme-color-pair-foreground), 1);
  }
  woa-order-time-selection-page .timing-select-date-list-content-date-button:active > * ::-moz-placeholder {
    color: rgba(var(--theme-color-pair-foreground), 1);
  }
  woa-order-time-selection-page .timing-select-date-list-content-date-button:active > * ::-ms-input-placeholder {
    color: rgba(var(--theme-color-pair-foreground), 1);
  }
  woa-order-time-selection-page .timing-select-date-list-content-date-button:active > * ::placeholder {
    color: rgba(var(--theme-color-pair-foreground), 1);
  }
}

woa-order-time-selection-page .timing-select-time-grid {
  --theme-color-pair-background: var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-standard-page-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-standard-page--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-standard-page--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-standard-page--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-standard-page--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-standard-page--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-standard-page-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  --drop-down-arrow-right: var(--time-grid-drop-down-arrow-right);
}

woa-order-time-selection-page .timing-select-time-grid > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-time-selection-page .timing-select-time-grid > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-time-selection-page .timing-select-time-grid > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-time-selection-page .timing-select-time-grid > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-time-selection-page .timing-select-time-grid > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-time-selection-page .timing-select-time-grid-content {
  align-self: stretch;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--time-cell-min-width), 1fr));
}

woa-order-time-selection-page .timing-select-time-grid-content-group {
  display: contents;
}

woa-order-time-selection-page .timing-select-time-grid-content-group-time {
  border-bottom: 1px solid rgba(var(--theme-color-pair-foreground), 0.3);
  border-right: 1px solid rgba(var(--theme-color-pair-foreground), 0.3);
}

woa-order-time-selection-page .timing-select-time-grid-content-group-time:first-child {
  grid-column-start: 1;
}

woa-order-time-selection-page .timing-select-time-grid-content-group-time-cell {
  padding: 7px 3px;
  cursor: pointer;
  text-align: center;
  font-size: var(--time-cell-font-size);
  font-weight: 600;
  line-height: var(--time-cell-font-size);
}

woa-order-time-selection-page .timing-select-time-grid-content-group-time-cell.carryOver {
  background-color: rgba(var(--theme-color-pair-background-shader), 0.25);
}

@media (hover: hover) {
  woa-order-time-selection-page .timing-select-time-grid-content-group-time-cell:hover {
    --theme-color-pair-background: var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background));
    --theme-color-pair-background-color: rgba(var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background)), 1);
    --theme-color-pair-background-shader: var(--woa-theme-color-brand-pair-background-shader);
    background-color: rgba(var(--theme-color-pair-background), 1);
    --ovd-theme-color-link-foreground: var(--woa-theme-color-brand--link-foreground, var(--woa-theme-color-link-foreground));
    --theme-color-pair-foreground: var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
    --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground)), 1);
    --theme-color-pair-foreground-shader: var(--woa-theme-color-brand-pair-foreground-shader);
    --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-brand-pair-highlighted-foreground, var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-foreground))));
    --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-brand-pair-highlighted-foreground, var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-foreground)))), 1);
    color: rgba(var(--theme-color-pair-foreground), 1);
    fill: rgba(var(--theme-color-pair-foreground), 1);
    stroke: rgba(var(--theme-color-pair-foreground), 1);
  }
  woa-order-time-selection-page .timing-select-time-grid-content-group-time-cell:hover > * {
    color: rgba(var(--theme-color-pair-foreground), 1);
    fill: rgba(var(--theme-color-pair-foreground), 1);
    stroke: rgba(var(--theme-color-pair-foreground), 1);
  }
  woa-order-time-selection-page .timing-select-time-grid-content-group-time-cell:hover > * ::-webkit-input-placeholder {
    color: rgba(var(--theme-color-pair-foreground), 1);
  }
  woa-order-time-selection-page .timing-select-time-grid-content-group-time-cell:hover > * ::-moz-placeholder {
    color: rgba(var(--theme-color-pair-foreground), 1);
  }
  woa-order-time-selection-page .timing-select-time-grid-content-group-time-cell:hover > * ::-ms-input-placeholder {
    color: rgba(var(--theme-color-pair-foreground), 1);
  }
  woa-order-time-selection-page .timing-select-time-grid-content-group-time-cell:hover > * ::placeholder {
    color: rgba(var(--theme-color-pair-foreground), 1);
  }
}

@media (hover: none) {
  woa-order-time-selection-page .timing-select-time-grid-content-group-time-cell:active {
    --theme-color-pair-background: var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background));
    --theme-color-pair-background-color: rgba(var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background)), 1);
    --theme-color-pair-background-shader: var(--woa-theme-color-brand-pair-background-shader);
    background-color: rgba(var(--theme-color-pair-background), 1);
    --ovd-theme-color-link-foreground: var(--woa-theme-color-brand--link-foreground, var(--woa-theme-color-link-foreground));
    --theme-color-pair-foreground: var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
    --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground)), 1);
    --theme-color-pair-foreground-shader: var(--woa-theme-color-brand-pair-foreground-shader);
    --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-brand-pair-highlighted-foreground, var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-foreground))));
    --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-brand-pair-highlighted-foreground, var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-foreground)))), 1);
    color: rgba(var(--theme-color-pair-foreground), 1);
    fill: rgba(var(--theme-color-pair-foreground), 1);
    stroke: rgba(var(--theme-color-pair-foreground), 1);
  }
  woa-order-time-selection-page .timing-select-time-grid-content-group-time-cell:active > * {
    color: rgba(var(--theme-color-pair-foreground), 1);
    fill: rgba(var(--theme-color-pair-foreground), 1);
    stroke: rgba(var(--theme-color-pair-foreground), 1);
  }
  woa-order-time-selection-page .timing-select-time-grid-content-group-time-cell:active > * ::-webkit-input-placeholder {
    color: rgba(var(--theme-color-pair-foreground), 1);
  }
  woa-order-time-selection-page .timing-select-time-grid-content-group-time-cell:active > * ::-moz-placeholder {
    color: rgba(var(--theme-color-pair-foreground), 1);
  }
  woa-order-time-selection-page .timing-select-time-grid-content-group-time-cell:active > * ::-ms-input-placeholder {
    color: rgba(var(--theme-color-pair-foreground), 1);
  }
  woa-order-time-selection-page .timing-select-time-grid-content-group-time-cell:active > * ::placeholder {
    color: rgba(var(--theme-color-pair-foreground), 1);
  }
}

woa-order-time-selection-page .timing-select-time-grid-content-group-time-cell.unavailable {
  opacity: 40%;
  pointer-events: none;
  cursor: auto;
}

woa-order-time-selection-page .timing-select-time-list {
  --theme-color-pair-background: var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-standard-page-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-standard-page--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-standard-page--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-standard-page--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-standard-page--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-standard-page--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-standard-page-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  width: 200px;
  margin-left: auto;
  margin-right: var(--time-list-margin-right);
  --drop-down-arrow-right: var(--time-list-drop-down-arrow-right);
}

woa-order-time-selection-page .timing-select-time-list > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-time-selection-page .timing-select-time-list > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-time-selection-page .timing-select-time-list > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-time-selection-page .timing-select-time-list > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-time-selection-page .timing-select-time-list > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-time-selection-page .timing-select-time-list-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

woa-order-time-selection-page .timing-select-time-list-content-time:not(:last-child) {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(var(--theme-color-pair-foreground), 0.1);
}

woa-order-time-selection-page .timing-select-time-list-content-time-button {
  padding: 6px 15px;
  cursor: pointer;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4rem;
}

woa-order-time-selection-page .timing-select-time-list-content-time-button.carryOver {
  background-color: rgba(var(--theme-color-pair-background-shader), 0.25);
}

@media (hover: hover) {
  woa-order-time-selection-page .timing-select-time-list-content-time-button:hover {
    --theme-color-pair-background: var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background));
    --theme-color-pair-background-color: rgba(var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background)), 1);
    --theme-color-pair-background-shader: var(--woa-theme-color-brand-pair-background-shader);
    background-color: rgba(var(--theme-color-pair-background), 1);
    --ovd-theme-color-link-foreground: var(--woa-theme-color-brand--link-foreground, var(--woa-theme-color-link-foreground));
    --theme-color-pair-foreground: var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
    --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground)), 1);
    --theme-color-pair-foreground-shader: var(--woa-theme-color-brand-pair-foreground-shader);
    --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-brand-pair-highlighted-foreground, var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-foreground))));
    --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-brand-pair-highlighted-foreground, var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-foreground)))), 1);
    color: rgba(var(--theme-color-pair-foreground), 1);
    fill: rgba(var(--theme-color-pair-foreground), 1);
    stroke: rgba(var(--theme-color-pair-foreground), 1);
  }
  woa-order-time-selection-page .timing-select-time-list-content-time-button:hover > * {
    color: rgba(var(--theme-color-pair-foreground), 1);
    fill: rgba(var(--theme-color-pair-foreground), 1);
    stroke: rgba(var(--theme-color-pair-foreground), 1);
  }
  woa-order-time-selection-page .timing-select-time-list-content-time-button:hover > * ::-webkit-input-placeholder {
    color: rgba(var(--theme-color-pair-foreground), 1);
  }
  woa-order-time-selection-page .timing-select-time-list-content-time-button:hover > * ::-moz-placeholder {
    color: rgba(var(--theme-color-pair-foreground), 1);
  }
  woa-order-time-selection-page .timing-select-time-list-content-time-button:hover > * ::-ms-input-placeholder {
    color: rgba(var(--theme-color-pair-foreground), 1);
  }
  woa-order-time-selection-page .timing-select-time-list-content-time-button:hover > * ::placeholder {
    color: rgba(var(--theme-color-pair-foreground), 1);
  }
}

@media (hover: none) {
  woa-order-time-selection-page .timing-select-time-list-content-time-button:active {
    --theme-color-pair-background: var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background));
    --theme-color-pair-background-color: rgba(var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background)), 1);
    --theme-color-pair-background-shader: var(--woa-theme-color-brand-pair-background-shader);
    background-color: rgba(var(--theme-color-pair-background), 1);
    --ovd-theme-color-link-foreground: var(--woa-theme-color-brand--link-foreground, var(--woa-theme-color-link-foreground));
    --theme-color-pair-foreground: var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
    --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground)), 1);
    --theme-color-pair-foreground-shader: var(--woa-theme-color-brand-pair-foreground-shader);
    --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-brand-pair-highlighted-foreground, var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-foreground))));
    --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-brand-pair-highlighted-foreground, var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-foreground)))), 1);
    color: rgba(var(--theme-color-pair-foreground), 1);
    fill: rgba(var(--theme-color-pair-foreground), 1);
    stroke: rgba(var(--theme-color-pair-foreground), 1);
  }
  woa-order-time-selection-page .timing-select-time-list-content-time-button:active > * {
    color: rgba(var(--theme-color-pair-foreground), 1);
    fill: rgba(var(--theme-color-pair-foreground), 1);
    stroke: rgba(var(--theme-color-pair-foreground), 1);
  }
  woa-order-time-selection-page .timing-select-time-list-content-time-button:active > * ::-webkit-input-placeholder {
    color: rgba(var(--theme-color-pair-foreground), 1);
  }
  woa-order-time-selection-page .timing-select-time-list-content-time-button:active > * ::-moz-placeholder {
    color: rgba(var(--theme-color-pair-foreground), 1);
  }
  woa-order-time-selection-page .timing-select-time-list-content-time-button:active > * ::-ms-input-placeholder {
    color: rgba(var(--theme-color-pair-foreground), 1);
  }
  woa-order-time-selection-page .timing-select-time-list-content-time-button:active > * ::placeholder {
    color: rgba(var(--theme-color-pair-foreground), 1);
  }
}

woa-order-time-selection-page .timing-select-time-list-content-time-button.unavailable {
  opacity: 40%;
  pointer-events: none;
  cursor: auto;
}

woa-order-type-selection-panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

woa-order-type-selection-panel .order-type-selection-intro {
  margin-bottom: 15px;
}

woa-order-type-selection-panel .order-type-selection-actions {
  width: 100%;
}

woa-order-type-selection-panel .order-type-selection-actions > :not(:last-child) {
  margin-bottom: 15px;
}

woa-ordering-context-edit-page {
  --woa-modal-page-min-height: 300px;
}

woa-ordering-context-edit-page .context-error {
  margin-top: 10px;
}

woa-ordering-context-edit-page .change-order-type {
  --woa-link-font-size: 1.6rem;
}

woa-ordering-context-panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 64px;
  background-color: rgba(var(--theme-color-pair-background-shader), 0.15);
}

woa-ordering-context-panel .ordering-context-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
}

woa-ordering-context-panel .ordering-context-body-summary {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-size: 1.4rem;
  text-align: left;
}

woa-ordering-context-panel .ordering-context-body-summary > :not(:last-child) {
  margin-bottom: 5px;
}

woa-ordering-context-panel .ordering-context-body-summary-primary {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

woa-ordering-context-panel .ordering-context-body-summary-primary-order-type {
  font-weight: 700;
  white-space: nowrap;
  margin-right: 4px;
}

woa-ordering-context-panel .ordering-context-body-summary-primary-asap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

woa-ordering-context-panel .ordering-context-body-summary-primary-asap-label {
  font-weight: 700;
  margin-right: 10px;
}

woa-ordering-context-panel .ordering-context-body-summary-primary-asap-eta {
  font-weight: 500;
}

woa-ordering-context-panel .ordering-context-body-summary-primary-time {
  margin-left: 10px;
  font-weight: 500;
}

woa-ordering-context-panel .ordering-context-body-summary-primary-table {
  margin-left: 10px;
  font-weight: 500;
}

woa-ordering-context-panel .ordering-context-body-summary-primary-from-store {
  margin-left: 4px;
  font-weight: 500;
}

woa-ordering-context-panel .ordering-context-body-summary-primary-to-address {
  margin-left: 4px;
  font-weight: 500;
}

woa-ordering-context-panel .ordering-context-body-summary-query {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  text-align: left;
  font-weight: 700;
}

woa-ordering-context-panel .ordering-context-body-summary-secondary {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  font-weight: 500;
}

woa-ordering-context-panel .ordering-context-body-summary-secondary > :not(:last-child) {
  margin-right: 10px;
}

woa-ordering-context-panel .ordering-context-body-action {
  --woa-button-tier2-side-padding: 22px;
  --woa-button-margin-right: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  margin-left: 15px;
}

woa-ordering-context-selection-page {
  --woa-modal-page-min-height: 300px;
}

woa-ordering-context-selection-page .store-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-bottom: 5px;
}

woa-ordering-context-selection-page .store-header.mobile {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

woa-ordering-context-selection-page .store-header.desktop {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

woa-ordering-context-selection-page .store-header-address-search {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

woa-ordering-context-selection-page .store-header-address-search.desktop {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

woa-ordering-context-selection-page .store-header-address-search.desktop.with-order-type-options {
  -webkit-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

woa-ordering-context-selection-page .store-header-address-search.desktop:not(.with-order-type-options) {
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

woa-ordering-context-selection-page .store-header-delivery-address {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

woa-ordering-context-selection-page .store-header-delivery-address.desktop {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

woa-ordering-context-selection-page .store-header-delivery-address.desktop.with-order-type-options {
  -webkit-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

woa-ordering-context-selection-page .store-header-delivery-address.desktop:not(.with-order-type-options) {
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

woa-ordering-context-selection-page .store-header-delivery-address-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 7px;
  margin-left: 20px;
  margin-right: 15px;
}

woa-ordering-context-selection-page .store-header-delivery-address-title-label {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6rem;
}

woa-ordering-context-selection-page .store-header-delivery-address-title-label > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-ordering-context-selection-page .store-header-delivery-address-title-label > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-ordering-context-selection-page .store-header-delivery-address-title-label > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-ordering-context-selection-page .store-header-delivery-address-title-label > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-ordering-context-selection-page .store-header-delivery-address-title-label > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-ordering-context-selection-page .store-header-delivery-address-details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 36px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 0.3);
  border-radius: 9999px;
  padding-left: 18px;
  padding-right: 10px;
}

woa-ordering-context-selection-page .store-header-delivery-address-details-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  overflow: hidden;
  max-height: 100%;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6rem;
}

woa-ordering-context-selection-page .store-header-delivery-address-details-action {
  -webkit-flex-basis: 18px;
  -ms-flex-preferred-size: 18px;
  flex-basis: 18px;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  --woa-icon-button-icon-size: 15px;
}

woa-ordering-context-selection-page .store-header-delivery-address-details-action:not(:last-child) {
  margin-right: 10px;
}

woa-ordering-context-selection-page .store-header-delivery-address-error {
  margin-top: 8px;
  margin-left: 10px;
  margin-right: 10px;
}

woa-ordering-context-selection-page .store-header-options {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

woa-ordering-context-selection-page .store-header-options.mobile {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 8px;
}

woa-ordering-context-selection-page .store-header-options.mobile > :last-child {
  margin-left: auto;
}

woa-ordering-context-selection-page .store-header-options.desktop {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-left: auto;
}

woa-ordering-context-selection-page .store-header-options.desktop > :not(:first-child) {
  margin-top: 5px;
}

woa-ordering-context-selection-page .order-type-selection {
  margin-top: 10px;
  margin-bottom: 10px;
}

woa-ordering-context-selection-page .table-selection {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  position: relative;
}

woa-ordering-context-selection-page .table-selection-qr-code-web-video {
  -o-object-fit: cover;
  object-fit: cover;
  min-height: 0;
}

woa-ordering-context-selection-page .table-selection-qr-guideline {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}

woa-ordering-context-selection-page .table-selection-qr-guideline-top-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: 25%;
  border-top: 5px solid rgba(128, 128, 128, 0.5);
  border-left: 5px solid rgba(128, 128, 128, 0.5);
  border-radius: 2px;
  background: transparent;
}

woa-ordering-context-selection-page .table-selection-qr-guideline-top-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 25%;
  height: 25%;
  border-top: 5px solid rgba(128, 128, 128, 0.5);
  border-right: 5px solid rgba(128, 128, 128, 0.5);
  border-radius: 2px;
  background: transparent;
}

woa-ordering-context-selection-page .table-selection-qr-guideline-bottom-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25%;
  height: 25%;
  border-bottom: 5px solid rgba(128, 128, 128, 0.5);
  border-left: 5px solid rgba(128, 128, 128, 0.5);
  border-radius: 2px;
  background: transparent;
}

woa-ordering-context-selection-page .table-selection-qr-guideline-bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 25%;
  height: 25%;
  border-bottom: 5px solid rgba(128, 128, 128, 0.5);
  border-right: 5px solid rgba(128, 128, 128, 0.5);
  border-radius: 2px;
  background: transparent;
}

woa-ordering-context-selection-page .delivery-address-entry {
  margin-top: 15px;
  --woa-text-area-initial-height: 99px;
}

woa-ordering-context-selection-page .table-ordering-message {
  margin-bottom: 15px;
}

woa-ordering-context-selection-page .stores {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

woa-ordering-context-selection-page .stores-store {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-bottom: 15px;
}

woa-ordering-context-selection-page .stores-store:not(:first-child) {
  padding-top: 15px;
}

woa-ordering-context-selection-page .stores-store:not(:last-child) {
  border-bottom: 1px solid rgba(var(--theme-color-pair-foreground), 0.15);
}

woa-ordering-context-selection-page .stores-no-stores {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  margin-top: 10px;
}

woa-ordering-page .mobile-page {
  --woa-page-content-padding: 0;
  --woa-page-messages-padding: var(--woa-page-default-content-padding);
  --woa-full-page-title-text-max-width: calc(100% - 122px);
}

woa-ordering-page .mobile-page.order-view {
  --woa-page-content-flex-grow: 1;
}

woa-ordering-page .mobile-page-ordering-context {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

woa-ordering-page .mobile-page-promo-carousel {
  margin-top: 15px;
  margin-bottom: 10px;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
}

woa-ordering-page .mobile-page-store-image {
  margin-left: var(--woa-promo-slide-side-margin);
  margin-right: var(--woa-promo-slide-side-margin);
  margin-top: 15px;
  margin-bottom: 10px;
  --width: calc(100vw - 2 * var(--woa-promo-slide-side-margin));
  width: var(--width);
  height: calc(var(--width) / var(--woa-promo-slide-aspect-ratio));
}

woa-ordering-page .mobile-page-feature-buttons.order-view {
  --theme-color-pair-background: var(--ovd-theme-color-panel-pair-background, var(--woa-theme-color-panel-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-panel-pair-background, var(--woa-theme-color-panel-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-panel-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-panel--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-panel--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-panel--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-panel--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-panel--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-panel-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-panel-pair-highlighted-foreground, var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-highlighted-foreground, var(--woa-theme-color-panel-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-panel-pair-highlighted-foreground, var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-highlighted-foreground, var(--woa-theme-color-panel-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-ordering-page .mobile-page-feature-buttons.order-view > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-ordering-page .mobile-page-feature-buttons.order-view > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-ordering-page .mobile-page-feature-buttons.order-view > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-ordering-page .mobile-page-feature-buttons.order-view > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-ordering-page .mobile-page-feature-buttons.order-view > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-ordering-page .mobile-page-menu-subcategory-anchors {
  position: fixed;
  z-index: 101;
  width: 100%;
}

woa-ordering-page .mobile-page-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: auto;
  padding: 14px;
}

woa-ordering-page .mobile-page-footer-logo {
  margin-top: 15px;
}

woa-ordering-page .mobile-page-order {
  --theme-color-pair-background: var(--ovd-theme-color-panel-pair-background, var(--woa-theme-color-panel-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-panel-pair-background, var(--woa-theme-color-panel-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-panel-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-panel--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-panel--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-panel--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-panel--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-panel--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-panel-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-panel-pair-highlighted-foreground, var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-highlighted-foreground, var(--woa-theme-color-panel-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-panel-pair-highlighted-foreground, var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-highlighted-foreground, var(--woa-theme-color-panel-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}

woa-ordering-page .mobile-page-order > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-ordering-page .mobile-page-order > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-ordering-page .mobile-page-order > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-ordering-page .mobile-page-order > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-ordering-page .mobile-page-order > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-ordering-page .mobile-page-payment-legal {
  --woa-legal-side-margins: 12px;
  --woa-legal-max-width: 100%;
  --woa-legal-font-size: 1.2rem;
}

woa-ordering-page .desktop-page {
  --woa-page-messages-padding: var(--woa-page-default-content-padding);
}

woa-ordering-page .desktop-page .page.pillarboxed {
  --side-selector-margin-left: 0px;
}

woa-ordering-page .desktop-page-promo-carousel {
  width: var(--main-content-width);
  padding-top: 15px;
}

woa-ordering-page .desktop-page-menu-categories {
  --woa-menu-category-selection-panel-margin-top: 0;
}

woa-ordering-page .desktop-page-menu-categories.narrow {
  width: var(--woa-desktop-menu-category-selector-narrow-width);
}

woa-ordering-page .desktop-page-menu-categories:not(.narrow).with-images {
  width: var(--woa-desktop-menu-category-selector-width-with-images);
}

woa-ordering-page .desktop-page-menu-categories:not(.narrow):not(.with-images) {
  width: var(--woa-desktop-menu-category-selector-width-without-images);
}

woa-ordering-page .desktop-page-menu-subcategory-anchors {
  --woa-menu-subcategory-anchor-panel-box-shadow: none;
}

woa-ordering-page .desktop-page-menu-items {
  --woa-menu-item-selection-panel-content-margin-top: 0;
}

woa-ordering-page .desktop-page-feature-buttons {
  --theme-color-pair-background: var(--ovd-theme-color-panel-pair-background, var(--woa-theme-color-panel-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-panel-pair-background, var(--woa-theme-color-panel-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-panel-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-panel--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-panel--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-panel--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-panel--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-panel--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-panel-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-panel-pair-highlighted-foreground, var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-highlighted-foreground, var(--woa-theme-color-panel-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-panel-pair-highlighted-foreground, var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-highlighted-foreground, var(--woa-theme-color-panel-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
  z-index: 1;
}

woa-ordering-page .desktop-page-feature-buttons > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-ordering-page .desktop-page-feature-buttons > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-ordering-page .desktop-page-feature-buttons > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-ordering-page .desktop-page-feature-buttons > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-ordering-page .desktop-page-feature-buttons > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-ordering-page .desktop-page-order {
  --theme-color-pair-background: var(--ovd-theme-color-panel-pair-background, var(--woa-theme-color-panel-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-panel-pair-background, var(--woa-theme-color-panel-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-panel-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-panel--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-panel--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-panel--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-panel--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-panel--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-panel-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-panel-pair-highlighted-foreground, var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-highlighted-foreground, var(--woa-theme-color-panel-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-panel-pair-highlighted-foreground, var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-highlighted-foreground, var(--woa-theme-color-panel-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  --woa-order-edit-items-border-width: 0;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-height: 90px;
}

woa-ordering-page .desktop-page-order > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-ordering-page .desktop-page-order > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-ordering-page .desktop-page-order > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-ordering-page .desktop-page-order > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-ordering-page .desktop-page-order > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-ordering-page .desktop-page-payment-legal {
  margin-top: 15px;
  --woa-legal-text-display: block;
  --woa-legal-side-margins: auto;
  --woa-legal-max-width: 100%;
  --woa-legal-font-size: 1.2rem;
}

woa-ordering-page .group-order-notice {
  --woa-footer-message-decorator-margin-right: 20px;
}

woa-ordering-page .marketing-opt-in {
  margin-bottom: 10px;
}

woa-ordering-page .totals {
  width: 100%;
  margin-bottom: 10px;
}

woa-feature-button-panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  padding-left: 15px;
  padding-right: 15px;
}

woa-feature-button-panel .feature-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  gap: 5px;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 15px;
}

woa-feature-button-panel .feature-buttons-button {
  --woa-button-tier1-width: 115px;
  --woa-button-tier1-height: auto;
  --woa-button-min-height: 65px;
  --woa-button-tier1-side-padding: 5px;
  --woa-button-tier1-icon-size: 20px;
  --woa-button-tier1-font-size: 1.4rem;
  --woa-button-tier1-line-height: 1.6rem;
  --woa-button-tier1-font-weight: 700;
  --woa-button-tier1-content-spacing: 6px;
  --woa-button-white-space: normal;
  --woa-group-order-summary-icon-size: 20px;
  --woa-button-margin-left: 0;
  --woa-button-margin-right: 0;
}

woa-feature-button-panel .feature-buttons-button.card {
  --woa-loyalty-card-width: 115px;
  --woa-loyalty-card-max-width: 115px;
  --woa-loyalty-card-height: 65px;
}

woa-order-heading-panel {
  --theme-color-pair-background: var(--ovd-theme-color-panel-pair-background, var(--woa-theme-color-panel-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-panel-pair-background, var(--woa-theme-color-panel-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-panel-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-panel--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-panel--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-panel--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-panel--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-panel--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-panel-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-panel-pair-highlighted-foreground, var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-highlighted-foreground, var(--woa-theme-color-panel-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-panel-pair-highlighted-foreground, var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-highlighted-foreground, var(--woa-theme-color-panel-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 25px;
  padding-left: 15px;
  padding-right: 15px;
}

woa-order-heading-panel > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-heading-panel > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-heading-panel > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-heading-panel > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-heading-panel > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-order-heading-panel .order-heading-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 2.7rem;
  white-space: nowrap;
}

woa-order-heading-panel .order-heading-notes {
  margin-left: auto;
}

woa-reorder-page {
  --woa-page-content-padding: 0;
  --woa-page-content-justify-content: flex-start;
  --woa-page-footer-align-items: stretch;
  --woa-order-edit-items-margin-top: 0;
  --woa-order-edit-items-border-width: 0;
}

woa-desktop-home-page-layout {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  height: 100%;
  width: 100%;
}

woa-desktop-home-page-layout .redirecting {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 2.2rem;
  text-align: center;
}

woa-desktop-home-page-layout .scroller {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: var(--available-height) !important;
  max-height: var(--available-height) !important;
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-padding-top: var(--woa-desktop-header-navbar-height);
  scrollbar-gutter: stable;
}

woa-desktop-home-page-layout .page {
  --content-gutter-width: 0px;
  --sidebar-max-width: var(--woa-sidebar-max-width);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  min-height: 100%;
  min-width: 100%;
}

woa-desktop-home-page-layout .page.pillarboxed {
  --sidebar-gap-right: 0px;
  --woa-desktop-titlebar-padding-left: 0;
}

woa-desktop-home-page-layout .page:not(.pillarboxed) {
  --sidebar-gap-right: 15px;
}

woa-desktop-home-page-layout .page:not(.pillarboxed).sidebar-fixed {
  --sidebar-adjustment-right: var(--scroller-scrollbar-width);
}

woa-desktop-home-page-layout .page:not(.narrow) {
  --sidebar-min-width: var(--woa-sidebar-min-width);
}

woa-desktop-home-page-layout .page.narrow {
  --sidebar-min-width: var(--woa-sidebar-narrow-min-width);
}

woa-desktop-home-page-layout .page.wider {
  --content-gutter-width: calc(var(--content-width) / 8);
}

woa-desktop-home-page-layout .page.widest {
  --content-gutter-width: calc(var(--content-width) / 6);
}

woa-desktop-home-page-layout .page-header-navbar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
  --box-shadow-color: rgba(var(--theme-color-pair-background), 0.25);
  --background-transition-time: var(--woa-desktop-header-navbar-scroll-transition-time);
}

woa-desktop-home-page-layout .page-header-navbar:not(.page-scrolled).with-no-header-image {
  --background-opacity: var(--woa-desktop-header-navbar-scrolled-opacity);
}

woa-desktop-home-page-layout .page-header-navbar:not(.page-scrolled):not(.with-no-header-image) {
  --background-opacity: var(--woa-desktop-header-navbar-unscrolled-opacity);
}

@media (hover: hover) {
  woa-desktop-home-page-layout .page-header-navbar:not(.page-scrolled):not(.with-no-header-image):hover {
    --background-transition-time: var(--woa-desktop-header-navbar-hover-transition-time);
    --background-opacity: var(--woa-desktop-header-navbar-hover-opacity);
  }
}

@media (hover: none) {
  woa-desktop-home-page-layout .page-header-navbar:not(.page-scrolled):not(.with-no-header-image):active {
    --background-transition-time: var(--woa-desktop-header-navbar-hover-transition-time);
    --background-opacity: var(--woa-desktop-header-navbar-hover-opacity);
  }
}

woa-desktop-home-page-layout .page-header-navbar.page-scrolled {
  --background-opacity: var(--woa-desktop-header-navbar-scrolled-opacity);
}

woa-desktop-home-page-layout .page-header-navbar.placement-full-width {
  width: var(--available-width);
  margin-left: var(--pillarbox-gutter-width);
  margin-right: var(--pillarbox-gutter-width);
  --controls-margin-right: 30px;
}

woa-desktop-home-page-layout .page-header-navbar.placement-content {
  width: 100%;
  --controls-margin-right: 18px;
}

woa-desktop-home-page-layout .page-header-navbar-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: var(--woa-desktop-header-navbar-height);
  --theme-color-pair-background: var(--ovd-theme-color-standard-page-header-pair-background, var(--woa-theme-color-standard-page-header-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-standard-page-header-pair-background, var(--woa-theme-color-standard-page-header-pair-background)), var(--background-opacity));
  --theme-color-pair-background-shader: var(--woa-theme-color-standard-page-header-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), var(--background-opacity));
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-standard-page-header--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-standard-page-header--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-standard-page-header--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-standard-page-header--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-standard-page-header--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-standard-page-header-pair-foreground, var(--woa-theme-color-standard-page-header-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-standard-page-header-pair-foreground, var(--woa-theme-color-standard-page-header-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-standard-page-header-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-standard-page-header-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-header-pair-foreground, var(--woa-theme-color-standard-page-header-pair-highlighted-foreground, var(--woa-theme-color-standard-page-header-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-standard-page-header-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-header-pair-foreground, var(--woa-theme-color-standard-page-header-pair-highlighted-foreground, var(--woa-theme-color-standard-page-header-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  -webkit-transition: background-color var(--background-transition-time) ease;
  transition: background-color var(--background-transition-time) ease;
  -webkit-box-shadow: 0 4px 4px var(--box-shadow-color);
  box-shadow: 0 4px 4px var(--box-shadow-color);
}

woa-desktop-home-page-layout .page-header-navbar-body > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-desktop-home-page-layout .page-header-navbar-body > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-desktop-home-page-layout .page-header-navbar-body > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-desktop-home-page-layout .page-header-navbar-body > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-desktop-home-page-layout .page-header-navbar-body > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-desktop-home-page-layout .page-header-navbar-body-menu {
  margin-left: 19px;
  z-index: 1;
}

woa-desktop-home-page-layout .page-header-navbar-body-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

woa-desktop-home-page-layout .page-header-navbar-body-logo svg {
  -webkit-filter: var(--logo-filter, none);
  filter: var(--logo-filter, none);
  -webkit-transition: fill var(--background-transition-time) ease, -webkit-filter var(--background-transition-time) ease;
  transition: fill var(--background-transition-time) ease, -webkit-filter var(--background-transition-time) ease;
  transition: filter var(--background-transition-time) ease, fill var(--background-transition-time) ease;
  transition: filter var(--background-transition-time) ease, fill var(--background-transition-time) ease, -webkit-filter var(--background-transition-time) ease;
}

woa-desktop-home-page-layout .page-header-navbar-body-logo:not(.page-scrolled).with-header-image {
  --theme-color-pair-foreground: var(--ovd-theme-color-header-image-pair-foreground, var(--woa-theme-color-header-image-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-header-image-pair-foreground, var(--woa-theme-color-header-image-pair-foreground)), var(--woa-desktop-header-image-logo-opacity));
  --theme-color-pair-foreground-shader: var(--woa-theme-color-header-image-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-header-image-pair-highlighted-foreground, var(--ovd-theme-color-header-image-pair-foreground, var(--woa-theme-color-header-image-pair-highlighted-foreground, var(--woa-theme-color-header-image-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-header-image-pair-highlighted-foreground, var(--ovd-theme-color-header-image-pair-foreground, var(--woa-theme-color-header-image-pair-highlighted-foreground, var(--woa-theme-color-header-image-pair-foreground)))), var(--woa-desktop-header-image-logo-opacity));
  color: rgba(var(--theme-color-pair-foreground), var(--woa-desktop-header-image-logo-opacity));
  fill: rgba(var(--theme-color-pair-foreground), var(--woa-desktop-header-image-logo-opacity));
  stroke: rgba(var(--theme-color-pair-foreground), var(--woa-desktop-header-image-logo-opacity));
  border-color: rgba(var(--theme-color-pair-foreground), var(--woa-desktop-header-image-logo-opacity));
  --logo-filter: drop-shadow(0 0 var(--woa-desktop-header-image-logo-shadow-blur-radius) rgba(var(--ovd-theme-color-header-image-pair-background, var(--woa-theme-color-header-image-pair-background)), 1));
}

woa-desktop-home-page-layout .page-header-navbar-body-logo:not(.page-scrolled).with-header-image > * {
  color: rgba(var(--theme-color-pair-foreground), var(--woa-desktop-header-image-logo-opacity));
  fill: rgba(var(--theme-color-pair-foreground), var(--woa-desktop-header-image-logo-opacity));
  stroke: rgba(var(--theme-color-pair-foreground), var(--woa-desktop-header-image-logo-opacity));
}

woa-desktop-home-page-layout .page-header-navbar-body-logo:not(.page-scrolled).with-header-image > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), var(--woa-desktop-header-image-logo-opacity));
}

woa-desktop-home-page-layout .page-header-navbar-body-logo:not(.page-scrolled).with-header-image > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), var(--woa-desktop-header-image-logo-opacity));
}

woa-desktop-home-page-layout .page-header-navbar-body-logo:not(.page-scrolled).with-header-image > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), var(--woa-desktop-header-image-logo-opacity));
}

woa-desktop-home-page-layout .page-header-navbar-body-logo:not(.page-scrolled).with-header-image > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), var(--woa-desktop-header-image-logo-opacity));
}

woa-desktop-home-page-layout .page-header-navbar-body-logo:not(.page-scrolled).with-header-image > * {
  border-color: rgba(var(--theme-color-pair-foreground), var(--woa-desktop-header-image-logo-opacity));
}

woa-desktop-home-page-layout .page-header-navbar-body-logo:not(.page-scrolled).with-blank-header-image {
  --theme-color-pair-foreground: var(--ovd-theme-color-standard-page-header-pair-foreground, var(--woa-theme-color-standard-page-header-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-standard-page-header-pair-foreground, var(--woa-theme-color-standard-page-header-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-standard-page-header-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-standard-page-header-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-header-pair-foreground, var(--woa-theme-color-standard-page-header-pair-highlighted-foreground, var(--woa-theme-color-standard-page-header-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-standard-page-header-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-header-pair-foreground, var(--woa-theme-color-standard-page-header-pair-highlighted-foreground, var(--woa-theme-color-standard-page-header-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  border-color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-desktop-home-page-layout .page-header-navbar-body-logo:not(.page-scrolled).with-blank-header-image > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-desktop-home-page-layout .page-header-navbar-body-logo:not(.page-scrolled).with-blank-header-image > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-desktop-home-page-layout .page-header-navbar-body-logo:not(.page-scrolled).with-blank-header-image > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-desktop-home-page-layout .page-header-navbar-body-logo:not(.page-scrolled).with-blank-header-image > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-desktop-home-page-layout .page-header-navbar-body-logo:not(.page-scrolled).with-blank-header-image > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-desktop-home-page-layout .page-header-navbar-body-logo:not(.page-scrolled).with-blank-header-image > * {
  border-color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-desktop-home-page-layout .page-header-navbar-body-controls {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-right: var(--controls-margin-right);
  z-index: 1;
}

woa-desktop-home-page-layout .page-header-image {
  position: relative;
  overflow: hidden;
  display: block;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}

woa-desktop-home-page-layout .page-header-image.placement-content {
  height: var(--woa-desktop-content-header-image-height);
  width: 100%;
}

woa-desktop-home-page-layout .page-header-image.placement-full-width {
  height: var(--woa-desktop-full-width-header-image-height);
  width: var(--available-width);
  margin-left: var(--pillarbox-gutter-width);
  margin-right: var(--pillarbox-gutter-width);
}

woa-desktop-home-page-layout .page-header-image.with-navbar {
  --title-top: calc(6px + var(--woa-desktop-header-navbar-height));
  margin-top: calc(0px - var(--woa-desktop-header-navbar-height));
}

woa-desktop-home-page-layout .page-header-image:not(.with-navbar).with-title-logo {
  --title-top: calc(6px + var(--woa-desktop-titlebar-height));
}

woa-desktop-home-page-layout .page-header-image:not(.with-navbar):not(.with-title-logo) {
  --title-top: 6px;
}

woa-desktop-home-page-layout .page-header-image-body {
  width: 100%;
  height: 100%;
}

woa-desktop-home-page-layout .page-header-image-body-title-logo {
  position: absolute;
  top: 2px;
  left: 0;
  width: 100%;
  height: var(--woa-desktop-titlebar-height);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

woa-desktop-home-page-layout .page-header-image-body-title-logo svg {
  -webkit-filter: drop-shadow(0 0 var(--woa-desktop-header-image-logo-shadow-blur-radius) var(--theme-color-pair-background-color));
  filter: drop-shadow(0 0 var(--woa-desktop-header-image-logo-shadow-blur-radius) var(--theme-color-pair-background-color));
}

woa-desktop-home-page-layout .page-header-image-body-page-logo {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

woa-desktop-home-page-layout .page-container {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  min-height: 100%;
}

woa-desktop-home-page-layout .page-container-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  min-width: 0;
  margin-left: var(--pillarbox-gutter-width);
}

woa-desktop-home-page-layout .page-container-content-titlebar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: var(--woa-desktop-titlebar-height);
  padding: 5px;
  --woa-horizontal-logo-height: calc(var(--woa-desktop-titlebar-height) - 10px);
}

woa-desktop-home-page-layout .page-container-content-messages {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
}

woa-desktop-home-page-layout .page-container-content-messages:not(:empty) {
  padding-top: var(--woa-page-messages-padding, 0);
  padding-left: var(--woa-page-messages-padding, 0);
  padding-right: var(--woa-page-messages-padding, 0);
}

woa-desktop-home-page-layout .page-container-content-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 15px;
}

woa-desktop-home-page-layout .page-container-content-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  gap: 15px;
}

woa-desktop-home-page-layout .page-container-content-body-selector {
  position: -webkit-sticky;
  position: sticky;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  max-width: 50%;
  overflow: hidden;
}

woa-desktop-home-page-layout .page-container-content-body-details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  min-width: 0;
}

woa-desktop-home-page-layout .page-container-content-body-details-header {
  position: -webkit-sticky;
  position: sticky;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  overflow: hidden;
  z-index: 101;
}

woa-desktop-home-page-layout .page-container-content-body-details-main {
  position: -webkit-sticky;
  position: sticky;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  overflow: hidden;
}

woa-desktop-home-page-layout .page-container-content-footer {
  --theme-color-pair-background: var(--ovd-theme-color-panel-header-footer-pair-background, var(--woa-theme-color-panel-header-footer-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-background, var(--woa-theme-color-panel-header-footer-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-panel-header-footer-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-panel-header-footer--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-panel-header-footer--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-panel-header-footer--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-panel-header-footer--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-panel-header-footer--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-panel-header-footer-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-panel-header-footer-pair-highlighted-foreground, var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-highlighted-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-highlighted-foreground, var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-highlighted-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  padding-bottom: Max(calc(var(--safe-area-inset-bottom, 0px) / 3), 10px);
}

woa-desktop-home-page-layout .page-container-content-footer > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-desktop-home-page-layout .page-container-content-footer > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-desktop-home-page-layout .page-container-content-footer > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-desktop-home-page-layout .page-container-content-footer > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-desktop-home-page-layout .page-container-content-footer > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-desktop-home-page-layout .page-container-content-footer-statement {
  font-size: 1.5rem;
  white-space: normal;
  text-align: left;
  padding: 10px;
}

woa-desktop-home-page-layout .page-container-sidebar-placeholder {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: calc(100% / 3 - 25px + var(--sidebar-gap-right));
  min-width: var(--sidebar-min-width);
  max-width: var(--sidebar-max-width);
  margin-right: var(--pillarbox-gutter-width);
  padding-bottom: 15px;
}

woa-desktop-home-page-layout .page-container-sidebar {
  position: fixed;
  top: unset;
  right: calc(max(var(--pillarbox-gutter-width, 0px), var(--sidebar-gap-right, 0px)) + var(--sidebar-adjustment-right, 0px));
  z-index: 1;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: calc((100% - var(--sidebar-adjustment-right, 0px)) / 3 - 25px - var(--sidebar-gap-right));
  min-width: calc(var(--sidebar-min-width) - 25px - var(--sidebar-gap-right));
  max-width: calc(var(--sidebar-max-width) - 25px - var(--sidebar-gap-right));
  padding-bottom: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

woa-desktop-home-page-layout .page-container-sidebar:not(.with-navbar) {
  --content-margin-top: 15px;
}

woa-desktop-home-page-layout .page-container-sidebar-navbar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: var(--woa-desktop-titlebar-height);
}

woa-desktop-home-page-layout .page-container-sidebar-navbar:not(.with-full-width-header) {
  margin-top: 2px;
}

woa-desktop-home-page-layout .page-container-sidebar-navbar-controls {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

woa-desktop-home-page-layout .page-container-sidebar-content {
  --theme-color-pair-background: var(--ovd-theme-color-panel-pair-background, var(--woa-theme-color-panel-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-panel-pair-background, var(--woa-theme-color-panel-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-panel-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-panel--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-panel--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-panel--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-panel--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-panel--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-panel-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-panel-pair-highlighted-foreground, var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-highlighted-foreground, var(--woa-theme-color-panel-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-panel-pair-highlighted-foreground, var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-highlighted-foreground, var(--woa-theme-color-panel-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  border-left: var(--woa-sidebar-border-width) solid rgba(var(--ovd-theme-color-panel-header-footer-pair-background, var(--woa-theme-color-panel-header-footer-pair-background)), 1);
  border-right: var(--woa-sidebar-border-width) solid rgba(var(--ovd-theme-color-panel-header-footer-pair-background, var(--woa-theme-color-panel-header-footer-pair-background)), 1);
  -webkit-box-shadow: var(--woa-sidebar-box-shadow);
  box-shadow: var(--woa-sidebar-box-shadow);
  margin-top: var(--content-margin-top, 0);
}

woa-desktop-home-page-layout .page-container-sidebar-content > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-desktop-home-page-layout .page-container-sidebar-content > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-desktop-home-page-layout .page-container-sidebar-content > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-desktop-home-page-layout .page-container-sidebar-content > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-desktop-home-page-layout .page-container-sidebar-content > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-desktop-home-page-layout .page-container-sidebar-content-header {
  --theme-color-pair-background: var(--ovd-theme-color-panel-header-footer-pair-background, var(--woa-theme-color-panel-header-footer-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-background, var(--woa-theme-color-panel-header-footer-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-panel-header-footer-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-panel-header-footer--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-panel-header-footer--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-panel-header-footer--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-panel-header-footer--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-panel-header-footer--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-panel-header-footer-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-panel-header-footer-pair-highlighted-foreground, var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-highlighted-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-highlighted-foreground, var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-highlighted-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

woa-desktop-home-page-layout .page-container-sidebar-content-header > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-desktop-home-page-layout .page-container-sidebar-content-header > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-desktop-home-page-layout .page-container-sidebar-content-header > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-desktop-home-page-layout .page-container-sidebar-content-header > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-desktop-home-page-layout .page-container-sidebar-content-header > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-desktop-home-page-layout .page-container-sidebar-content-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

woa-desktop-home-page-layout .page-container-sidebar-content-footer {
  --theme-color-pair-background: var(--ovd-theme-color-panel-header-footer-pair-background, var(--woa-theme-color-panel-header-footer-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-background, var(--woa-theme-color-panel-header-footer-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-panel-header-footer-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-panel-header-footer--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-panel-header-footer--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-panel-header-footer--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-panel-header-footer--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-panel-header-footer--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-panel-header-footer-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-panel-header-footer-pair-highlighted-foreground, var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-highlighted-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-highlighted-foreground, var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-highlighted-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-top: 15px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
}

woa-desktop-home-page-layout .page-container-sidebar-content-footer > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-desktop-home-page-layout .page-container-sidebar-content-footer > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-desktop-home-page-layout .page-container-sidebar-content-footer > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-desktop-home-page-layout .page-container-sidebar-content-footer > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-desktop-home-page-layout .page-container-sidebar-content-footer > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-desktop-home-page-layout .page-container-sidebar-content-footer > :not(:last-child) {
  margin-bottom: 10px;
}

woa-full-page-layout {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  height: 100%;
  width: 100%;
}

woa-full-page-layout .full-page {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  height: 100%;
  width: 100%;
  --pillarbox-width: var(--woa-full-page-pillarbox-width);
}

woa-full-page-layout .full-page.allowSafeArea {
  --footer-padding-bottom: Max(calc(var(--safe-area-inset-bottom, 0px) / 3), var(--woa-page-footer-padding, var(--woa-page-default-footer-padding)));
  --content-padding-bottom: Max(calc(var(--safe-area-inset-bottom, 0px) / 3), var(--woa-page-content-padding, var(--woa-page-default-content-padding)));
}

woa-full-page-layout .full-page.woa-swipe-engaged {
  --refresh-visibility: visible;
  --refresh-indicator-transition: none;
}

woa-full-page-layout .full-page:not(.woa-swipe-engaged) {
  --refresh-visibility: hidden;
  --refresh-indicator-transition: transform 0.2s linear;
}

woa-full-page-layout .full-page.woa-swipe-primed {
  --refresh-indicator-background-color: white;
}

woa-full-page-layout .full-page:not(.woa-swipe-primed) {
  --refresh-indicator-background-color: rgba(255, 255, 255, .75);
}

woa-full-page-layout .full-page .swipe-refresh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  pointer-events: none;
  -webkit-transition: visibility 0.2s;
  transition: visibility 0.2s;
  visibility: var(--refresh-visibility);
}

woa-full-page-layout .full-page .swipe-refresh-indicator {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  z-index: 200;
  border-radius: 9999px;
  background-color: var(--refresh-indicator-background-color);
  fill: var(--woa-chewzie-orange);
  --woa-icon-size: 28px;
  -webkit-transition: var(--refresh-indicator-transition, none);
  transition: var(--refresh-indicator-transition, none);
  -webkit-transform: translateY(calc(var(--woa-swipe-distance) * 1px - 100%)) rotateZ(calc(var(--woa-swipe-proportion) * -1turn + 0.15turn));
  transform: translateY(calc(var(--woa-swipe-distance) * 1px - 100%)) rotateZ(calc(var(--woa-swipe-proportion) * -1turn + 0.15turn));
}

woa-full-page-layout .full-page .swipe-refresh-indicator-icon {
  opacity: var(--woa-swipe-proportion);
}

woa-full-page-layout .full-page .navbar {
  --theme-color-pair-background: var(--ovd-theme-color-standard-page-header-pair-background, var(--woa-theme-color-standard-page-header-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-standard-page-header-pair-background, var(--woa-theme-color-standard-page-header-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-standard-page-header-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-standard-page-header--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-standard-page-header--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-standard-page-header--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-standard-page-header--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-standard-page-header--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-standard-page-header-pair-foreground, var(--woa-theme-color-standard-page-header-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-standard-page-header-pair-foreground, var(--woa-theme-color-standard-page-header-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-standard-page-header-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-standard-page-header-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-header-pair-foreground, var(--woa-theme-color-standard-page-header-pair-highlighted-foreground, var(--woa-theme-color-standard-page-header-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-standard-page-header-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-header-pair-foreground, var(--woa-theme-color-standard-page-header-pair-highlighted-foreground, var(--woa-theme-color-standard-page-header-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: var(--woa-page-navbar-height);
  padding: var(--woa-page-navbar-padding);
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
  z-index: 100;
  position: relative;
}

woa-full-page-layout .full-page .navbar > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-full-page-layout .full-page .navbar > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-full-page-layout .full-page .navbar > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-full-page-layout .full-page .navbar > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-full-page-layout .full-page .navbar > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-full-page-layout .full-page .navbar.mobile {
  --title-font-size: 2.2rem;
}

woa-full-page-layout .full-page .navbar.desktop {
  --title-font-size: 2.8rem;
}

woa-full-page-layout .full-page .navbar-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
  overflow: hidden;
}

woa-full-page-layout .full-page .navbar-buttons.left {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-right: auto;
}

woa-full-page-layout .full-page .navbar-buttons.left > * {
  padding-right: 20px;
}

woa-full-page-layout .full-page .navbar-buttons.right {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-left: auto;
}

woa-full-page-layout .full-page .navbar-buttons.right > * {
  padding-left: 20px;
}

woa-full-page-layout .full-page .navbar-buttons-button {
  margin-top: -50px;
  margin-bottom: -50px;
}

woa-full-page-layout .full-page .navbar-buttons-button.refresh {
  --woa-icon-button-icon-size: 25px;
}

woa-full-page-layout .full-page .navbar-buttons-button.back.floating {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

woa-full-page-layout .full-page .navbar-buttons-button.back.floating.circular {
  margin: 11px 8px;
  --woa-icon-button-icon-size: 25px;
  --woa-icon-button-padding: 8px;
}

woa-full-page-layout .full-page .navbar-buttons-button.back.floating:not(.circular) {
  margin: 19px 16px;
}

woa-full-page-layout .full-page .navbar-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

woa-full-page-layout .full-page .navbar-title-text {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-top: 7px;
  padding-bottom: 8px;
  max-width: var(--woa-full-page-title-text-max-width, 183px);
  max-height: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: var(--title-font-size);
  font-weight: 600;
}

woa-full-page-layout .full-page .background {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  overflow: hidden;
}

woa-full-page-layout .full-page .background.transparent {
  background-color: transparent;
}

woa-full-page-layout .full-page .background .page-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  max-width: var(--available-width);
  margin-left: calc((100% - var(--available-width)) / 2);
  margin-right: calc((100% - var(--available-width)) / 2);
  overflow: hidden;
  position: relative;
}

woa-full-page-layout .full-page .background .page-content.with-divider {
  --line-top: 0;
}

woa-full-page-layout .full-page .background .page-content.with-divider.with-title {
  --line-top: 10px;
}

woa-full-page-layout .full-page .background .page-content.with-divider:after {
  content: '';
  position: absolute;
  top: var(--line-top);
  left: calc(50%);
  width: 1px;
  height: calc(100% - 10px - var(--line-top));
  border-right: 1px solid rgba(var(--theme-color-pair-foreground), 0.15);
  z-index: 1;
}

woa-full-page-layout .full-page .background .page-content .scroller {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: none;
}

woa-full-page-layout .full-page .background .page-content .scroller.faded-out {
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  opacity: 0.1;
}

woa-full-page-layout .full-page .background .page-content .scroller:not(.faded-out) {
  -webkit-transition: opacity 800ms ease;
  transition: opacity 800ms ease;
  opacity: 1;
}

woa-full-page-layout .full-page .background .page-content-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: var(--woa-page-content-justify-content, flex-start);
  -webkit-justify-content: var(--woa-page-content-justify-content, flex-start);
  -ms-flex-pack: var(--woa-page-content-justify-content, flex-start);
  justify-content: var(--woa-page-content-justify-content, flex-start);
  padding-top: var(--woa-page-content-padding-top, var(--woa-page-content-padding, var(--woa-page-default-content-padding)));
  padding-bottom: var(--content-padding-bottom, var(--woa-page-content-padding-bottom, var(--woa-page-content-padding, var(--woa-page-default-content-padding))));
  padding-left: var(--woa-page-content-padding-left, var(--woa-page-content-padding, var(--woa-page-default-content-padding)));
  padding-right: var(--woa-page-content-padding-right, var(--woa-page-content-padding, var(--woa-page-default-content-padding)));
}

woa-full-page-layout .full-page .background .page-content-body.locked:before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.3);
}

woa-full-page-layout .full-page .background .page-content-body-titles {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-top: var(--woa-full-page-content-titles-padding, 0);
  padding-left: var(--woa-full-page-content-titles-padding, 0);
  padding-right: var(--woa-full-page-content-titles-padding, 0);
}

woa-full-page-layout .full-page .background .page-content-body-titles:not(:last-child) {
  margin-bottom: 30px;
}

woa-full-page-layout .full-page .background .page-content-body-titles-title {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 2.6rem;
  text-align: left;
  text-transform: capitalize;
}

woa-full-page-layout .full-page .background .page-content-body-titles-title > * {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-full-page-layout .full-page .background .page-content-body-titles-title > * ::-webkit-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-full-page-layout .full-page .background .page-content-body-titles-title > * ::-moz-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-full-page-layout .full-page .background .page-content-body-titles-title > * ::-ms-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-full-page-layout .full-page .background .page-content-body-titles-title > * ::placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-full-page-layout .full-page .background .page-content-body-titles-subtitle:not(:empty) {
  font-size: 1.4rem;
  line-height: 1.7rem;
  text-align: left;
  margin-top: 10px;
}

woa-full-page-layout .full-page .background .page-content-body-messages {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
}

woa-full-page-layout .full-page .background .page-content-body-messages:not(:empty) {
  padding-left: var(--woa-page-messages-padding, 0);
  padding-right: var(--woa-page-messages-padding, 0);
}

woa-full-page-layout .full-page .background .page-content-body-messages woa-content-message {
  margin-bottom: 15px;
}

woa-full-page-layout .full-page .background .page-content-body-messages woa-content-message:first-child {
  margin-top: var(--woa-page-messages-padding, 0);
}

woa-full-page-layout .full-page .background .page-content-body-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: var(--woa-page-content-flex-grow, 0);
  -webkit-flex-grow: var(--woa-page-content-flex-grow, 0);
  -ms-flex-positive: var(--woa-page-content-flex-grow, 0);
  flex-grow: var(--woa-page-content-flex-grow, 0);
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
}

woa-full-page-layout .full-page .background .page-content-body-main.double-pillarboxed {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

woa-full-page-layout .full-page .background .page-content-body-main-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: var(--woa-full-page-content-section-align-items, stretch);
  -webkit-align-items: var(--woa-full-page-content-section-align-items, stretch);
  -ms-flex-align: var(--woa-full-page-content-section-align-items, stretch);
  align-items: var(--woa-full-page-content-section-align-items, stretch);
  -webkit-box-pack: var(--woa-full-page-content-section-justify-content, stretch);
  -webkit-justify-content: var(--woa-full-page-content-section-justify-content, stretch);
  -ms-flex-pack: var(--woa-full-page-content-section-justify-content, stretch);
  justify-content: var(--woa-full-page-content-section-justify-content, stretch);
}

woa-full-page-layout .full-page .background .page-content-body-main-section:not(:has(*)) {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}

woa-full-page-layout .full-page .background .page-content-body-main-section:empty {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}

woa-full-page-layout .full-page .background .page-content-body-main-section.left {
  -webkit-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  padding-right: 31px;
}

woa-full-page-layout .full-page .background .page-content-body-main-section.right {
  -webkit-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  padding-left: 30px;
}

woa-full-page-layout .full-page .background .page-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  z-index: 1;
}

woa-full-page-layout .full-page .background .page-footer.with-footer-shadow {
  -webkit-box-shadow: 0 -4px 4px rgba(0, 0, 0, 0.05);
  box-shadow: 0 -4px 4px rgba(0, 0, 0, 0.05);
}

woa-full-page-layout .full-page .background .page-footer-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: var(--woa-page-footer-align-items, center);
  -webkit-align-items: var(--woa-page-footer-align-items, center);
  -ms-flex-align: var(--woa-page-footer-align-items, center);
  align-items: var(--woa-page-footer-align-items, center);
  padding-left: var(--woa-page-footer-padding, var(--woa-page-default-footer-padding));
  padding-right: var(--woa-page-footer-padding, var(--woa-page-default-footer-padding));
}

woa-full-page-layout .full-page .background .page-footer-main > woa-link {
  margin-top: 10px;
}

woa-full-page-layout .full-page .background .page-footer-main > :first-child {
  margin-top: var(--woa-page-footer-padding, var(--woa-page-default-footer-padding));
}

woa-full-page-layout .full-page .background .page-footer-main > :last-child {
  margin-bottom: var(--footer-padding-bottom, var(--woa-page-footer-padding, var(--woa-page-default-footer-padding)));
}

woa-full-page-layout .full-page .background .page-footer-main > :not(:last-child) {
  margin-bottom: 10px;
}

woa-modal-page-layout {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  height: var(--woa-modal-page-height, 100%);
  min-height: var(--woa-modal-page-min-height, 0);
  min-width: var(--woa-modal-page-min-width, auto);
  max-width: var(--woa-modal-page-max-width);
}

woa-modal-page-layout .modal-page {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  height: 100%;
  min-height: var(--woa-modal-page-min-height, 0);
  width: 100%;
}

woa-modal-page-layout .modal-page.allowSafeArea {
  --footer-padding-bottom: Max(calc(var(--safe-area-inset-bottom, 0px) / 3), var(--woa-page-footer-padding, var(--woa-page-default-footer-padding)));
}

woa-modal-page-layout .modal-page .page-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
}

woa-modal-page-layout .modal-page .page-header.with-content.page-alignment-top {
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
  z-index: 100;
}

woa-modal-page-layout .modal-page .page-header.with-content:not(.page-alignment-top) {
  border-bottom: var(--woa-modal-page-header-footer-border-width, 0) solid rgba(var(--theme-color-pair-foreground), 0.15);
}

woa-modal-page-layout .modal-page .page-header:not(.with-content) {
  padding-bottom: var(--woa-modal-page-layout-no-content-bottom-padding, 30px);
}

woa-modal-page-layout .modal-page .page-header-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  min-height: var(--woa-page-navbar-height);
  padding: var(--woa-page-navbar-padding);
}

woa-modal-page-layout .modal-page .page-header-main-heading {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 1px;
  padding-left: 10px;
  padding-right: 10px;
  max-height: 48px;
  overflow: visible;
}

woa-modal-page-layout .modal-page .page-header-main-heading > * {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-modal-page-layout .modal-page .page-header-main-heading > * ::-webkit-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-modal-page-layout .modal-page .page-header-main-heading > * ::-moz-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-modal-page-layout .modal-page .page-header-main-heading > * ::-ms-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-modal-page-layout .modal-page .page-header-main-heading > * ::placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-modal-page-layout .modal-page .page-header-main-heading:not(.button-left) {
  margin-left: 26px;
}

woa-modal-page-layout .modal-page .page-header-main-heading:not(.button-right) {
  margin-right: 26px;
}

woa-modal-page-layout .modal-page .page-header-main-heading-titles {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}

woa-modal-page-layout .modal-page .page-header-main-heading-titles-title {
  font-size: var(--woa-modal-header-title-font-size);
  font-weight: 600;
  line-height: calc(var(--woa-modal-header-title-font-size) + 0.3rem);
  text-transform: var(--woa-modal-header-title-text-transform, capitalize);
  text-align: center;
  overflow: hidden;
}

woa-modal-page-layout .modal-page .page-header-main-heading-titles-title:first-letter {
  text-transform: var(--woa-modal-header-title-first-letter-text-transform, none);
}

woa-modal-page-layout .modal-page .page-header-main-heading-titles-title.with-subtitle {
  max-height: calc(var(--woa-modal-header-title-font-size) + 0.2rem);
}

woa-modal-page-layout .modal-page .page-header-main-heading-titles-title:not(.with-subtitle) {
  max-height: calc(2 * (var(--woa-modal-header-title-font-size) + 0.2rem));
}

woa-modal-page-layout .modal-page .page-header-main-heading-titles-subtitle {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.2rem;
}

woa-modal-page-layout .modal-page .page-header-main-button {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin-top: 7px;
  z-index: 100;
  --woa-icon-button-height: calc(var(--woa-page-navbar-height) - 24px);
}

woa-modal-page-layout .modal-page .page-header-main-button.refresh {
  padding: 2px;
}

woa-modal-page-layout .modal-page .page-header-main-button.close {
  padding: 2px;
}

woa-modal-page-layout .modal-page .page-header > * {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

woa-modal-page-layout .modal-page .page-header > *:not(:first-child) {
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 10px;
}

woa-modal-page-layout .modal-page .page-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  max-width: var(--available-width);
  margin-left: Max(0px, calc((100% - var(--available-width)) / 2));
  margin-right: Max(0px, calc((100% - var(--available-width)) / 2));
  padding: var(--woa-page-content-padding, var(--woa-page-default-content-padding));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: none;
}

woa-modal-page-layout .modal-page .page-content-messages {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
}

woa-modal-page-layout .modal-page .page-content-messages:not(:empty) {
  padding-top: var(--woa-page-messages-padding, 0);
  padding-left: var(--woa-page-messages-padding, 0);
  padding-right: var(--woa-page-messages-padding, 0);
}

woa-modal-page-layout .modal-page .page-content-messages woa-content-message {
  margin-bottom: 15px;
}

woa-modal-page-layout .modal-page .page-content-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-align: var(--woa-page-content-align-items, stretch);
  -webkit-align-items: var(--woa-page-content-align-items, stretch);
  -ms-flex-align: var(--woa-page-content-align-items, stretch);
  align-items: var(--woa-page-content-align-items, stretch);
  -webkit-box-pack: var(--woa-page-content-justify-content, stretch);
  -webkit-justify-content: var(--woa-page-content-justify-content, stretch);
  -ms-flex-pack: var(--woa-page-content-justify-content, stretch);
  justify-content: var(--woa-page-content-justify-content, stretch);
}

woa-modal-page-layout .modal-page .page-content-body > * {
  -webkit-box-flex: var(--woa-page-content-flex-grow, 0);
  -webkit-flex-grow: var(--woa-page-content-flex-grow, 0);
  -ms-flex-positive: var(--woa-page-content-flex-grow, 0);
  flex-grow: var(--woa-page-content-flex-grow, 0);
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}

woa-modal-page-layout .modal-page .page-content-body-text {
  font-size: var(--woa-modal-text-font-size, 1.6rem);
  font-weight: 600;
  line-height: calc(var(--woa-modal-text-font-size, 1.6rem) + 0.3rem);
  text-align: var(--woa-page-content-text-align, center);
  margin-top: 15px;
}

woa-modal-page-layout .modal-page .page-content-body-text:last-child {
  margin-bottom: 45px;
}

woa-modal-page-layout .modal-page .page-content-body-text:not(:last-child) {
  margin-bottom: 30px;
}

woa-modal-page-layout .modal-page .page-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  z-index: 1;
  overflow: hidden;
  max-width: var(--available-width);
  margin-left: Max(0px, calc((100% - var(--available-width)) / 2));
  margin-right: Max(0px, calc((100% - var(--available-width)) / 2));
}

woa-modal-page-layout .modal-page .page-footer.with-footer-border {
  border-top: var(--woa-modal-page-header-footer-border-width, 0) solid rgba(var(--theme-color-pair-foreground), 0.15);
}

woa-modal-page-layout .modal-page .page-footer-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: var(--woa-page-footer-align-items, center);
  -webkit-align-items: var(--woa-page-footer-align-items, center);
  -ms-flex-align: var(--woa-page-footer-align-items, center);
  align-items: var(--woa-page-footer-align-items, center);
  padding-left: var(--woa-page-footer-padding, var(--woa-page-default-footer-padding));
  padding-right: var(--woa-page-footer-padding, var(--woa-page-default-footer-padding));
}

woa-modal-page-layout .modal-page .page-footer-main > :first-child {
  margin-top: var(--woa-page-footer-padding, var(--woa-page-default-footer-padding));
}

woa-modal-page-layout .modal-page .page-footer-main > :last-child {
  margin-bottom: var(--footer-padding-bottom, var(--woa-page-footer-padding, var(--woa-page-default-footer-padding)));
}

woa-modal-page-layout .modal-page .page-footer-main > :not(:last-child) {
  margin-bottom: 10px;
}

woa-modal-page-layout .modal-page .page-footer-main-controls {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

woa-modal-page-layout .modal-page .page-footer-main-controls:not(:first-child) {
  margin-top: 5px;
}

woa-modal-page-layout .modal-page .page-footer-main-controls.horizontal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: var(--woa-modal-footer-control-justify-content, space-evenly);
  -webkit-justify-content: var(--woa-modal-footer-control-justify-content, space-evenly);
  -ms-flex-pack: var(--woa-modal-footer-control-justify-content, space-evenly);
  justify-content: var(--woa-modal-footer-control-justify-content, space-evenly);
  gap: 15px;
}

woa-modal-page-layout .modal-page .page-footer-main-controls.horizontal > * {
  --woa-button-margin-left: 0;
  --woa-button-margin-right: 0;
  margin-left: 0;
  margin-right: 0;
}

woa-modal-page-layout .modal-page .page-footer-main-controls.vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

woa-modal-page-layout .modal-page .page-footer-main-controls.vertical woa-link {
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}

woa-modal-page-layout .modal-page .page-footer-main-controls.vertical > :not(:last-child) {
  margin-bottom: 10px;
}

woa-page-header-image {
  position: relative;
  overflow: hidden;
  display: block;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  outline: 1px solid rgba(var(--theme-color-pair-foreground), 0.08);
  border-radius: 5px;
}

woa-page-header-image .image {
  width: 100%;
  height: 100%;
}

woa-page-header-image .image-page-logo {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

woa-adyen-3ds-page .threeDs-holder {
  width: 100%;
  height: 100%;
}

woa-adyen-manual-payment-card-panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 8px;
  --woa-selector-label-font-size: 1.4rem;
  --woa-selector-label-font-weight: 500;
}

woa-adyen-manual-payment-card-panel.disabled:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}

woa-adyen-manual-payment-card-panel .initiation-spinner {
  --woa-spinner-color: theme-color(brand-foreground);
  height: 26px;
  width: 26px;
  margin-bottom: 10px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

woa-adyen-manual-payment-card-panel .card-holder {
  --adyen-sdk-text-body-font-size: 1.4rem;
  --adyen-sdk-text-body-font-weight: 700;
  --adyen-sdk-text-body-line-height: 1.6rem;
  --adyen-sdk-color-label-primary: rgba(var(--theme-color-pair-foreground), 1);
  --adyen-sdk-color-label-critical: rgba(var(--theme-color-pair-foreground), 1);
  --adyen-sdk-spacer-020: 7px;
  --adyen-sdk-spacer-040: 5px;
  --adyen-sdk-spacer-070: 8px;
  --adyen-sdk-border-radius-m: var(--woa-field-border-radius);
  --adyen-sdk-border-width-s: 1px;
  --adyen-sdk-color-outline-primary: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 0.3);
  --adyen-sdk-color-outline-primary-active: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 0.5);
  --adyen-sdk-color-outline-tertiary: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 0.5);
  --adyen-sdk-color-outline-critical: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 0.3);
  --adyen-sdk-color-background-primary: transparent;
  --adyen-sdk-spacer-060: 0px;
  --adyen-sdk-text-caption-font-size: 1.4rem;
  --adyen-sdk-text-caption-line-height: 1.6rem;
}

woa-adyen-manual-payment-card-panel .card-holder.hidden {
  display: none;
}

woa-adyen-manual-payment-card-panel .card-holder .adyen-checkout-form-instruction, woa-adyen-manual-payment-card-panel .card-holder .adyen-checkout__card__brands, woa-adyen-manual-payment-card-panel .card-holder .adyen-checkout-contextual-text, woa-adyen-manual-payment-card-panel .card-holder .adyen-checkout__field__exp-date_hint_wrapper, woa-adyen-manual-payment-card-panel .card-holder .adyen-checkout__card__cvc__hint__wrapper, woa-adyen-manual-payment-card-panel .card-holder .adyen-checkout-input__inline-validation {
  display: none;
}

woa-adyen-manual-payment-card-panel .card-holder .adyen-checkout-card-input__icon {
  margin-top: 3px;
  border: 1px solid rgba(var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground)), 0.075);
}

woa-adyen-manual-payment-card-panel .card-holder .adyen-checkout__label__text {
  font-family: var(--woa-theme-font-common), sans-serif;
}

woa-adyen-manual-payment-card-panel .card-holder .adyen-checkout__label__text:after {
  content: "*";
  margin-left: 5px;
}

woa-adyen-manual-payment-card-panel .card-holder .adyen-checkout__field__exp-date .adyen-checkout__label__text:after {
  content: "(MM/YY) *";
}

woa-adyen-manual-payment-card-panel .card-holder .adyen-checkout__field__cvc .adyen-checkout__label__text:after {
  content: "(CVC) *";
}

woa-adyen-manual-payment-card-panel .card-holder .adyen-checkout__input-wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  padding: 0 15px 5px 10px;
  gap: 8px;
}

woa-adyen-manual-payment-card-panel .card-holder .adyen-checkout__field--error .adyen-checkout__input-wrapper {
  border-left: 3px solid rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1) !important;
}

woa-adyen-manual-payment-card-panel .card-holder .adyen-checkout-contextual-text--error {
  color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
  font-weight: 600;
  margin-top: 5px;
}

woa-adyen-manual-payment-card-panel .card-holder .adyen-checkout-contextual-text--hidden {
  height: 1.6rem;
}

woa-adyen-manual-payment-card-panel .save-card.hidden {
  display: none;
}

woa-stripe-manual-payment-card-panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  --woa-selector-label-font-size: 1.4rem;
  --woa-selector-label-font-weight: 500;
}

woa-stripe-manual-payment-card-panel .stripe-input {
  display: block;
  width: 100%;
  min-height: 21px;
  max-height: 21px;
  padding-top: 1px;
}

woa-stripe-scanned-payment-card-panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

woa-stripe-scanned-payment-card-panel .card-number {
  --woa-field-body-justify-content: flex-start;
}

woa-stripe-scanned-payment-card-panel .card-number-icon {
  --woa-card-brand-width: 32px;
  margin-right: 15px;
}

woa-stripe-scanned-payment-card-panel .card-number-digits {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.9rem;
  min-height: 21px;
  max-height: 21px;
}

woa-stripe-scanned-payment-card-panel .card-expiry {
  --woa-field-body-justify-content: flex-start;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.9rem;
}

woa-stripe-scanned-payment-card-panel .card-expiry-month {
  width: 22px;
  min-height: 21px;
  max-height: 21px;
  background-color: transparent;
  border: none;
}

woa-stripe-scanned-payment-card-panel .card-expiry-year {
  width: 22px;
  min-height: 21px;
  max-height: 21px;
  margin-left: 3px;
  background-color: transparent;
  border: none;
}

woa-tyro-manual-payment-card-panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  position: relative;
  --woa-selector-label-font-size: 1.4rem;
  --woa-selector-label-font-weight: 500;
}

woa-tyro-manual-payment-card-panel.disabled:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}

woa-tyro-manual-payment-card-panel .initiation-spinner {
  --woa-spinner-color: theme-color(brand-foreground);
  height: 26px;
  width: 26px;
  margin-bottom: 10px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

woa-payment-page {
  --woa-page-content-padding-top: 0;
  --woa-page-content-padding-left: 0;
  --woa-page-content-padding-right: 0;
  --woa-page-messages-padding: var(--woa-page-default-content-padding);
}

woa-payment-page .order-details {
  margin-top: 15px;
  margin-left: var(--woa-page-default-content-padding);
}

woa-payment-page .ordering-context {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-bottom: 10px;
}

woa-payment-page .ordering-context.desktop {
  margin-top: var(--woa-page-default-content-padding);
  margin-right: var(--woa-page-default-content-padding);
}

woa-payment-page .order-placement {
  max-width: var(--woa-full-page-pillarbox-width);
}

woa-payment-page .order-placement.mobile {
  margin: var(--woa-page-default-content-padding);
}

woa-payment-page .order-placement.desktop {
  margin-top: var(--woa-page-default-content-padding);
  margin-right: var(--woa-page-default-content-padding);
}

woa-payment-page .order-placement-options {
  --woa-field-group-gap: 15px;
  --woa-field-group-title-padding-bottom: 0;
  --woa-field-group-title-border-width: 0;
  margin-bottom: 25px;
  --woa-card-brand-width: 28px;
}

woa-payment-page .order-placement-options .apple-pay-mark {
  --woa-icon-width: 32px;
  --woa-icon-height: 20px;
  --woa-icon-color: #000;
}

woa-payment-page .order-placement-options .google-pay-mark {
  --woa-icon-width: 38px;
  --woa-icon-height: 20px;
}

woa-payment-page .order-placement-customer-details-marketing {
  margin-bottom: 25px;
}

woa-payment-page .order-placement-card-details {
  margin-bottom: 25px;
}

woa-payment-page .order-placement-tip {
  padding: 15px;
  border: 1px solid rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 0.3);
  border-radius: var(--woa-field-border-radius);
  --woa-tip-selection-panel-option-size: var(--woa-tip-selection-panel-inline-option-size);
  --woa-tip-selection-panel-option-percentage-size: var(--woa-tip-selection-panel-inline-option-percentage-size);
}

woa-payment-page .payment-totals {
  width: 100%;
  max-width: var(--woa-full-page-pillarbox-width);
  margin-bottom: 10px;
}

woa-payment-page .payment-legal {
  --woa-legal-side-margins: 12px;
  --woa-legal-max-width: 100%;
  --woa-legal-font-size: 1.2rem;
}

woa-quick-pay-panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}

woa-quick-pay-panel .quick-pay-button {
  --woa-card-brand-padding: 2px;
  --woa-card-brand-width: 36px;
}

woa-quick-pay-panel .quick-pay-button-card-last-4 {
  font-size: calc(var(--woa-button-tier1-font-size) + 0.4rem);
  font-weight: 400;
}

woa-tip-selection-page .tip-selection {
  width: 100%;
}

woa-tip-selection-panel {
  display: block;
}

woa-tip-selection-panel .scroll-content {
  overflow-y: hidden;
}

woa-tip-selection-panel .tip {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  height: 100%;
}

woa-tip-selection-panel .tip-instructions {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.9rem;
  text-align: center;
  margin-bottom: 15px;
  max-height: 3.4rem;
  overflow: hidden;
}

woa-tip-selection-panel .tip-instructions > * {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-tip-selection-panel .tip-instructions > * ::-webkit-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-tip-selection-panel .tip-instructions > * ::-moz-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-tip-selection-panel .tip-instructions > * ::-ms-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-tip-selection-panel .tip-instructions > * ::placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-tip-selection-panel .tip-options {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

woa-tip-selection-panel .tip-options-option {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: calc(var(--woa-tip-selection-panel-option-size) * 1.2);
  height: var(--woa-tip-selection-panel-option-size);
  border: 1px solid rgba(var(--theme-color-pair-foreground), 0.3);
  border-radius: 5px;
  cursor: pointer;
}

woa-tip-selection-panel .tip-options-option.selected {
  --theme-color-pair-background: var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-brand-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-link-foreground: var(--woa-theme-color-brand--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-brand-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-brand-pair-highlighted-foreground, var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-brand-pair-highlighted-foreground, var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-tip-selection-panel .tip-options-option.selected > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-tip-selection-panel .tip-options-option.selected > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-tip-selection-panel .tip-options-option.selected > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-tip-selection-panel .tip-options-option.selected > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-tip-selection-panel .tip-options-option.selected > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

@media (hover: hover) {
  woa-tip-selection-panel .tip-options-option:hover {
    border-color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  }
  woa-tip-selection-panel .tip-options-option:hover > * {
    border-color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  }
}

@media (hover: none) {
  woa-tip-selection-panel .tip-options-option:active {
    border-color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  }
  woa-tip-selection-panel .tip-options-option:active > * {
    border-color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  }
}

woa-tip-selection-panel .tip-options-option-no-tip {
  font-size: var(--woa-tip-selection-panel-option-percentage-size);
  font-weight: 700;
  line-height: calc(var(--woa-tip-selection-panel-option-percentage-size) + 0.3rem);
}

woa-tip-selection-panel .tip-options-option-percentage {
  font-size: var(--woa-tip-selection-panel-option-percentage-size);
  font-weight: 700;
  line-height: calc(var(--woa-tip-selection-panel-option-percentage-size) + 0.3rem);
}

woa-tip-selection-panel .tip-options-option-amount {
  font-size: calc(var(--woa-tip-selection-panel-option-percentage-size) - 0.3rem);
  font-weight: 500;
  line-height: calc(var(--woa-tip-selection-panel-option-percentage-size) - 0rem);
}

woa-wallet-payment-page .payment-totals {
  width: 100%;
  max-width: var(--woa-full-page-pillarbox-width);
  margin-bottom: 10px;
}

woa-promo-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

woa-promo-card.inlineAction {
  --action-margin-top: 10px;
  --action-margin-bottom: 10px;
}

woa-promo-card.cornerAction {
  --action-position: absolute;
  --action-right: 10px;
  --action-bottom: 10px;
  --action-z-index: 2;
}

woa-promo-card.cornerAction.bottomDescription {
  --description-margin-bottom: 30px;
}

woa-promo-card.peelAction.withAction {
  --action-position: absolute;
  --action-right: 5px;
  --action-bottom: 5px;
  --corner-size: 25px;
  --media-clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--corner-size)), calc(100% - var(--corner-size)) 100%, 0 100%);
  --corner-action-scale: 0;
  --corner-action-pointer-events: none;
  --corner-action-transition: none;
  --promo-card-image-opacity: 1;
}

woa-promo-card.peelAction.withAction.bottomDescription {
  --description-margin-bottom: 30px;
}

woa-promo-card.peelAction.withAction:hover {
  --corner-size: 110px;
  --corner-action-scale: 1;
  --corner-action-pointer-events: auto;
  --corner-action-transition: transform 0s linear 0.5s;
}

woa-promo-card.peelAction.withAction.fadeOut {
  --corner-action-transition: transform 0s linear 0.5s;
  --corner-size: 0;
}

woa-promo-card .media {
  background-color: rgba(var(--ovd-theme-color-panel-pair-background, var(--woa-theme-color-panel-pair-background)), 1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 100%;
  z-index: 1;
  -webkit-transition: -webkit-clip-path 0.3s ease;
  transition: -webkit-clip-path 0.3s ease;
  transition: clip-path 0.3s ease;
  transition: clip-path 0.3s ease, -webkit-clip-path 0.3s ease;
  -webkit-clip-path: var(--media-clip-path);
  clip-path: var(--media-clip-path);
}

woa-promo-card .media.shaded:before {
  background-color: rgba(var(--ovd-theme-color-feature-text-pair-background, var(--woa-theme-color-feature-text-pair-background)), 1);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  opacity: var(--woa-promo-image-shade-opacity);
}

woa-promo-card .media.faded {
  --object-opacity: var(--woa-promo-faded-image-opacity);
}

woa-promo-card .media-object {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -o-object-fit: contain;
  object-fit: contain;
  height: 100%;
  overflow: hidden;
  opacity: var(--object-opacity, 1);
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

woa-promo-card .media-object.auto-crop {
  -o-object-fit: cover;
  object-fit: cover;
}

woa-promo-card .media-object.fadeOut {
  opacity: 0;
}

woa-promo-card .order-type {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(var(--woa-font-size) * var(--woa-promo-message-font-scale) + 7px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  z-index: 2;
}

woa-promo-card .order-type-indicator {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  --theme-color-pair-background: var(--ovd-theme-color-panel-header-footer-pair-background, var(--woa-theme-color-panel-header-footer-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-background, var(--woa-theme-color-panel-header-footer-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-panel-header-footer-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-panel-header-footer--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-panel-header-footer--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-panel-header-footer--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-panel-header-footer--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-panel-header-footer--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-panel-header-footer-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-panel-header-footer-pair-highlighted-foreground, var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-highlighted-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-highlighted-foreground, var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-highlighted-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
  font-size: calc(var(--woa-font-size) * 0.4);
  font-weight: 600;
  padding-left: 5px;
  padding-right: 5px;
  border: 1px solid rgba(var(--theme-color-pair-foreground), 0.1);
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-left-radius: 6px;
}

woa-promo-card .order-type-indicator > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

woa-promo-card .order-type-indicator > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-promo-card .order-type-indicator > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-promo-card .order-type-indicator > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-promo-card .order-type-indicator > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-promo-card .description {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: var(--description-justify-content, center);
  -webkit-justify-content: var(--description-justify-content, center);
  -ms-flex-pack: var(--description-justify-content, center);
  justify-content: var(--description-justify-content, center);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  -webkit-transition: -webkit-clip-path 0.3s ease;
  transition: -webkit-clip-path 0.3s ease;
  transition: clip-path 0.3s ease;
  transition: clip-path 0.3s ease, -webkit-clip-path 0.3s ease;
  -webkit-clip-path: var(--media-clip-path);
  clip-path: var(--media-clip-path);
}

woa-promo-card .description.top {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-top: calc(var(--woa-font-size) * var(--woa-promo-message-font-scale) + 7px);
}

woa-promo-card .description.center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

woa-promo-card .description.bottom {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

woa-promo-card .description.shaded-image {
  --text-color: rgba(var(--ovd-theme-color-feature-text-pair-foreground, var(--woa-theme-color-feature-text-pair-foreground)), 1);
  --text-shadow: var(--woa-promo-shaded-image-text-shadow);
}

woa-promo-card .description:not(.shaded-image) {
  --text-color: rgba(var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-foreground)), 1);
  --text-shadow: var(--woa-promo-unshaded-image-text-shadow);
}

woa-promo-card .description-label {
  color: var(--text-color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  pointer-events: none;
}

woa-promo-card .description-label * {
  pointer-events: none;
}

woa-promo-card .description-label.fadeOut {
  opacity: 0;
}

woa-promo-card .description-label:not(:last-child) {
  margin-bottom: 5px;
}

woa-promo-card .description-label-title {
  display: block;
  font-size: calc(var(--woa-font-size) * var(--woa-promo-label-font-scale));
  font-weight: 600;
  text-shadow: var(--text-shadow);
  line-height: calc(var(--woa-font-size) * var(--woa-promo-label-font-scale) + 0.3em);
  max-width: 85%;
  width: 85%;
  overflow: hidden;
  -webkit-transform: var(--woa-promo-label-transform);
  transform: var(--woa-promo-label-transform);
  text-align: center;
  text-overflow: ellipsis;
  padding-top: 0.1em;
  padding-left: .25em;
  padding-right: .25em;
  padding-bottom: .25em;
  white-space: normal;
  max-height: 2.7em;
}

woa-promo-card .description-product {
  color: var(--text-color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  pointer-events: none;
}

woa-promo-card .description-product * {
  pointer-events: none;
}

woa-promo-card .description-product.fadeOut {
  opacity: 0;
}

woa-promo-card .description-product:not(:last-child) {
  margin-bottom: 5px;
}

woa-promo-card .description-product-details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 85%;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}

woa-promo-card .description-product-details-name {
  display: block;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  font-size: calc(var(--woa-font-size) * var(--woa-promo-productName-font-scale));
  font-weight: 500;
  text-shadow: var(--text-shadow);
  line-height: calc(var(--woa-font-size) * var(--woa-promo-productName-font-scale) + 0.3em);
  overflow: hidden;
  -webkit-transform: var(--woa-promo-productName-transform);
  transform: var(--woa-promo-productName-transform);
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 8px;
  padding-right: 8px;
}

woa-promo-card .description-product-details-price {
  display: block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  font-size: calc(var(--woa-font-size) * var(--woa-promo-productPrice-font-scale));
  font-weight: 500;
  text-shadow: var(--text-shadow);
  line-height: calc(var(--woa-font-size) * var(--woa-promo-productPrice-font-scale) + 0.3em);
  overflow: hidden;
  -webkit-transform: var(--woa-promo-productPrice-transform);
  transform: var(--woa-promo-productPrice-transform);
  white-space: nowrap;
  padding-left: 8px;
  padding-right: 8px;
}

woa-promo-card .description-message {
  color: var(--text-color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  pointer-events: none;
}

woa-promo-card .description-message * {
  pointer-events: none;
}

woa-promo-card .description-message.fadeOut {
  opacity: 0;
}

woa-promo-card .description-message :last-child {
  margin-bottom: 15px;
}

woa-promo-card .description-message:not(:last-child) {
  margin-bottom: 5px;
}

woa-promo-card .description-message-title {
  display: block;
  font-size: calc(var(--woa-font-size) * var(--woa-promo-message-font-scale));
  font-weight: 500;
  text-shadow: var(--text-shadow);
  line-height: calc(var(--woa-font-size) * var(--woa-promo-message-font-scale) + 0.3em);
  margin-left: auto;
  margin-right: auto;
  max-width: 85%;
  width: 85%;
  overflow: hidden;
  -webkit-transform: var(--woa-promo-message-transform);
  transform: var(--woa-promo-message-transform);
  text-align: center;
  text-overflow: ellipsis;
  padding-top: 0.1em;
  padding-left: .25em;
  padding-right: .25em;
  padding-bottom: .25em;
  white-space: normal;
  max-height: 2.5em;
}

woa-promo-card .description-code {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

woa-promo-card .description-code:not(:last-child) {
  margin-bottom: 5px;
}

woa-promo-card .action {
  position: var(--action-position, unset);
  right: var(--action-right);
  bottom: var(--action-bottom);
  margin-top: var(--action-margin-top, 0);
  margin-bottom: var(--action-margin-bottom, 0);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: var(--action-z-index, 0);
}

woa-promo-card .action.fadeOut {
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  opacity: 0;
}

woa-promo-card .action:not(.fadeOut) {
  -webkit-transition: opacity 200ms ease 600ms;
  transition: opacity 200ms ease 600ms;
}

woa-promo-card .corner {
  -webkit-transition: width 0.3s ease, height 0.3s ease;
  transition: width 0.3s ease, height 0.3s ease;
  width: var(--corner-size);
  height: var(--corner-size);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  pointer-events: none;
}

woa-promo-card .corner .peel {
  stroke: #fff;
  fill: #fff;
  opacity: 0.5;
  -webkit-filter: drop-shadow(0 0 8px #000);
  filter: drop-shadow(0 0 8px #000);
}

woa-promo-card .corner .action {
  -webkit-transition: var(--corner-action-transition, none);
  transition: var(--corner-action-transition, none);
  -webkit-transform: scale(var(--corner-action-scale, 1));
  transform: scale(var(--corner-action-scale, 1));
  pointer-events: var(--corner-action-pointer-events, auto);
}

woa-promo-card .code-open {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 3;
  --woa-icon-color: rgba(var(--ovd-theme-color-feature-text-pair-foreground, var(--woa-theme-color-feature-text-pair-foreground)), 1);
  opacity: 0.6;
}

woa-promo-carousel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

woa-promo-carousel .carousel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  position: relative;
  width: 100%;
}

woa-promo-carousel .carousel.woa-swipe-disengaging:not(.ignore-swipe) {
  --slide-transition: 250ms ease;
}

woa-promo-carousel .carousel.desktop {
  --edge-pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  woa-promo-carousel .carousel:hover {
    --edge-pointer-events: none;
    --edge-button-pointer-events: auto;
    --edge-button-opacity: 1;
  }
}

woa-promo-carousel .carousel-slides {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 15px;
  --default-slide-height: calc(var(--default-slide-width) / var(--woa-promo-slide-aspect-ratio));
  --slide-height: Max(var(--woa-promo-slide-min-height), var(--default-slide-height));
  --slide-width: calc(var(--slide-height) * var(--woa-promo-slide-aspect-ratio));
}

woa-promo-carousel .carousel-slides.scrollable {
  --default-slide-width: calc(1px * var(--woa-element-width) - 2 * var(--woa-promo-slide-edge-width) - (var(--nr-visible-slides) + 1) * var(--woa-promo-slide-side-margin)) / var(--nr-visible-slides);
  margin-left: var(--woa-promo-slide-side-margin);
  margin-right: var(--woa-promo-slide-side-margin);
  --first-full-slide: 2;
  --scroll-distance: calc(var(--woa-promo-slide-edge-width) - var(--first-full-slide) * (var(--slide-width) + var(--woa-promo-slide-side-margin)) + 1px * var(--woa-swipe-distance, 0));
  -webkit-transform: translateX(var(--scroll-distance));
  transform: translateX(var(--scroll-distance));
  -webkit-transition: var(--slide-transition);
  transition: var(--slide-transition);
}

woa-promo-carousel .carousel-slides.scrollable.scrolled-forth {
  --first-full-slide: 1;
}

woa-promo-carousel .carousel-slides.scrollable.scrolled-back {
  --first-full-slide: 3;
}

woa-promo-carousel .carousel-slides.scrollable.auto-scrolling {
  --slide-transition: transform 1.5s ease;
}

woa-promo-carousel .carousel-slides.scrollable.swipe-scrolling {
  --slide-transition: transform 250ms ease;
}

woa-promo-carousel .carousel-slides.scrollable.click-scrolling {
  --slide-transition: transform 500ms ease;
}

woa-promo-carousel .carousel-slides:not(.scrollable) {
  --default-slide-width: calc((1px * var(--woa-element-width) - (var(--nr-visible-slides) + 1) * var(--woa-promo-slide-side-margin)) / var(--nr-visible-slides));
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

woa-promo-carousel .carousel-slides-slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  height: var(--slide-height);
  width: var(--slide-width);
  overflow: hidden;
  outline: 1px solid rgba(var(--theme-color-pair-foreground-shader), 0.2);
  border-radius: 6px;
}

woa-promo-carousel .carousel-edge {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  height: 100%;
  width: calc(var(--woa-promo-slide-edge-width) + var(--woa-promo-slide-side-margin));
  z-index: 1;
  background-color: transparent;
  pointer-events: var(--edge-pointer-events, auto);
}

woa-promo-carousel .carousel-edge.left {
  left: 0;
  -webkit-box-pack: right;
  -webkit-justify-content: right;
  -ms-flex-pack: right;
  justify-content: right;
}

woa-promo-carousel .carousel-edge.right {
  right: 0;
  -webkit-box-pack: left;
  -webkit-justify-content: left;
  -ms-flex-pack: left;
  justify-content: left;
}

woa-promo-carousel .carousel-edge-button {
  opacity: var(--edge-button-opacity, 0);
  -webkit-transition: opacity 500ms ease;
  transition: opacity 500ms ease;
  pointer-events: var(--edge-button-pointer-events, none);
  --woa-icon-button-icon-color: rgba(var(--ovd-theme-color-feature-text-pair-foreground, var(--woa-theme-color-feature-text-pair-foreground)), 1);
  --woa-icon-stroke-width: 1;
  --woa-icon-stroke-color: rgba(var(--ovd-theme-color-feature-text-pair-background, var(--woa-theme-color-feature-text-pair-background)), 1);
}

woa-promo-carousel woa-link {
  margin-top: 8px;
  margin-left: auto;
}

woa-promo-page {
  --woa-modal-header-title-text-transform: none;
  --woa-page-content-padding-top: 0;
}

woa-promo-page .promo-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  min-height: 250px;
  max-height: 250px;
  -webkit-transition: -webkit-clip-path 0.3s ease;
  transition: -webkit-clip-path 0.3s ease;
  transition: clip-path 0.3s ease;
  transition: clip-path 0.3s ease, -webkit-clip-path 0.3s ease;
  -webkit-clip-path: var(--media-clip-path);
  clip-path: var(--media-clip-path);
}

woa-promo-page .promo-image-object {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -o-object-fit: contain;
  object-fit: contain;
  height: 100%;
  overflow: hidden;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

woa-promo-page .promo-image-object.auto-crop {
  -o-object-fit: cover;
  object-fit: cover;
}

woa-promo-page .promo-image-object.fadeOut {
  opacity: 0;
}

woa-promo-page .promo-product {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 10px;
}

woa-promo-page .promo-product-name {
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 2.0rem;
}

woa-promo-page .promo-product-price {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.7rem;
  margin-left: 10px;
}

woa-promo-page .promo-dietary {
  margin-top: 5px;
}

woa-promo-page .promo-message {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  margin-top: 10px;
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 2.6rem;
  text-align: center;
}

woa-promo-page .promo-message > * {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-promo-page .promo-message > * ::-webkit-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-promo-page .promo-message > * ::-moz-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-promo-page .promo-message > * ::-ms-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-promo-page .promo-message > * ::placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-promo-page .promo-description {
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  margin-top: 10px;
  min-height: 0;
  overflow: hidden;
  color: rgba(var(--theme-color-pair-foreground), 0.8);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.8rem;
  text-align: center;
}

woa-entry-page {
  --woa-page-content-flex-grow: 1;
  --woa-full-page-content-section-justify-content: center;
}

woa-entry-page .entry {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 3;
}

woa-entry-page .entry:last-child {
  margin-bottom: 0;
}

woa-entry-page .entry-settings {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 9;
  opacity: 0.1;
}

woa-entry-page .entry-url {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 9;
}

woa-entry-page .entry-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: fade;
  animation-name: fade;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

woa-entry-page .entry-body-error {
  position: absolute;
  top: 0;
  left: 0;
  height: 50vh;
  width: 100%;
  margin-top: 50vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-name: fade;
  animation-name: fade;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

woa-entry-page .entry-body-error-title {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.9rem;
  text-align: center;
}

woa-entry-page .entry-body-error-message {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 10px;
  font-size: 1.5rem;
  text-align: center;
}

woa-entry-page .entry-body-logo {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-bottom: 15px;
}

woa-entry-page .entry-body-logo:last-child {
  margin-bottom: 0;
}

woa-entry-page .skip-login {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

woa-exit-page {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

woa-exit-page .exit-message {
  font-size: 2.2rem;
  text-align: center;
}

woa-store-details-page .store-details-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

woa-store-details-page .store-details-header.mobile {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

woa-store-details-page .store-details-header.mobile > :last-child {
  margin-left: auto;
}

woa-store-details-page .store-details-header.desktop {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-left: auto;
}

woa-store-details-page .store-details-header.desktop > :not(:first-child) {
  margin-top: 5px;
}

woa-store-details-panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
}

woa-store-details-panel .store {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: var(--store-flex-direction);
  -ms-flex-direction: var(--store-flex-direction);
  flex-direction: var(--store-flex-direction);
  -webkit-box-align: var(--store-align-items);
  -webkit-align-items: var(--store-align-items);
  -ms-flex-align: var(--store-align-items);
  align-items: var(--store-align-items);
}

woa-store-details-panel .store.mobile:not(.summary) {
  --store-flex-direction: column;
  --store-align-items: stretch;
  --store-main-flex-shrink: 0;
  --header-max-width: 100%;
  --store-name-font-size: 2.2rem;
  --distance-font-size: 1.2rem;
  --status-align-self: flex-start;
  --location-margin-top: 15px;
  --location-margin-left: 0px;
  --woa-store-details-map-width: 100%;
  --image-width: var(--woa-store-details-mobile-image-width);
  --image-height: var(--woa-store-details-mobile-image-height);
}

woa-store-details-panel .store.mobile:not(.summary).with-store-image {
  --status-padding-top: 10px;
}

woa-store-details-panel .store.mobile:not(.summary):not(.with-store-image) {
  --status-padding-top: 5px;
}

woa-store-details-panel .store.desktop:not(.summary) {
  --store-flex-direction: row;
  --store-align-items: flex-start;
  --store-main-flex-shrink: 1;
  --header-max-width: var(--woa-store-details-header-max-width);
  --store-name-font-size: 2.5rem;
  --distance-font-size: 1.5rem;
  --status-align-self: flex-start;
  --status-padding-top: 15px;
  --location-margin-top: 0px;
  --location-margin-left: 25px;
  --image-width: var(--woa-store-details-desktop-image-width);
  --image-height: var(--woa-store-details-desktop-image-height);
}

woa-store-details-panel .store.summary {
  width: 100%;
  --store-flex-direction: row;
  --store-align-items: flex-start;
  --store-main-flex-shrink: 1;
  --header-max-width: var(--woa-store-details-header-max-width);
  --store-name-font-size: 2.2rem;
  --distance-font-size: 1.2rem;
  --status-align-self: flex-start;
  --status-padding-top: 15px;
  --location-margin-top: 0px;
  --location-margin-left: 15px;
  --location-width: 50%;
  --woa-store-details-map-width: 100%;
  --image-width: var(--woa-store-details-mobile-image-width);
  --image-height: var(--woa-store-details-mobile-image-height);
}

woa-store-details-panel .store.summary.with-store-image {
  --status-padding-top: 10px;
}

woa-store-details-panel .store.summary:not(.with-store-image) {
  --status-padding-top: 5px;
}

woa-store-details-panel .store.with-actions.mobile {
  --body-flex-direction: column;
  --body-align-items: flex-start;
  --actions-width: 100%;
  --actions-margin-top: 10px;
  --actions-margin-left: 0px;
  --actions-width-allowance: 0px;
  --actions-justify-content: flex-start;
}

woa-store-details-panel .store.with-actions.desktop.with-map {
  --body-flex-direction: column;
  --body-align-items: flex-start;
  --actions-width: 100%;
  --actions-margin-top: 20px;
  --actions-margin-left: 0px;
  --actions-width-allowance: 0px;
  --actions-justify-content: flex-start;
}

woa-store-details-panel .store.with-actions.desktop:not(.with-map) {
  --body-flex-direction: row;
  --body-align-items: flex-end;
  --actions-width: 235px;
  --actions-margin-top: 0px;
  --actions-margin-left: 30px;
  --actions-width-allowance: calc(var(--actions-width) + var(--actions-margin-left));
  --actions-justify-content: flex-end;
}

woa-store-details-panel .store:not(.with-actions) {
  --body-flex-direction: row;
  --actions-width: 0px;
  --actions-margin-top: 0px;
  --actions-margin-left: 0px;
  --actions-width-allowance: 0px;
}

woa-store-details-panel .store-image {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 15px;
  -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.35);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.35);
}

woa-store-details-panel .store-image-object {
  display: block;
  border: none;
  -o-object-fit: cover;
  object-fit: cover;
  width: var(--image-width);
  height: var(--image-height);
  -webkit-transition: opacity var(--woa-menu-item-image-fade-in-duration) ease;
  transition: opacity var(--woa-menu-item-image-fade-in-duration) ease;
}

woa-store-details-panel .store-image-object.cached-image-loading {
  opacity: 0;
}

woa-store-details-panel .store-image-object.cached-image-loaded {
  opacity: 1;
}

woa-store-details-panel .store-image-object.emptyImg {
  visibility: hidden;
}

woa-store-details-panel .store-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: var(--store-main-flex-shrink);
  -ms-flex-negative: var(--store-main-flex-shrink);
  flex-shrink: var(--store-main-flex-shrink);
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

woa-store-details-panel .store-main-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: calc(min(var(--header-max-width), 100% - var(--actions-width-allowance)));
}

woa-store-details-panel .store-main-header-name {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  font-size: var(--store-name-font-size);
  font-weight: 700;
  line-height: calc(var(--store-name-font-size) * 1.25);
  max-height: calc(var(--store-name-font-size) * 2.5);
  overflow: hidden;
  margin-right: 20px;
}

woa-store-details-panel .store-main-header-name > * {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-store-details-panel .store-main-header-name > * ::-webkit-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-store-details-panel .store-main-header-name > * ::-moz-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-store-details-panel .store-main-header-name > * ::-ms-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-store-details-panel .store-main-header-name > * ::placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-store-details-panel .store-main-header-state {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  color: rgba(var(--theme-color-pair-highlighted-foreground), 1);
  font-size: var(--distance-font-size);
  font-weight: 800;
  line-height: var(--store-name-font-size);
}

woa-store-details-panel .store-main-header-distance {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  color: rgba(var(--theme-color-pair-highlighted-foreground), 1);
  font-size: var(--distance-font-size);
  font-weight: 800;
  line-height: var(--store-name-font-size);
}

woa-store-details-panel .store-main-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: var(--body-flex-direction);
  -ms-flex-direction: var(--body-flex-direction);
  flex-direction: var(--body-flex-direction);
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: var(--store-main-flex-shrink);
  -ms-flex-negative: var(--store-main-flex-shrink);
  flex-shrink: var(--store-main-flex-shrink);
  -webkit-box-align: var(--body-align-items);
  -webkit-align-items: var(--body-align-items);
  -ms-flex-align: var(--body-align-items);
  align-items: var(--body-align-items);
  padding-top: 5px;
}

woa-store-details-panel .store-main-body-details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: var(--store-main-flex-shrink);
  -ms-flex-negative: var(--store-main-flex-shrink);
  flex-shrink: var(--store-main-flex-shrink);
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-width: calc(100% - var(--actions-width-allowance));
}

woa-store-details-panel .store-main-body-details-static {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

woa-store-details-panel .store-main-body-details-static-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

woa-store-details-panel .store-main-body-details-static-info-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition: max-height 0.33s ease;
  transition: max-height 0.33s ease;
  overflow: hidden;
}

woa-store-details-panel .store-main-body-details-static-info-text.collapsible {
  max-height: var(--line-height);
  --address-details-text-align: left;
  --details-cursor: pointer;
}

@media (hover: hover) {
  woa-store-details-panel .store-main-body-details-static-info-text.collapsible:hover {
    opacity: 0.5;
  }
}

woa-store-details-panel .store-main-body-details-static-info-text.collapsible.touched {
  opacity: 0.5;
}

woa-store-details-panel .store-main-body-details-static-info-text:not(.collapsible) {
  --address-details-text-align: justify;
}

woa-store-details-panel .store-main-body-details-static-info-text-details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  cursor: var(--details-cursor, auto);
}

woa-store-details-panel .store-main-body-details-static-info-text-details-detail {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: var(--line-height);
  text-align: var(--address-details-text-align);
}

woa-store-details-panel .store-main-body-details-static-info-text-details-detail:not(:last-child) {
  margin-bottom: 10px;
}

woa-store-details-panel .store-main-body-details-static-info-text-toggle {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  margin-left: 10px;
}

woa-store-details-panel .store-main-body-details-static-info-text-toggle > * {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-store-details-panel .store-main-body-details-static-info-text-toggle > * ::-webkit-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-store-details-panel .store-main-body-details-static-info-text-toggle > * ::-moz-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-store-details-panel .store-main-body-details-static-info-text-toggle > * ::-ms-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-store-details-panel .store-main-body-details-static-info-text-toggle > * ::placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-store-details-panel .store-main-body-details-static-info-telephone {
  padding-bottom: 5px;
  --woa-link-font-weight: 600;
}

woa-store-details-panel .store-main-body-details-static-info-telephone:not(:first-child) {
  padding-top: 10px;
}

woa-store-details-panel .store-main-body-details-static-info-more {
  --woa-link-font-weight: 600;
}

woa-store-details-panel .store-main-body-details-static-info-more:not(:first-child) {
  padding-top: 5px;
}

woa-store-details-panel .store-main-body-details-status {
  -webkit-align-self: var(--status-align-self);
  -ms-flex-item-align: var(--status-align-self);
  align-self: var(--status-align-self);
  padding-top: var(--status-padding-top);
}

woa-store-details-panel .store-main-body-actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: var(--actions-justify-content);
  -webkit-justify-content: var(--actions-justify-content);
  -ms-flex-pack: var(--actions-justify-content);
  justify-content: var(--actions-justify-content);
  width: var(--actions-width);
  max-width: var(--actions-width);
  margin-top: var(--actions-margin-top);
  margin-left: var(--actions-margin-left);
}

woa-store-details-panel .store-main-body-actions-label {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 3px;
  margin-bottom: 5px;
  margin-right: 10px;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.7rem;
  white-space: nowrap;
}

woa-store-details-panel .store-main-body-actions-options {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

woa-store-details-panel .store-main-body-actions-options-option {
  --woa-button-margin-left: 0;
  --woa-button-margin-right: 10px;
}

woa-store-details-panel .store-main-location {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: var(--location-width);
  margin-top: var(--location-margin-top);
  margin-left: var(--location-margin-left);
}

woa-store-details-panel .store-main-location-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: var(--woa-store-details-map-width);
  padding-bottom: 75%;
}

woa-store-details-panel .store-main-location-main-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

woa-store-details-panel .store-main-location-link {
  margin-top: 10px;
  margin-bottom: 10px;
}

woa-store-map-panel {
  position: relative;
  padding: 2px;
}

woa-store-map-panel .map {
  position: absolute;
  height: calc(100% - 4px);
  width: calc(100% - 4px);
  top: 0;
  left: 0;
  margin-left: 2px;
  -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.35);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.35);
  border-radius: var(--border-radius) !important;
}

woa-store-map-panel .map.square {
  --border-radius: 9px;
}

woa-store-map-panel .map.circle {
  --border-radius: 50%;
}

woa-store-map-panel .map-image {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: var(--border-radius) !important;
}

woa-store-status-panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  --font-size: var(--woa-store-status-panel-label-font-size, 1.6rem);
}

woa-store-status-panel .indicator {
  height: var(--font-size);
  width: var(--font-size);
  border: 1px solid rgba(var(--theme-color-pair-foreground), 0.3);
  border-radius: 9999px;
  margin-top: 5px;
  margin-right: 10px;
}

woa-store-status-panel .indicator.open {
  background-color: rgba(var(--ovd-theme-color-success-foreground, var(--woa-theme-color-success-foreground)), 1);
}

woa-store-status-panel .indicator:not(.open) {
  background-color: rgba(var(--ovd-theme-color-danger-foreground, var(--woa-theme-color-danger-foreground)), 1);
}

woa-store-status-panel .details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 5px;
}

woa-store-status-panel .details-title {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

woa-store-status-panel .details-title > * {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-store-status-panel .details-title > * ::-webkit-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-store-status-panel .details-title > * ::-moz-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-store-status-panel .details-title > * ::-ms-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-store-status-panel .details-title > * ::placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

@media (hover: hover) {
  woa-store-status-panel .details-title:hover {
    opacity: 0.5;
  }
}

woa-store-status-panel .details-title.touched {
  opacity: 0.5;
}

woa-store-status-panel .details-title-label {
  font-size: var(--font-size);
  font-weight: var(--woa-store-status-panel-label-font-weight, 900);
  line-height: var(--font-size);
}

woa-store-status-panel .details-title-toggle {
  margin-left: 10px;
}

woa-store-status-panel .details-hours {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
  overflow: hidden;
  margin-top: 5px;
  padding-right: calc(var(--font-size) + 8px);
  max-height: 0;
  -webkit-transition: max-height 0.33s ease;
  transition: max-height 0.33s ease;
}

woa-store-status-panel .details-hours-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 1.4rem;
}

woa-store-status-panel .details-hours-item-time {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 5px;
}

woa-store-status-panel .details-hours-item-time-day {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  min-width: 100px;
  text-align: left;
  font-weight: 800;
  word-break: normal;
}

woa-store-status-panel .details-hours-item-time-day > * {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  fill: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  stroke: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-store-status-panel .details-hours-item-time-day > * ::-webkit-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-store-status-panel .details-hours-item-time-day > * ::-moz-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-store-status-panel .details-hours-item-time-day > * ::-ms-input-placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-store-status-panel .details-hours-item-time-day > * ::placeholder {
  color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
}

woa-store-status-panel .details-hours-item-time-hours {
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

woa-store-status-panel .details-hours-item-time-hours-start {
  min-width: 60px;
  margin-right: 10px;
  text-align: right;
}

woa-store-status-panel .details-hours-item-time-hours-end {
  min-width: 60px;
  margin-left: 10px;
  text-align: right;
}

/********************************************************************************
  All themeable settings should appear here, and start with the '--woa-' prefix
********************************************************************************/
html {
  /*****************
     * PALETTE COLORS
     ****************/
  --woa-chewzie-orange: #ff6450;
  /**
     * The following provides default settings for a number of palette colors, based upon other palette colors.
     * Any palette color with a default value of "unset", is mandatory, and must be specified by the app-theme.
     *
     * A note on color naming:
     * Color-pairs are typically named based on the purpose of the background color.
     * So "standard-page" is the color that is commonly used for page backgrounds, and "panel" is used for panel backgrounds.
     * Foreground-only colors are obviously named according to the purpose of the foreground.
     */
  /**
     * standard-page
     *
     * This is the color-pair which is used predominantly throughout most of the pages and popups in the app.
     */
  --woa-theme-color-standard-page-pair-background: 255, 255, 255;
  --woa-theme-color-standard-page-pair-foreground: 255, 100, 80;
  /**
     * panel
     *
     * This color-pair is used throughout the app for content displayed in panels, in order distinguish it from the overall page background.
     * Use cases include:
     *   - default for the default-themed-tiled-menu-item color-pair;
     *   - side panel body on desktop home pages;
     *   - behind promo cards as the "peeled" area.
     *   - promo cards (without images).
     * The background is typically a shade or two lighter or darker than the standard-page background.
     * This color-pair is used to derive the auto-dark-panel and auto-light-panel colors below;
     *
     * foreground variants:
     *   - highlighted: used to display bolded text.
     */
  --woa-theme-color-panel-pair-background: none;
  --woa-theme-color-panel-pair-foreground: none;
  --woa-theme-color-panel-pair-highlighted-foreground: var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-foreground));
  /**
     * auto-dark-panel and auto-light-panel
     *
     * These two pseudo-theme-colors are generated automatically from the panel color-pair.
     * As the names suggest, these colors reflect the darker and lighter colors of the base color-pair.
     *
     * These colors are referenced in turn as the defaults for other color-pairs.
     * Currently, this is used only for feature-text.
     *
     * If so desired, these colors can be directly themed to override the automatic settings, however this is not typically necessary.
     */
  --woa-theme-color-auto-dark-panel: unset;
  --woa-theme-color-auto-light-panel: unset;
  /**
     * standard-page-header
     *
     * This color-pair is used for shading of headers, predominantly on mobile pages.
     * It is also used for:
     *   - the default for the panel-header-footer color-pair.
     * The background is typically dark where the standard-page background is light, or vice-versa.
     * However, it can also be the same or similar to the standard-page background if a less contrasting theme is desired (e.g. all white).
     */
  --woa-theme-color-standard-page-header-pair-background: unset;
  --woa-theme-color-standard-page-header-pair-foreground: unset;
  /**
     * panel-header-footer
     *
     * This color-pair is used for the contrasting header and footer sections of the side panels on the desktop home pages.
     * It is also used for:
     *   - the default for the header-image color-pair;
     *   - the desktop ordering page "image" header if no store image is defined;
     *   - the desktop ordering page footer.
     *   - the default loyalty card background;
     *   - the default for the loyalty card "placeholder" circles;
     * This color-pair can be themed directly, but the default behaviour is to use the standard-page-header color-pair.
     */
  --woa-theme-color-panel-header-footer-pair-background: var(--ovd-theme-color-standard-page-header-pair-background, var(--woa-theme-color-standard-page-header-pair-background));
  --woa-theme-color-panel-header-footer-pair-foreground: var(--ovd-theme-color-standard-page-header-pair-foreground, var(--woa-theme-color-standard-page-header-pair-foreground));
  --woa-theme-color-panel-header-footer-pair-background-shader: var(--ovd-theme-color-standard-page-header-pair-background-shader, var(--woa-theme-color-standard-page-header-pair-background-shader));
  --woa-theme-color-panel-header-footer-pair-foreground-shader: var(--ovd-theme-color-standard-page-header-pair-foreground-shader, var(--woa-theme-color-standard-page-header-pair-foreground-shader));
  /**
     * standard-page-image
     *
     * This color-pair is used as the 'tint' color behind the standard page background image which now appears only on the entry page.
     * The extent to which the background color is visible, and thereby lightens or darkens the image, depends upon the opacity of the image.
     * This color-pair can be themed directly, but the default behaviour is to use the standard-page color-pair.
     */
  --woa-theme-color-standard-page-image-pair-background: var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background));
  --woa-theme-color-standard-page-image-pair-foreground: var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground));
  --woa-theme-color-standard-page-image-pair-background-shader: var(--ovd-theme-color-standard-page-pair-background-shader, var(--woa-theme-color-standard-page-pair-background-shader));
  --woa-theme-color-standard-page-image-pair-foreground-shader: var(--ovd-theme-color-standard-page-pair-foreground-shader, var(--woa-theme-color-standard-page-pair-foreground-shader));
  /**
     * header-image
     *
     * This color-pair is used as the 'tint' color behind header images which appear in the following places:
     *   - on the mobile ordering page header;
     *   - on the desktop home page "image" header;
     *   - on the desktop store-selection page store tile headers.
     * Note that while different stores can have different images, the same color-pair will always be used.
     * The extent to which the background color is visible, and thereby lightens or darkens the image, depends upon the opacity of the image.
     * The foreground color is used for test displayed on the header images.
     * This color-pair can be themed directly, but the default behaviour is to use the page-header-footer color-pair.
     */
  --woa-theme-color-header-image-pair-background: var(--ovd-theme-color-standard-page-header-pair-background, var(--woa-theme-color-standard-page-header-pair-background));
  --woa-theme-color-header-image-pair-foreground: var(--ovd-theme-color-standard-page-header-pair-foreground, var(--woa-theme-color-standard-page-header-pair-foreground));
  --woa-theme-color-header-image-pair-background-shader: var(--ovd-theme-color-standard-page-header-pair-background-shader, var(--woa-theme-color-standard-page-header-pair-background-shader));
  --woa-theme-color-header-image-pair-foreground-shader: var(--ovd-theme-color-standard-page-header-pair-foreground-shader, var(--woa-theme-color-standard-page-header-pair-foreground-shader));
  /**
     * error-message
     *
     * This color-pair is used for content and footer inline error messages.
     */
  --woa-theme-color-error-message-pair-background: unset;
  --woa-theme-color-error-message-pair-foreground: unset;
  /**
     * warning-message
     *
     * This color-pair is used for content and footer inline warning messages.
     */
  --woa-theme-color-warning-message-pair-background: unset;
  --woa-theme-color-warning-message-pair-foreground: unset;
  /**
     * success-message
     *
     * This color-pair is used for content and footer inline success messages.
     */
  --woa-theme-color-success-message-pair-background: unset;
  --woa-theme-color-success-message-pair-foreground: unset;
  /**
     * info-message
     *
     * This color-pair is used for content and footer inline informational messages.
     */
  --woa-theme-color-info-message-pair-background: unset;
  --woa-theme-color-info-message-pair-foreground: unset;
  /**
     * menu-page-image
     *
     * This color-pair is used as the 'tint' color behind the desktop menu page background image.
     * The extent to which the background color is visible, and thereby lightens or darkens the image, depends upon the opacity of the image.
     * The foreground color is used for content on the desktop menu page when an image is applied.
     * This color-pair is set from the menu rather than the theme. The default behaviour is to use the standard-page color-pair.
     */
  --woa-theme-color-menu-page-image-pair-background: var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background));
  --woa-theme-color-menu-page-image-pair-foreground: var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground));
  --woa-theme-color-menu-page-image-pair-background-shader: var(--ovd-theme-color-standard-page-pair-background-shader, var(--woa-theme-color-standard-page-pair-background-shader));
  --woa-theme-color-menu-page-image-pair-foreground-shader: var(--ovd-theme-color-standard-page-pair-foreground-shader, var(--woa-theme-color-standard-page-pair-foreground-shader));
  /**
     * feature-text
     *
     * This color-pair is used for displaying text on deals, promos etc where text is displayed over images,
     * requiring use of a background shadow or shroud to improve readability.
     * The foreground color is used for the text, and the background is used for the shadow or shroud.
     * This color-pair can be themed directly, but the default behaviour is to use auto-dark-panel/auto-light-panel for
     * light text with a dark shadow.
     */
  --woa-theme-color-feature-text-pair-background: var(--ovd-theme-color-auto-dark-panel, var(--woa-theme-color-auto-dark-panel));
  --woa-theme-color-feature-text-pair-foreground: var(--ovd-theme-color-auto-light-panel, var(--woa-theme-color-auto-light-panel));
  /**
     * brand
     *
     * This is the primary brand color of the theme.
     * It is used throughout the application for buttons, headers, heading text etc.
     * It is defined as both as a foreground/border color, and as a color-pair, and while these can theoretically be themed
     * differently, this is not typically recommended.
     * Given its wide usage, it should be made accessible against the backgrounds of the following color-pairs:
     *   - standard-page;
     *   - standard-page-header;
     *   - standard-page-image;
     *   - panel;
     *   - panel-header-footer;
     *   - header-image;
     *
     * Note: To aid in ensuring accessibility, this color pair and foreground color are background-context-overridable.
     */
  --woa-theme-color-brand-pair-background: unset;
  --woa-theme-color-brand-pair-foreground: unset;
  --woa-theme-color-brand-foreground: var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background));
  /**
     * link
     *
     * This foreground-only color is used for tertiary action controls which are displayed in a "link" style.
     * It is used throughout the application, including directly on the desktop for navigation and refresh links.
     * Given its wide usage, it should be made accessible against the backgrounds of the following color-pairs:
     *   - standard-page,
     *   - standard-page-header;
     *   - standard-page-image;
     *   - panel;
     *   - panel-header-footer;
     *   - header-image;
     *   - menu-page;
     * It is preferred that this color be distinguishable from brand, although it will often be similar (e.g. a darker shade).
     *
     * Note: To aid in ensuring accessibility, this foreground color is background-context-overridable.
     */
  --woa-theme-color-link-foreground: unset;
  /**
     * danger
     *
     * This color-pair is used for controls or buttons which have a destructive or negative connotation.
     * It is also used for indicating error states on form input controls.
     * It is defined both as a foreground/border color, and as color-pair, and while these can theoretically be themed
     * differently, this is not typically recommended.
     * Given its wide usage, it should be made accessible against the backgrounds of the following color-pairs:
     *   - standard-page;
     *   - standard-page-header;
     *   - panel;
     *   - panel-header-footer;
     * A bright shade of red is typically used, unless this is too similar to the primary color, in which case
     * an alternative such as orange may be used.
     *
     * This color is NOT currently background-context-overridable.
     */
  --woa-theme-color-danger-pair-background: unset;
  --woa-theme-color-danger-pair-foreground: unset;
  --woa-theme-color-danger-foreground: var(--ovd-theme-color-danger-pair-background, var(--woa-theme-color-danger-pair-background));
  /**
     * success
     *
     * This foreground-only color is used in limited circumstances to indicate success of a process such as completing selections for a composite product.
     * In current use cases, an icon displayed in the danger color is replaced with one in this color when the process is finished.
     * A bright shade of green is typically used, even if this is similar to the primary color.
     */
  --woa-theme-color-success-foreground: unset;
  /**
     * Background context overriding
     * -----------------------------
     * Certain color-pairs and foreground-colors can be altered based on the background in which they appear.
     * This can simplify theme creation by adjusting colors for accessibility, or even allowing certain color-pair
     * backgrounds to share colors with foregrounds.
     * For example, If the brand color was green, I might want to use the same green as the panel-header-footer
     * color-pair, and change the brand color to black when used on that background.
     * As long as all code references and applies colors via the appropriate theming-support functions and mixins,
     * it is possible to define additional --woa-theme-color entries to support this kind of theming.
     *
     * At time of writing, the colors which can be overridden in this way are:
     *   - brand (color-pair and foreground)
     *   - link (foreground)
     * Support can be added for other colors by modifying the $overridable-color-pairs and $overridable-foreground-colors
     * lists defined in _theming-support.scss.
     *
     * The override css variables are formed by combining the context color-pair name with the name of the palette entry to be overridden.
     * For example, for the example above, the following could be defined:
     *   --woa-theme-color-panel-header-footer--brand-pair-background: 255, 255, 255
     *   --woa-theme-color-panel-header-footer--brand-pair-foreground: 0, 255, 0
     *   --woa-theme-color-panel-header-footer--brand-foreground: 255, 255, 255
     * This says that when used within the contract background, the brand color-pair is green on white,
     * and the brand foreground is white.
     *
     * Note the following about the above example:
     *   1. Even though the panel-header-footer color-pair defaults to the standard-page-header color-pair, the override variables
     *      must be set for panel-header-footer specifically. An override for the standard-page-header background would not be applied
     *      to brand colored-elements in the desktop panel header.
     *   2. Even though the brand foreground defaults to the brand-pair background, it must be explicitly overridden.
     *      This is applied dynamically when the palette colors are loaded.
     *
     * Both of these limitations relate to the cascading nature of css variables, and the point at which the defaults are defined.
     */
  --woa-theme-font-common: Inter, sans-serif;
  --woa-horizontal-logo-height: 40px;
  --woa-vertical-logo-width: 120px;
  --woa-button-tier1-width: 100%;
  --woa-button-tier1-height: 48px;
  --woa-button-tier1-side-padding: 12px;
  --woa-button-tier1-top-bottom-padding: 3px;
  --woa-button-tier1-font-size: 1.6rem;
  --woa-button-tier1-font-weight: 600;
  --woa-button-tier1-content-spacing: 8px;
  --woa-button-tier1-rounded-border-radius: 5px;
  --woa-button-tier1-high-outline-border-width: 4px;
  --woa-button-tier1-low-outline-border-width: 1px;
  --woa-button-tier1-icon-size: 24px;
  --woa-button-tier1-raised-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
  --woa-button-tier2-width: auto;
  --woa-button-tier2-min-width: auto;
  --woa-button-tier2-max-width: auto;
  --woa-button-tier2-height: 34px;
  --woa-button-tier2-side-padding: 12px;
  --woa-button-tier2-top-bottom-padding: 2px;
  --woa-button-tier2-font-size: 1.4rem;
  --woa-button-tier2-font-weight: 600;
  --woa-button-tier2-content-spacing: 5px;
  --woa-button-tier2-rounded-border-radius: 2px;
  --woa-button-tier2-high-outline-border-width: 2px;
  --woa-button-tier2-low-outline-border-width: 1px;
  --woa-button-tier2-icon-size: 18px;
  --woa-button-tier2-raised-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  --woa-field-border-radius: 3px;
  --woa-default-field-padding: 12px 15px 12px 10px;
  --woa-field-padding: var(--woa-default-field-padding);
  --woa-selection-field-icon-size: 13px;
  --woa-password-field-icon-size: 19px;
  --woa-page-open-background-alpha: 0.6;
  --woa-page-transition-period: 300ms;
  --woa-page-navbar-height: 63px;
  --woa-page-navbar-padding: 12px 16px;
  --woa-page-default-content-padding: 15px;
  --woa-page-default-footer-padding: 15px;
  --woa-full-page-pillarbox-width: 450px;
  --woa-modal-page-border-radius: 15px;
  --woa-side-modal-min-width: Min(330px, 85vw);
  --woa-side-modal-max-width: 85vw;
  --woa-modal-header-title-font-size: 1.9rem;
  --woa-desktop-pillarbox-width: 1200px;
  --woa-desktop-header-navbar-height: 63px;
  --woa-desktop-header-navbar-unscrolled-opacity: 0.1;
  --woa-desktop-header-navbar-hover-opacity: 0.3;
  --woa-desktop-header-navbar-scrolled-opacity: 0.99;
  --woa-desktop-header-navbar-scroll-transition-time: 1.0s;
  --woa-desktop-header-navbar-hover-transition-time: 0.5s;
  --woa-desktop-content-header-image-height: 200px;
  --woa-desktop-full-width-header-image-height: 300px;
  --woa-desktop-header-image-logo-opacity: 0.8;
  --woa-desktop-header-image-logo-shadow-blur-radius: 2px;
  --woa-desktop-titlebar-height: 44px;
  --woa-mobile-header-separate-image-height: 125px;
  --woa-mobile-header-separate-image-shadow-width: 8px;
  --woa-mobile-header-overlay-image-height: 230px;
  --woa-sidebar-min-width: 370px;
  --woa-sidebar-narrow-min-width: 330px;
  --woa-sidebar-max-width: 450px;
  --woa-sidebar-border-width: 0;
  --woa-sidebar-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.75);
  --woa-item-edit-summary-width: 360px;
  --woa-item-edit-summary-narrow-width: 300px;
  --woa-item-edit-summary-image-height: 300px;
  --woa-menu-item-image-width: 135px;
  --woa-menu-item-image-height: 115px;
  --woa-menu-item-image-border-radius: 5px;
  --woa-menu-item-image-fade-in-duration: 0.8s;
  --woa-menu-item-promo-opacity: 0.8;
  --woa-menu-item-promo-border-radius: 1000px;
  --woa-menu-item-price-strikeout-thickness: 2px;
  --woa-menu-item-unavailable-grayscale: 0.9;
  --woa-menu-text-item-max-width: 700px;
  --woa-menu-category-image-height: 145px;
  --woa-desktop-menu-category-selector-narrow-width: var(--woa-menu-category-image-height);
  --woa-desktop-menu-category-selector-width-with-images: 370px;
  --woa-desktop-menu-category-selector-width-without-images: 200px;
  --woa-promo-slide-aspect-ratio: (16 / 9);
  --woa-promo-slide-edge-width: 15px;
  --woa-promo-slide-side-margin: 15px;
  --woa-promo-slide-min-height: 162px;
  --woa-promo-label-font-scale: 0.65;
  --woa-promo-label-transform: none;
  --woa-promo-productName-font-scale: 0.6;
  --woa-promo-productName-transform: none;
  --woa-promo-productPrice-font-scale: 0.55;
  --woa-promo-productPrice-transform: none;
  --woa-promo-message-font-scale: 0.45;
  --woa-promo-message-transform: none;
  --woa-promo-faded-image-opacity: 0.5;
  --woa-promo-image-shade-opacity: 0.5;
  --woa-promo-shaded-image-text-shadow:
        -1px -1px 0 rgba(var(--ovd-theme-color-feature-text-pair-background, var(--woa-theme-color-feature-text-pair-background)), 0.5),
        1px -1px 0 rgba(var(--ovd-theme-color-feature-text-pair-background, var(--woa-theme-color-feature-text-pair-background)), 0.5),
        -1px 1px 0 rgba(var(--ovd-theme-color-feature-text-pair-background, var(--woa-theme-color-feature-text-pair-background)), 0.5),
        1px 1px 0 rgba(var(--ovd-theme-color-feature-text-pair-background, var(--woa-theme-color-feature-text-pair-background)), 0.5);
  --woa-promo-unshaded-image-text-shadow:
        -1px -1px 0 rgba(var(--ovd-theme-color-panel-pair-background, var(--woa-theme-color-panel-pair-background)), 0.5),
        1px -1px 0 rgba(var(--ovd-theme-color-panel-pair-background, var(--woa-theme-color-panel-pair-background)), 0.5),
        -1px 1px 0 rgba(var(--ovd-theme-color-panel-pair-background, var(--woa-theme-color-panel-pair-background)), 0.5),
        1px 1px 0 rgba(var(--ovd-theme-color-panel-pair-background, var(--woa-theme-color-panel-pair-background)), 0.5);
  --woa-loyalty-card-max-width: 280px;
  --woa-loyalty-card-aspect-ratio: 1.586;
  --woa-loyalty-card-border-radius: 10px;
  --woa-loyalty-card-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  --woa-default-themed-loyalty-card-body-padding: 5px;
  --woa-default-themed-loyalty-card-background-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-background, var(--woa-theme-color-panel-header-footer-pair-background)), 1);
  --woa-default-themed-loyalty-card-max-column-spec: 5 7 9 12 15;
  --woa-default-themed-loyalty-card-header-text-color: rgba(var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground)), 1);
  --woa-default-themed-loyalty-card-header-background-color: rgba(var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background)), 1);
  --woa-default-themed-loyalty-card-header-background-opacity: 0.75;
  --woa-default-themed-loyalty-card-footer-text-color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  --woa-default-themed-loyalty-card-footer-background-color: rgba(var(--ovd-theme-color-panel-pair-background, var(--woa-theme-color-panel-pair-background)), 1);
  --woa-default-themed-loyalty-card-footer-background-opacity: 0.75;
  --woa-default-themed-loyalty-card-placeholder-background-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-background, var(--woa-theme-color-panel-header-footer-pair-background)), 1);
  --woa-default-themed-loyalty-card-placeholder-border-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground)), 1);
  --woa-default-themed-loyalty-card-placeholder-opacity: 0.7;
  --woa-default-themed-loyalty-card-stamp-color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  --woa-default-themed-loyalty-card-stamp-opacity: 0.8;
  --woa-default-themed-loyalty-card-stamp-icon: star-solid;
  --woa-default-themed-loyalty-card-stamp-icon-scale: 1;
  --woa-default-themed-loyalty-card-stamp-icon-rotate-factor: 1;
  --woa-ticket-max-width: 280px;
  --woa-ticket-aspect-ratio: 1.586;
  --woa-ticket-border-radius: 10px;
  --woa-ticket-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  --woa-default-themed-ticket-body-padding: 5px;
  --woa-default-themed-ticket-background-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-background, var(--woa-theme-color-panel-header-footer-pair-background)), 1);
  --woa-default-themed-ticket-max-column-spec: 5 7 9 12 15;
  --woa-default-themed-ticket-header-text-color: rgba(var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground)), 1);
  --woa-default-themed-ticket-header-background-color: rgba(var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background)), 1);
  --woa-default-themed-ticket-header-background-opacity: 0.75;
  --woa-default-themed-ticket-footer-text-color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  --woa-default-themed-ticket-footer-background-color: rgba(var(--ovd-theme-color-panel-pair-background, var(--woa-theme-color-panel-pair-background)), 1);
  --woa-default-themed-ticket-footer-background-opacity: 0.75;
  --woa-default-themed-ticket-placeholder-background-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-background, var(--woa-theme-color-panel-header-footer-pair-background)), 1);
  --woa-default-themed-ticket-placeholder-border-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground)), 1);
  --woa-default-themed-ticket-placeholder-opacity: 0.7;
  --woa-default-themed-ticket-stamp-color: rgba(var(--ovd-theme-color-brand-foreground, var(--woa-theme-color-brand-foreground)), 1);
  --woa-default-themed-ticket-stamp-opacity: 1;
  --woa-default-themed-ticket-stamp-icon: md-square;
  --woa-default-themed-ticket-stamp-icon-scale: 0.6;
  --woa-default-themed-ticket-stamp-icon-rotate-factor: 1;
  --woa-store-details-desktop-image-width: 150px;
  --woa-store-details-desktop-image-height: 150px;
  --woa-store-details-mobile-image-width: 100px;
  --woa-store-details-mobile-image-height: 100px;
  --woa-store-details-header-max-width: 400px;
  --woa-store-details-map-width: 400px;
  --woa-store-details-map-height: 300px;
  --woa-order-item-image-width: 85px;
  --woa-order-item-image-height: 70px;
  --woa-order-item-image-border-radius: 7px;
  --woa-order-item-heading-icon-size: 18px;
  --woa-order-item-name-font-size: 17px;
  --woa-order-item-component-name-font-size: 15px;
  --woa-order-item-extras-font-size: 14px;
  --woa-order-item-qty-icon-size: 17px;
  --woa-order-item-qty-spacing: 8px;
  --woa-order-item-price-col-width: 50px;
  --woa-composite-item-image-width: 120px;
  --woa-composite-item-image-height: 90px;
  --woa-composite-item-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  --woa-extras-image-overlay-remove-opacity: 85%;
  --woa-desktop-extras-group-spacing: 10px;
  --woa-desktop-extras-heading-spacing: 0;
  --woa-desktop-extras-row-spacing-with-image: 8px;
  --woa-desktop-extras-row-spacing-without-image: 15px;
  --woa-desktop-extras-normal-image-size: 70px;
  --woa-desktop-extras-compact-image-size: 40px;
  --woa-desktop-extras-normal-selected-image-border-width: 3px;
  --woa-desktop-extras-compact-selected-image-border-width: 2px;
  --woa-desktop-extras-normal-control-size: 19px;
  --woa-desktop-extras-compact-control-size: 19px;
  --woa-desktop-extras-normal-image-overlay-remove-margin: 5px;
  --woa-desktop-extras-compact-image-overlay-remove-margin: 4px;
  --woa-mobile-extras-group-spacing: 10px;
  --woa-mobile-extras-heading-spacing: 0;
  --woa-mobile-extras-row-spacing-with-image: 8px;
  --woa-mobile-extras-row-spacing-without-image: 15px;
  --woa-mobile-extras-normal-image-size: 60px;
  --woa-mobile-extras-compact-image-size: 40px;
  --woa-mobile-extras-normal-selected-image-border-width: 3px;
  --woa-mobile-extras-compact-selected-image-border-width: 2px;
  --woa-mobile-extras-normal-control-size: 19px;
  --woa-mobile-extras-compact-control-size: 19px;
  --woa-mobile-extras-normal-image-overlay-remove-margin: 5px;
  --woa-mobile-extras-compact-image-overlay-remove-margin: 4px;
  --woa-tip-selection-panel-option-size: 65px;
  --woa-tip-selection-panel-option-percentage-size: 1.8rem;
  --woa-tip-selection-panel-inline-option-size: 55px;
  --woa-tip-selection-panel-inline-option-percentage-size: 1.8rem;
}

/*
 * Returns a css variable reference to the named theme font value
 */
/*
* Convert a color value to rgb components suitable for the css rgb and rgba functions
* Note: Deprecated now that styles are externalised - this is only required to make colors in theme files easier to read
*/
/*
 * Returns a css rgba function call for the specified rgb value and alpha combination.
 */
/*
 * Returns a css variable reference to the named theme color rgb value (without an rgba function call)
 */
/*
* Returns the named color as an rgba() css function call.
*/
/*
 * Returns a pair-foreground color set by apply-theme-color-pair() as an rgba() css function call.
*  If $alpha is specified, it is applied to --theme-color-pair-foreground,
*  If $alpha is not specified --theme-color-pair-foreground-color, is used, which will reflect the alpha specified to apply-theme-color-pair() as $foreground-alpha.
*  If $variant is specified, --theme-color-pair-<variant>-foreground or --theme-color-pair-<variant>-foreground-color are used instead.
 */
/*
 * Returns a pair-background color set by apply-theme-color-pair() or apply-theme-color-pair-background()as an rgba() css function call.
*  If $alpha is specified, it is applied to --theme-color-pair-background,
*  If $alpha is not specified --theme-color-pair-background-color, is used, which will reflect the alpha specified to apply-theme-color-pair() as $background-alpha.
 */
/*
* Applies the specified foreground color
*/
/*
* Applies the specified color for borders
*/
/*
* Applies the specified background color.
*/
/*
* Applies the named theme foreground color
*/
/*
* Applies the named theme foreground color for borders
*/
/*
* Applies the foreground of the named theme color-pair
* The paired foreground colors are also placed into css variables with and without alpha applied,
* and can be explicitly re-used for descendant elements.
*/
/*
* Applies the background of the named theme color-pair
* The paired background color is also placed into css variables with and without alpha applied,
* and can be explicitly re-used for descendant elements.
*/
/*
* Applies the background and foreground colors for a named theme color-pair.
*/
/*
* Applies a pair-foreground color set by apply-theme-color-pair() or apply-theme-color-pair-foreground()
*/
/*
* Applies a pair-background color set by apply-theme-color-pair() or apply-theme-color-pair-background()
*/
/*
 * Overrides the css variables for one theme color-pair with those of another (which may or may not be populated).
 *
 * This is a bit complex...
 *
 * Simplistically, we could set the target css variables to reference the overriding variables, and rely upon css cascading
 * to default the value back to the original if the overrides ar not set.
 * e.g.
 *   on <html>:      --woa-theme-color1: blue;
 *   on   <div 1>:   --woa-theme-color-1: var(--woa-theme-color-2);   (where --woa-theme-color-2 is NOT populated)
 *   on     <div 2>: --woa-theme-color-1: var(--woa-theme-color-3);   (where --woa-theme-color-3 is NOT populated)
 * Considering only <html> and <div 1> for the moment, if --woa-theme-color-2 is not set, we might expect --woa-theme-color-1
 * to evaluate to blue on <div 1>.
 * However, there are two issues with this:
 * 1. It does not seem to work as expected. --woa-theme-color-2 appears to be unset on <div 1>;
 * 2. If it did work, it would not produce the results we actually need.
 *    On <div 2>, if --woa-theme-color-3 was not populated but --woa-theme-color-2 was,
 *    then --woa-theme-color-1 would inherit the value of --woa-theme-color-2.
 *    However, we really only want to override colors based on the background on which they appear,
 *    not the background of some higher-level element.
 *
 * Instead, we populate "--ovd" variables, and rely upon the use of theme-rgb() to resolve the color reference
 * against the override variables first, and use the primary theme variable as a fallback.
 * So a reference for theme-color-1, as generated by theme-rgb() would take the form:
 *   var(--ovd-theme-color-1, var(--woa-theme-color-1));
 * And here, to override theme-color-1 with theme-color-2, we would set:
 *   --ovd-theme-color-1: var(--woa-theme-color-2);
 * So if --woa-theme-color-2 were not set, the color reference would resolve to its primary value.
 *
 * Now this is where things get odd. Despite earlier attempts at simple overrides not appearing to cascade as initially expected,
 * it has subsequently been observed that the settings for the --ovd override variables in fact ARE cascading.
 * So if we take this example:
 *   on <html>:      --woa-theme-color1: blue;
 *   on   <div 1>:   --ovd-theme-color-1: var(--woa-theme-color-2);   (where --woa-theme-color-2 is populated)
 *   on     <div 2>: --ovd-theme-color-1: var(--woa-theme-color-3);   (where --woa-theme-color-3 is NOT populated)
 * A reference to --woa-theme-color-1 is applied on <div 2> of the form
 *   var(--ovd-theme-color-1, var(--woa-theme-color-1));
 * We would expect to get the color blue since --ovd-theme-color-1 has been set to an empty value on <div 2>, and should therefore use
 * the specified fallback of var(--woa-theme-color-1).
 * Instead, what is happening is that the value of --ovd-theme-color-1 from the parent <div 1> is being used, so we get the value of
 * --woa-theme-color-2, an override for an parent element which, as stated above, is not relevant for <div 2> in our use case.
 *
 * It may be that the different behaviour between the two cases lies in the subtle difference between cascading a value versus cascading
 * from another variable reference (possibly due to the point at which the variable references are actually resolved).
 *
 * Regardless, in order to avoid the unwanted cascading effect, the override variable set here will now also provide a fallback
 * to the primary value:
 *   --ovd-theme-color-1: var(--woa-theme-color-2, var(--woa-theme-color-1));
 * The result is that if no override variable has been set (because no overriding context exists), the theme-rgb() reference
 * fallback will be used as normal, BUT if the override context does exist but is set to preference a color that itself is not populated
 * (i.e. an unspecified override), THEN the primary value of the color will be used directly, rather than a potentially cascaded value
 * for the override variable.
 */
/**
 * The following convenience mixins are used to apply certain standard color-pairs via a class.
 * This is primarily intended for use by the woa-background-image directive.
 * Normal usage should be to include the apply-theme-color-pair mixin directly via css.
 * Alternatively, one could use the directive to apply a local class to the element,
 * and include the mixins in css selected by that class.
 */
.theme-standard-page-color-pair {
  --theme-color-pair-background: var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-standard-page-pair-background, var(--woa-theme-color-standard-page-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-standard-page-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-standard-page--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-standard-page--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-standard-page--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-standard-page--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-standard-page--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-standard-page-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-standard-page-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-pair-foreground, var(--woa-theme-color-standard-page-pair-highlighted-foreground, var(--woa-theme-color-standard-page-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-standard-page-color-pair > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-standard-page-color-pair > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-standard-page-color-pair > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-standard-page-color-pair > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-standard-page-color-pair > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-standard-page-image-color-pair {
  --theme-color-pair-background: var(--ovd-theme-color-standard-page-image-pair-background, var(--woa-theme-color-standard-page-image-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-standard-page-image-pair-background, var(--woa-theme-color-standard-page-image-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-standard-page-image-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-standard-page-image--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-standard-page-image--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-standard-page-image--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-standard-page-image--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-standard-page-image--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-standard-page-image-pair-foreground, var(--woa-theme-color-standard-page-image-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-standard-page-image-pair-foreground, var(--woa-theme-color-standard-page-image-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-standard-page-image-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-standard-page-image-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-image-pair-foreground, var(--woa-theme-color-standard-page-image-pair-highlighted-foreground, var(--woa-theme-color-standard-page-image-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-standard-page-image-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-image-pair-foreground, var(--woa-theme-color-standard-page-image-pair-highlighted-foreground, var(--woa-theme-color-standard-page-image-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-standard-page-image-color-pair > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-standard-page-image-color-pair > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-standard-page-image-color-pair > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-standard-page-image-color-pair > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-standard-page-image-color-pair > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-standard-page-header-color-pair {
  --theme-color-pair-background: var(--ovd-theme-color-standard-page-header-pair-background, var(--woa-theme-color-standard-page-header-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-standard-page-header-pair-background, var(--woa-theme-color-standard-page-header-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-standard-page-header-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-standard-page-header--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-standard-page-header--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-standard-page-header--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-standard-page-header--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-standard-page-header--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-standard-page-header-pair-foreground, var(--woa-theme-color-standard-page-header-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-standard-page-header-pair-foreground, var(--woa-theme-color-standard-page-header-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-standard-page-header-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-standard-page-header-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-header-pair-foreground, var(--woa-theme-color-standard-page-header-pair-highlighted-foreground, var(--woa-theme-color-standard-page-header-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-standard-page-header-pair-highlighted-foreground, var(--ovd-theme-color-standard-page-header-pair-foreground, var(--woa-theme-color-standard-page-header-pair-highlighted-foreground, var(--woa-theme-color-standard-page-header-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-standard-page-header-color-pair > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-standard-page-header-color-pair > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-standard-page-header-color-pair > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-standard-page-header-color-pair > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-standard-page-header-color-pair > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-panel-color-pair {
  --theme-color-pair-background: var(--ovd-theme-color-panel-pair-background, var(--woa-theme-color-panel-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-panel-pair-background, var(--woa-theme-color-panel-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-panel-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-panel--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-panel--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-panel--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-panel--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-panel--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-panel-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-panel-pair-highlighted-foreground, var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-highlighted-foreground, var(--woa-theme-color-panel-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-panel-pair-highlighted-foreground, var(--ovd-theme-color-panel-pair-foreground, var(--woa-theme-color-panel-pair-highlighted-foreground, var(--woa-theme-color-panel-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-panel-color-pair > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-panel-color-pair > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-panel-color-pair > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-panel-color-pair > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-panel-color-pair > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-brand-color-pair {
  --theme-color-pair-background: var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-brand-pair-background, var(--woa-theme-color-brand-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-brand-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-link-foreground: var(--woa-theme-color-brand--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-brand-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-brand-pair-highlighted-foreground, var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-brand-pair-highlighted-foreground, var(--ovd-theme-color-brand-pair-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-brand-color-pair > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-brand-color-pair > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-brand-color-pair > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-brand-color-pair > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-brand-color-pair > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-danger-color-pair {
  --theme-color-pair-background: var(--ovd-theme-color-danger-pair-background, var(--woa-theme-color-danger-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-danger-pair-background, var(--woa-theme-color-danger-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-danger-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-danger--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-danger--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-danger--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-danger--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-danger--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-danger-pair-foreground, var(--woa-theme-color-danger-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-danger-pair-foreground, var(--woa-theme-color-danger-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-danger-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-danger-pair-highlighted-foreground, var(--ovd-theme-color-danger-pair-foreground, var(--woa-theme-color-danger-pair-highlighted-foreground, var(--woa-theme-color-danger-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-danger-pair-highlighted-foreground, var(--ovd-theme-color-danger-pair-foreground, var(--woa-theme-color-danger-pair-highlighted-foreground, var(--woa-theme-color-danger-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-danger-color-pair > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-danger-color-pair > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-danger-color-pair > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-danger-color-pair > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-danger-color-pair > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-panel-header-footer-color-pair {
  --theme-color-pair-background: var(--ovd-theme-color-panel-header-footer-pair-background, var(--woa-theme-color-panel-header-footer-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-background, var(--woa-theme-color-panel-header-footer-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-panel-header-footer-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-panel-header-footer--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-panel-header-footer--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-panel-header-footer--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-panel-header-footer--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-panel-header-footer--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-panel-header-footer-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-panel-header-footer-pair-highlighted-foreground, var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-highlighted-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-panel-header-footer-pair-highlighted-foreground, var(--ovd-theme-color-panel-header-footer-pair-foreground, var(--woa-theme-color-panel-header-footer-pair-highlighted-foreground, var(--woa-theme-color-panel-header-footer-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-panel-header-footer-color-pair > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-panel-header-footer-color-pair > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-panel-header-footer-color-pair > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-panel-header-footer-color-pair > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-panel-header-footer-color-pair > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-header-image-color-pair {
  --theme-color-pair-background: var(--ovd-theme-color-header-image-pair-background, var(--woa-theme-color-header-image-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-header-image-pair-background, var(--woa-theme-color-header-image-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-header-image-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-header-image--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-header-image--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-header-image--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-header-image--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-header-image--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-header-image-pair-foreground, var(--woa-theme-color-header-image-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-header-image-pair-foreground, var(--woa-theme-color-header-image-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-header-image-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-header-image-pair-highlighted-foreground, var(--ovd-theme-color-header-image-pair-foreground, var(--woa-theme-color-header-image-pair-highlighted-foreground, var(--woa-theme-color-header-image-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-header-image-pair-highlighted-foreground, var(--ovd-theme-color-header-image-pair-foreground, var(--woa-theme-color-header-image-pair-highlighted-foreground, var(--woa-theme-color-header-image-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-header-image-color-pair > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-header-image-color-pair > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-header-image-color-pair > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-header-image-color-pair > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-header-image-color-pair > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-success-message-color-pair {
  --theme-color-pair-background: var(--ovd-theme-color-success-message-pair-background, var(--woa-theme-color-success-message-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-success-message-pair-background, var(--woa-theme-color-success-message-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-success-message-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-success-message--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-success-message--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-success-message--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-success-message--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-success-message--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-success-message-pair-foreground, var(--woa-theme-color-success-message-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-success-message-pair-foreground, var(--woa-theme-color-success-message-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-success-message-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-success-message-pair-highlighted-foreground, var(--ovd-theme-color-success-message-pair-foreground, var(--woa-theme-color-success-message-pair-highlighted-foreground, var(--woa-theme-color-success-message-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-success-message-pair-highlighted-foreground, var(--ovd-theme-color-success-message-pair-foreground, var(--woa-theme-color-success-message-pair-highlighted-foreground, var(--woa-theme-color-success-message-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-success-message-color-pair > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-success-message-color-pair > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-success-message-color-pair > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-success-message-color-pair > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.theme-success-message-color-pair > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.menu-page-image-color-pair {
  --theme-color-pair-background: var(--ovd-theme-color-menu-page-image-pair-background, var(--woa-theme-color-menu-page-image-pair-background));
  --theme-color-pair-background-color: rgba(var(--ovd-theme-color-menu-page-image-pair-background, var(--woa-theme-color-menu-page-image-pair-background)), 1);
  --theme-color-pair-background-shader: var(--woa-theme-color-menu-page-image-pair-background-shader);
  background-color: rgba(var(--theme-color-pair-background), 1);
  --ovd-theme-color-brand-pair-background: var(--woa-theme-color-menu-page-image--brand-pair-background, var(--woa-theme-color-brand-pair-background));
  --ovd-theme-color-brand-pair-foreground: var(--woa-theme-color-menu-page-image--brand-pair-foreground, var(--woa-theme-color-brand-pair-foreground));
  --ovd-theme-color-brand-pair-highlighted-foreground: var(--woa-theme-color-menu-page-image--brand-pair-highlighted-foreground, var(--woa-theme-color-brand-pair-highlighted-foreground));
  --ovd-theme-color-brand-foreground: var(--woa-theme-color-menu-page-image--brand-foreground, var(--woa-theme-color-brand-foreground));
  --ovd-theme-color-link-foreground: var(--woa-theme-color-menu-page-image--link-foreground, var(--woa-theme-color-link-foreground));
  --theme-color-pair-foreground: var(--ovd-theme-color-menu-page-image-pair-foreground, var(--woa-theme-color-menu-page-image-pair-foreground));
  --theme-color-pair-foreground-color: rgba(var(--ovd-theme-color-menu-page-image-pair-foreground, var(--woa-theme-color-menu-page-image-pair-foreground)), 1);
  --theme-color-pair-foreground-shader: var(--woa-theme-color-menu-page-image-pair-foreground-shader);
  --theme-color-pair-highlighted-foreground: var(--ovd-theme-color-menu-page-image-pair-highlighted-foreground, var(--ovd-theme-color-menu-page-image-pair-foreground, var(--woa-theme-color-menu-page-image-pair-highlighted-foreground, var(--woa-theme-color-menu-page-image-pair-foreground))));
  --theme-color-pair-highlighted-foreground-color: rgba(var(--ovd-theme-color-menu-page-image-pair-highlighted-foreground, var(--ovd-theme-color-menu-page-image-pair-foreground, var(--woa-theme-color-menu-page-image-pair-highlighted-foreground, var(--woa-theme-color-menu-page-image-pair-foreground)))), 1);
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.menu-page-image-color-pair > * {
  color: rgba(var(--theme-color-pair-foreground), 1);
  fill: rgba(var(--theme-color-pair-foreground), 1);
  stroke: rgba(var(--theme-color-pair-foreground), 1);
}

.menu-page-image-color-pair > * ::-webkit-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.menu-page-image-color-pair > * ::-moz-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.menu-page-image-color-pair > * ::-ms-input-placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

.menu-page-image-color-pair > * ::placeholder {
  color: rgba(var(--theme-color-pair-foreground), 1);
}

woa-card-brand {
  padding: var(--woa-card-brand-padding, 0);
  background-color: white;
  border-radius: var(--woa-card-brand-border-radius, 3px);
}

woa-card-brand .media-object {
  background-color: initial;
  display: block;
  width: var(--woa-card-brand-width, 54px);
}

woa-chewzie-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

woa-chewzie-logo .media {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0.5;
}

woa-chewzie-logo .media-label {
  margin-right: 3px;
  font-family: "Trebuchet MS", sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.1rem;
  text-transform: uppercase;
}

woa-chewzie-logo .media-object {
  background-color: transparent;
  display: block;
  width: 90px;
}

woa-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
}

woa-icon .icon-svg {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: var(--woa-icon-width, var(--woa-icon-size, 20px));
  height: var(--woa-icon-height, var(--woa-icon-size, 20px));
  fill: var(--woa-icon-color);
  stroke: var(--woa-icon-stroke-color);
  stroke-width: var(--woa-icon-stroke-width, 0);
}

woa-icon .icon-svg.grunge {
  -webkit-mask-image: url(../assets/images/grunge.png);
  mask-image: url(../assets/images/grunge.png);
  -webkit-mask-size: 650px 650px;
  mask-size: 650px 650px;
  -webkit-mask-position: var(--woa-icon-grunge-offset, 0) var(--woa-icon-grunge-offset, 0);
  mask-position: var(--woa-icon-grunge-offset, 0) var(--woa-icon-grunge-offset, 0);
  mask-mode: alpha;
}

woa-icon-library {
  display: none;
  pointer-events: none;
}

.cached-background-image {
  position: relative;
}

.cached-background-image:before {
  content: var(--cached-background-image-content, unset);
  position: absolute;
  top: 0;
  left: 0;
  height: var(--woa-background-image-height, 100%);
  width: 100%;
  background-image: var(--cached-background-image-url);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: var(--cached-background-image-opacity, 1);
}

.cached-background-image-tiled {
  position: relative;
}

.cached-background-image-tiled:before {
  content: var(--cached-background-image-content, unset);
  position: absolute;
  top: 0;
  left: 0;
  height: var(--woa-background-image-height, 100%);
  width: 100%;
  background-image: var(--cached-background-image-url);
  background-position-x: left;
  background-position-y: top;
  background-size: auto;
  background-repeat: repeat;
  opacity: var(--cached-background-image-opacity, 1);
}

woa-loading-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 9998;
  pointer-events: none;
}

woa-loading-spinner .greeting {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 50vh;
  color: var(--woa-chewzie-orange);
  font-size: 2.2rem;
  text-align: center;
  opacity: 0;
  -webkit-animation-duration: 1.0s;
  animation-duration: 1.0s;
  -webkit-animation-name: fade;
  animation-name: fade;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

woa-loading-spinner .greeting-text {
  opacity: 1;
  -webkit-transition: opacity 1.0s ease-out;
  transition: opacity 1.0s ease-out;
}

woa-loading-spinner .greeting-text.failed {
  opacity: 0;
}

woa-loading-spinner .greeting-text-line-1 {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 2.4rem;
}

woa-loading-spinner .greeting-text-line-2 {
  margin-top: 10px;
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 2.2rem;
}

woa-loading-spinner .loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  pointer-events: auto;
}

woa-loading-spinner .loading.with-indicator {
  background-color: rgba(0, 0, 0, 0.25);
}

woa-loading-spinner .loading-indicator {
  background-color: white;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 9999px;
}

woa-loading-spinner .loading-indicator.with-message {
  width: 250px;
  height: 250px;
  border: 5px solid var(--woa-chewzie-orange);
  padding-top: calc(25px + 1.6rem);
  padding-bottom: 25px;
}

woa-loading-spinner .loading-indicator:not(.with-message) {
  width: 75px;
  height: 75px;
  padding: 1px;
}

woa-loading-spinner .loading-indicator:not(.with-message).with-quick-spinner {
  width: 46px;
  height: 46px;
  padding: 10px;
  opacity: 50%;
}

woa-loading-spinner .loading-indicator-quick-spinner {
  --woa-spinner-color: var(--woa-chewzie-orange);
}

woa-loading-spinner .loading-indicator-message {
  margin-top: 5px;
  max-width: 150px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.6rem;
}

.logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.logo-media.vertical {
  --object-height: var(--woa-vertical-logo-max-height, auto);
  --object-width: var(--woa-vertical-logo-width);
}

.logo-media.horizontal {
  --object-height: var(--woa-horizontal-logo-height);
  --object-width: auto;
}

.logo-media-object {
  background: initial;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: var(--object-height) !important;
  width: var(--object-width) !important;
  -o-object-fit: contain;
  object-fit: contain;
}

.logo-media-object svg {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 100%;
  max-width: 100%;
}

woa-qr-code-page .qr-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

woa-qr-code-page .qr-container-wrapper {
  background-color: white;
  padding-top: 4px;
  padding-left: 4px;
  padding-right: 4px;
}

woa-qr-code-page .qr-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 15px;
  font-size: 20px;
}

woa-qr-code-page .qr-text-code {
  font-weight: 800;
  white-space: normal;
  text-align: center;
}

woa-qr-code-panel {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

woa-qr-code-panel qr-code {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

woa-qr-code-panel qr-code img {
  border: 1px solid rgba(var(--theme-color-pair-foreground), 0.3);
  display: block;
  height: auto;
  width: auto;
}

woa-spinner {
  position: relative;
  width: var(--woa-spinner-size, 26px);
  height: var(--woa-spinner-size, 26px);
}

woa-spinner .spinner {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: spin 850ms linear infinite;
  animation: spin 850ms linear infinite;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

woa-spinner .spinner-circle {
  fill: transparent;
  stroke: var(--woa-spinner-color, var(--theme-color-pair-foreground-color));
  stroke-width: 4px;
  stroke-dasharray: 85px;
  stroke-dashoffset: 40px;
}

woa-toggle .toggle-indicator {
  --woa-icon-size: var(--woa-toggle-icon-size, 17px);
  -webkit-transition: -webkit-transform 0.66s ease;
  transition: -webkit-transform 0.66s ease;
  transition: transform 0.66s ease;
  transition: transform 0.66s ease, -webkit-transform 0.66s ease;
}

woa-toggle .toggle-indicator.active {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

woa-watermark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0.2;
  z-index: 9997;
}

woa-watermark .watermark {
  color: white;
  text-shadow: 2px 2px 5px black;
  white-space: nowrap;
  font-size: 8.5rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
