/* sites/places/app/less/places.less */
:root {
  --size-2: 0.2rem;
  --size-4: 0.4rem;
  --size-8: 0.8rem;
  --size-12: 1.2rem;
  --size-16: 1.6rem;
  --size-20: 2rem;
  --size-24: 2.4rem;
  --size-28: 2.8rem;
  --size-32: 3.2rem;
  --size-36: 3.6rem;
  --size-40: 4rem;
  --size-44: 4.4rem;
  --size-48: 4.8rem;
  --spacing-xxs: 0.2rem;
  --spacing-xs: 0.4rem;
  --spacing-sm: 0.8rem;
  --spacing-md: 1.2rem;
  --spacing-lg: 1.6rem;
  --spacing-xl: 2.4rem;
  --spacing-xxl: 3.2rem;
  --spacing-xxxl: 3.6rem;
  --spacing-4xl: 4.8rem;
  --spacing-5xl: 5.2rem;
  --radius-sm: 0.4rem;
  --radius-md: 0.6rem;
  --radius-lg: 0.8rem;
  --radius-xl: 1.2rem;
  --radius-xxl: 2.4rem;
  --color-text-disabled: #c7c7c7;
  --color-main-navigation: #107dcf;
  --color-main-navigation-05: #f3f8fd;
  --color-main-navigation-10: #e7f2fa;
  --color-main-navigation-30: #b7d8f1;
  --color-main-navigation-40: #9fcbec;
  --color-main-navigation-70: #55a2db;
  --color-main-navigation-80: #4097d9;
  --color-red: #db0037;
  --color-red-5: #fdf2f5;
  --color-red-10: #fbe5eb;
  --color-red-20: #f8ccd7;
  --color-red-30: #f4b2c3;
  --color-red-60: #e96687;
  --color-red-80: #e2335f;
  --color-hover-grey: #999999;
  --color-feature-ai: #8236cf;
  --color-feature-ai10: #f2ebfa;
  --color-feature-ai30: #d9c3f1;
  --color-feature-ai-text: #54228d;
  --gradient-feature-ai:
    linear-gradient(
      90deg,
      #cb5aff 0%,
      #539bff 100%);
  --color-main-brand: #3399ff;
  --color-main-navigation-disabled: #bee3ff;
  --color-main-navigation-highlight: #e3f2ff;
  --color-main-reserved: #6ca7f8;
  --color-main-navigation-muted-rest: #e7f2fa;
  --color-main-navigation-muted-hover: #b7d8f0;
  --color-brand-orange: #ff8854;
  --color-secondary-emergency: #c4314b;
  --color-secondary-emergency-text: #ee3e23;
  --color-secondary-warning: #b76011;
  --color-secondary-success: #237b4b;
  --color-secondary-success-background: #e7f2da;
  --color-secondary-warning-background: #fbf6d9;
  --color-secondary-emergency-background: #fcf4f6;
  --color-neutral-ink: #0c0c0c;
  --color-neutral-foreground: #242424;
  --color-neutral-foreground-1: #424242;
  --color-neutral-foreground-2: #616161;
  --color-neutral-foreground-disabled: #c7c7c7;
  --color-neutral-border: #d1d1d1;
  --color-neutral-background: #ffffff;
  --color-neutral-background-2: #f5f5f5;
  --color-border-1: #e6e6e6;
  --color-border-2: #f2f2f2;
  --color-listings-orange-text: #f6891e;
  --color-listings-red-badge: #db0037;
  --color-listings-app: #107dcf;
  --color-posts-app: #55a2db;
  --color-locator-app: #3399ff;
  --color-local-campaigns-app: #fc249f;
  --color-conversations-app: #f6891e;
  --color-champion-app: #db5588;
  --color-places-app: #001334;
  --color-new: #ff5900;
  --color-warning: #f6891e;
  --color-error: #db0037;
  --color-success: #3fa650;
  --color-highlight-text: #ffccda;
  --color-warning-background: #fef2e6;
  --color-error-background: #fff0f4;
  --color-success-background: #edf8ee;
  --color-success-background-2: #c4eecb;
  --shadow-fly-out: 0rem 0.5rem 1.5rem 0rem rgba(0, 0, 0, 0.12), 0rem 1.5rem 3.5rem 0rem rgba(60, 66, 87, 0.08);
  --shadow-card: 0px 0.3px 0.9px 0px rgba(0, 0, 0, 0.1), 0px 1.6px 3.6px 0px rgba(0, 0, 0, 0.14);
  --color-neutral-background-graphs-small: #e6e6e6;
  --color-secondary-attention-graphs: #f15079;
  --color-secondary-warning-graphs: #fdb268;
  --color-secondary-success-graphs: #61d173;
}
.pmt-edit-area {
  transition-timing-function: ease-out;
  transition-duration: 0.25s;
  transition-property: background-color;
  cursor: pointer;
  padding: 0.5rem 1rem;
}
@media screen and (min-width: 376px) {
  .pmt-edit-area {
    padding: 0.5rem 1rem;
  }
}
@media screen and (min-width: 640px) {
  .pmt-edit-area {
    padding: 1rem 2rem;
  }
}
.pmt-edit-area--hug {
  padding: 0;
}
.pmt-edit-area:hover,
.pmt-edit-area:focus {
  background-color: #fff2a5;
}
.pmt-edit-area--disabled {
  cursor: default;
}
.pmt-edit-area--disabled:hover,
.pmt-edit-area--disabled:focus {
  background-color: inherit;
}
.pmt-edit-area--forbidden {
  cursor: not-allowed;
}
.pmt-edit-area--forbidden:hover,
.pmt-edit-area--forbidden:focus {
  background-color: transparent;
}
.pmt-edit-area--beta {
  opacity: 0.7;
  filter: blur(1px) grayscale(50%);
  background-color: lightgray;
}
.pmt-edit-area--beta:hover,
.pmt-edit-area--beta:focus {
  opacity: 1;
  filter: blur(0px) grayscale(0%);
  background-color: inherit;
}
.pmt-edit-area__title {
  font-size: 0.77777778em;
  font-weight: 500;
  margin-bottom: 0;
}
.pmt-edit-area__data {
  margin-bottom: 0;
  overflow: auto;
}
.pmt-edit-area__data:empty:before {
  content: "\2014";
}
.pmt-edit-area__data--oneline {
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 376px) {
  .pmt-editor-row {
    display: flex;
  }
}
.pmt-editor-row__title {
  padding: 0.22222222em 1em;
  font-size: 0.9em;
  line-height: 2.22222222em;
  margin-bottom: 0;
  color: var(--color-main-navigation);
  text-transform: capitalize;
}
@media screen and (min-width: 376px) {
  .pmt-editor-row__title {
    color: #333333;
    flex: 0 0 20vw;
    min-width: 10rem;
    text-align: right;
    background-color: rgba(51, 51, 51, 0.08);
  }
}
.pmt-editor-row__no-text-transform {
  text-transform: none;
}
.pmt-editor-row__removed {
  text-decoration: line-through;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pmt-editor-row__data {
  margin-bottom: 0;
  padding: 0.2em 1em;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: pre-wrap;
}
@media screen and (min-width: 376px) {
  .pmt-editor-row__data {
    flex: 1 1 auto;
  }
}
.pmt-editor-row__data:empty:before {
  content: "\2014";
}
.pmt-editor-row__data--hug {
  padding: 0;
}
.pmt-editor-row pmt-ui-status-bar {
  flex-grow: 1;
}
.pmt-editor-row pmt-ui-status-bar .pmt-ui-status-bar {
  margin-bottom: 0;
}
.pmt-network-status {
  display: flex;
  flex-wrap: nowrap;
  color: #999;
}
.pmt-network-status--active {
  background-color: #5c5c5c;
  color: white;
}
.pmt-network-status--active:hover {
  background-color: #5c5c5c !important;
}
.pmt-network-status__diff-icon,
.pmt-network-status__item {
  font-size: 1.2rem;
  width: 1.5em;
  padding: 0 0.2em;
  flex: 0 0 auto;
  text-align: center;
  border-left: 1px solid transparent;
}
@media screen and (min-width: 376px) {
  .pmt-network-status__diff-icon,
  .pmt-network-status__item {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 960px) {
  .pmt-network-status__diff-icon,
  .pmt-network-status__item {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .pmt-network-status__diff-icon,
  .pmt-network-status__item {
    font-size: 2rem;
  }
}
.pmt-network-status__info-text {
  float: left;
  font-weight: bold;
}
.pmt-network-status__item {
  border-color: rgba(51, 51, 51, 0.08);
}
.pmt-network-status__item--pending-publish {
  background: #ebebeb;
}
.pmt-network-status__item--link {
  color: #999;
  cursor: pointer;
}
.pmt-network-status__item--link:hover {
  color: white;
}
.pmt-network-data {
  display: flex;
  flex-wrap: nowrap;
}
.pmt-network-data--has-diff {
  background-color: rgba(255, 229, 75, 0.5);
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC0AAAAtCAYAAAA6GuKaAAAABGdBTUEAALGPC/xhBQAAA/1JREFUWAnVmL9O6zAUh0mgTRC6gJBYGBmYeAJYYASJEV6B1+A1eAUYkWCEiY2RhYEXQEICCdG0QK6/3B7LmPy1XaqboW5T5/jzycnPvzja3t7+M6OOxcXF4eXl5TCKopzfrsfh4eHsYDBInp+fZ4mxsLDwtbS0NDg/P/9SP71i7+zspKPRqBcL3Ovra39/f7+f53kk51xaBfeZpmmmwD+5/u3tLX55eUnVZPRYLnG55ubmJuv1eqNI6CVQyIwDCzSxjYwXk5HxXNoiq3t7ewmZlgChwFVC5vr9fhIaXJfC/wSu64yHkAxLtsn87u5u4lvjqg4/hsNhRnkQm6zzoJ6cnOixZcy2rb4Q1bDBeVKPjo56ocFRlouLi9QVXJeHzBJAMgww59TTmq+urg7Pzs5GvnJIjauQyFYxLgpzcHAwUPDFXRCGpvYHNBcAfnx8PPfw8AB80Qepub6+znzBy3Sc8qGMmmDlf10ecoIWsNPT0w8yLOfJfEgdN2schRnfBRmuti3NtFxBxgG15fDq6orJeK1uZNzW8bYZL820QJc9nExAyaPWdOnbtWXlZHl3yXgtNCA14ElXULt/FXiTqtSWhzlITalkZj+H7xG+xCyVJlVpDQ1MDbhvjZeCr6+vZ9wNOxGN5WFeUFMqvu4wV3CFhV1ZWSkglVMsLC4PrGL4ltxO0EwAcKUemb3kB5BDwAtby4LGWKycZbb22wzo2OWYlsnygmaC0wD3hlbcEbptL0AhXt2q/Hg8LvQuVWH3/eEOJ2lrqfHC2/qCi6pgqmRGeJVJ2Fr8eMwT+vj4mIQAxwWa4E9PT/3Nzc1gflxUpZA8NJG0d3FaklGzJeOAr62tAZ9ja5eXl5NQb0DKdb6j47GLYTFB7e+A88KwsbGhl/fQtpbl09ki2sDm7wku+TNxldMKUSr2O2coW6t1egoZ1+Vj3qE237X3KMu4CsB2VrEn1yZYWR+RQ9ursJKW9W9zTkPT2XZaPP3sUYzB9V1pE9jsUwdO7Zt923z/Bq0u0E4LI04Ay2l1HkAgAOfd0s64izu0oYsxKBX2IwScVciwiM7gKngQW1sLwLva7e3tfOgNRDLj4w5roQle5bS4G/zvc7iCl5aHCVK2gTguFS9VYQzXGm+EJvgEwUttbZM7bAVdBW7IIV2cDpFD2x2yl1glh62hISLjW1tb76IqyKGyn/MhlnzbHd7f36dV7rATNOBsy5pyyALUdQOROPZBxnGHbTY9G9XDDi6/kcO7u7uUbHMOi9t2A1FilLWUhLk/Th8WJPOd0xmaYNMyWV7Q0wL3hv5tcFQmVk9+qgb2gv9NW8urW8yHAnf2tmSaQ2ytvHNatvZfJ4dP0XHTHf4FJ0siXrFbWN8AAAAASUVORK5CYII=);
  background-size: 15px 15px;
}
.pmt-network-data__icon {
  color: #333333;
  background-color: #fbfbfb;
  flex: 0 0 auto;
  text-align: right;
  position: relative;
  padding-left: 1rem;
  padding-right: 3rem;
}
@media screen and (min-width: 376px) {
  .pmt-network-data__icon {
    min-width: 9.8rem;
    flex: 0 0 calc(20vw - 0.2rem);
  }
}
.pmt-network-data__icon:before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  display: inline-block;
  text-align: center;
  line-height: 1;
  position: absolute;
  top: 50%;
  margin-top: -0.5em;
}
.pmt-network-data__icon pmt-icon {
  display: inline-block;
  text-align: center;
  line-height: 1;
  position: absolute;
  top: 50%;
  margin-top: -0.5em;
}
.pmt-network-data--facebook .pmt-network-data__icon {
  color: #fff;
  background-color: #336699;
}
.pmt-network-data--facebook .pmt-network-data__icon:before {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  content: "\f09a";
}
.pmt-network-data--facebook .pmt-network-data__icon:after {
  border-left-color: #336699;
}
.pmt-network-data--foursquare .pmt-network-data__icon {
  color: #fff;
  background-color: #ff3366;
}
.pmt-network-data--foursquare .pmt-network-data__icon:before {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  content: "\f180";
}
.pmt-network-data--foursquare .pmt-network-data__icon:after {
  border-left-color: #ff3366;
}
.pmt-network-data--google .pmt-network-data__icon {
  color: #fff;
  background-color: #4687f4;
}
.pmt-network-data--google .pmt-network-data__icon:before {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  content: "\f1a0";
}
.pmt-network-data--google .pmt-network-data__icon:after {
  border-left-color: #4687f4;
}
.pmt-network-data--bing .pmt-network-data__icon {
  color: #fff;
  background-color: #008373;
}
.pmt-network-data--bing .pmt-network-data__icon:after {
  border-left-color: #008373;
}
.pmt-network-data__icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  display: block;
  width: 0;
  height: 0;
  margin-top: -0.3em;
  border-top: 0.3em solid transparent;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid #ebebeb;
}
.pmt-network-data__value {
  padding: 0.2em 1em;
  align-self: center;
  text-overflow: ellipsis;
  overflow: hidden;
}
.pmt-network-data__value:empty:before {
  font-weight: 400;
  content: "\2014";
}
.pmt-network-data--has-diff .pmt-network-data__value {
  font-weight: 500;
}
.pmt-network-data__approve {
  padding: 0.25em 0.5em;
  flex-grow: 1;
  align-self: center;
  display: flex;
  justify-content: flex-end;
  font-size: 0.8em;
  white-space: nowrap;
}
.pmt-network-data__note {
  margin: 0;
  padding: 0.2em 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.pmt-network-data__note .pmt-btn {
  font-size: 0.7em;
}
.pmt-network-data__note .note .pmt-btn {
  font-size: 1em;
}
.pmt-diff-marker {
  text-align: center;
  position: relative;
}
.pmt-diff-marker__with-info-icon {
  font-size: 0.9em;
  vertical-align: text-top;
}
.pmt-diff-marker--warning {
  color: #f6891e;
}
.pmt-diff-marker__info-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 0.7em;
}
.pmt-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.pmt-actions__target {
  flex: 1 1 auto;
}
.pmt-actions__items {
  flex: 0 0 auto;
}
.pmt-actions--items-hover .pmt-actions__items {
  visibility: hidden;
}
.pmt-actions--items-hover:hover .pmt-actions__items {
  visibility: visible;
}
.pmt-time-span {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.pmt-time-span__title {
  flex: 0 1 auto;
  font-weight: 500;
  white-space: nowrap;
  background-color: #ebebeb;
  padding-left: 2rem;
  margin-right: 2.5rem;
}
.pmt-time-span__title:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: -2.5rem;
  width: 0;
  height: 0;
  border-top: 2.5rem solid transparent;
  border-bottom: 2.5rem solid transparent;
  border-left: 2.5rem solid #ebebeb;
}
.pmt-time-span__weekday {
  display: inline-block;
  min-width: 5em;
}
.pmt-time-span__span {
  flex: 0 0 8em;
  padding-left: 1rem;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.pmt-time-span__tag {
  position: relative;
  margin-left: 1rem;
  margin-right: 2rem;
  padding-left: 1.2em;
  flex: 3 0 5em;
}
.pmt-time-span__tag:after {
  color: #999;
  line-height: 1;
  left: 0;
  top: 50%;
  margin-top: -0.5em;
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  display: inline-block;
  content: "\f02b";
}
.pmt-time-span__actions {
  padding-right: 2rem;
}
.pmt-time-span__hours {
  max-width: 5em;
  padding-right: 1em;
}
.pmt-time-span__hours input {
  width: 100%;
  border-bottom: 2px solid red;
  line-height: 1.5;
}
.form-time-field {
  display: inline-block;
  white-space: nowrap;
  padding-left: 0.5em;
  padding-right: 1rem;
  background: #fff;
  border-bottom: 2px solid #333333;
  margin-right: 1em;
}
.form-time-field:before {
  color: #999;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  display: inline-block;
  content: "\f017";
  padding-right: 0.5rem;
}
.form-time-field__time {
  width: 5.5em;
  line-height: 2;
}
.pmt-data-table {
  font-size: 1.4rem;
}
.pmt-data-table tbody tr:nth-child(odd) {
  background-color: rgba(51, 51, 51, 0.04);
}
.pmt-data-table th {
  padding: 0.2em 0.5em;
  font-weight: 500;
  border: 0;
}
.pmt-data-table td {
  padding: 0.2em 0.5em;
  white-space: nowrap;
}
.pmt-data-table td.pmt-data-table__multiline-cell {
  white-space: normal;
}
.brandpage-selector__back {
  float: left;
}
.brandpage-selector__done {
  float: right;
}
.brandpage-selector__collection {
  position: relative;
  max-height: 300px;
  overflow: scroll;
}
.brandpage-selector__top-hit {
  border-bottom: 1px solid #999;
}
.posts-aside-flex {
  display: flex;
  align-items: flex-start;
}
.posts-aside-width {
  flex-grow: 1;
}
.posts-aside-card {
  margin-left: 20px;
  width: 423px;
  background-color: #f3f8fd;
  border-radius: 8px;
}
.posts-aside-card .container {
  padding: 24px;
}
.posts-aside-card .icon {
  display: inline-flex;
  width: 25px;
  height: 25px;
}
.posts-aside-card .title {
  font-weight: bold;
  color: var(--color-neutral-foreground-2);
  font-size: 18px;
}
.posts-aside-card .text {
  color: var(----color-neutral-foreground-2);
  margin-top: 8px;
}
.posts-aside-card .button {
  margin-top: 16px;
}
.posts-aside-card .link-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.posts-aside-card i {
  font-size: 20px;
  color: #3fa650;
  padding-left: 2px;
}
.pmt-task {
  display: flex;
  font-size: 1.4rem;
}
@media screen and (min-width: 641px) {
  .pmt-task {
    font-size: inherit;
  }
}
.pmt-task--disabled {
  background-color: #f7f8f9;
  cursor: inherit;
  color: #8c9ca3;
  border: 1px solid transparent;
  border-bottom-color: #ebebeb;
}
.pmt-task--warning .pmt-task__indicator:before {
  border-color: #ee3e23 transparent transparent #ee3e23;
}
.pmt-task--warning .pmt-task__indicator:after {
  color: white;
  content: "\f06a";
}
.pmt-task__indicator {
  position: relative;
  flex: 0 0 4.4rem;
}
@media screen and (min-width: 641px) {
  .pmt-task__indicator {
    flex: 0 0 6.4rem;
  }
}
.pmt-task__indicator:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-style: solid;
  border-width: 1.6rem;
  border-color: transparent;
}
.pmt-task__indicator:after {
  font-size: 1.2rem;
  line-height: 1.6;
  display: block;
  position: absolute;
  top: 0;
  left: 0.3em;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  text-align: center;
}
.pmt-task__icon {
  position: absolute;
  width: 100%;
  margin-top: 2rem;
  color: var(--color-main-navigation);
  font-size: 2rem;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 641px) {
  .pmt-task__icon {
    font-size: 3rem;
  }
}
.pmt-task__icon--disabled {
  color: #8c9ca3;
}
.pmt-task__content {
  flex: 12 20 30rem;
  padding: 1rem 0;
  padding-right: 1rem;
}
@media screen and (min-width: 641px) {
  .pmt-task__content {
    padding-right: 2rem;
  }
}
.pmt-task__asides {
  flex: 0 20 20rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.pmt-task__thumbnail {
  margin-left: auto;
  margin-right: auto;
}
.pmt-task__thumbnail__brand-page {
  margin: 2rem;
  text-align: center;
}
.pmt-task__thumbnail__brand-page span {
  margin-top: 0.8rem;
}
.pmt-task__title {
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 0;
}
.pmt-task__title--disabaled {
  color: #8c9ca3;
}
.pmt-task__view-btn {
  align-items: center;
  margin-top: 0.5rem;
  margin-bottom: 0.5em;
}
.pmt-task__duplicates-btn-asides {
  flex: 0 20 20rem;
  margin-right: 1em;
}
@media screen and (min-width: 641px) {
  .pmt-task__duplicates-btn-asides {
    flex: 0 10 50rem;
  }
}
.pmt-task__duplicates-view-btn {
  flex: 1 10 10rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 641px) {
  .pmt-task__duplicates-view-btn {
    float: left;
    width: 8em;
  }
}
.pmt-task__duplicates {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.pmt-task__duplicates-to-handle {
  align-items: center;
  font-size: 0.8em;
}
@media screen and (min-width: 641px) {
  .pmt-task__duplicates-to-handle {
    float: right;
    min-width: 16em;
    padding: 0.2em;
    margin-right: 2.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1em;
  }
}
.pmt-task__duplicates-handle-btn {
  line-height: 2.5;
  font-size: 1.2em;
  height: 7.3rem;
}
.pmt-task__duplicates-btn {
  line-height: 1.5;
  padding: 0.2em;
  width: 100%;
  text-transform: none;
  white-space: normal;
  font-size: 1em;
  text-align: center;
}
.pmt-task__duplicates-count {
  font-size: 1.5em;
  font-weight: 900;
  line-height: 1.5;
  padding-left: 0.5em;
}
.pmt-task__no-padding {
  padding: 0em 0em;
}
.pmt-google-task a:disabled:hover {
  background-color: #ebebeb !important;
  color: black !important;
}
.pmt-location-attribute--repeated-enum {
  background-color: white;
  border-radius: 1em;
  margin-bottom: 0.2em;
  padding: 0.5em 1em;
  border: 1px solid #efefef;
}
.pmt-location-attribute--repeated-enum button,
.pmt-location-attribute--repeated-enum select {
  text-transform: inherit;
  display: flex;
  box-sizing: inherit;
  min-width: 500px;
  margin-left: -1px;
  border-radius: 7em;
  background-color: #fff;
  border-color: white;
  padding: 2px;
}
.pmt-location-attribute--repeated-enum .pmt-location-attribute__group-title {
  color: #999;
  font-weight: 500;
}
.pmt-location-attribute__value {
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #efefef;
  border-radius: 1em;
  margin-bottom: 0.2em;
  padding: 1px;
  display: flex;
  align-items: stretch;
  user-select: none;
}
.pmt-location-attribute__value--inline {
  display: inline-flex;
  margin-right: 0.5em;
  padding-right: 1em;
}
.pmt-location-attribute__value--yes {
  border-color: transparent;
  color: white;
  background-color: #0e9045;
}
.pmt-location-attribute__value--no {
  border-color: transparent;
  color: white;
  background-color: #333333;
}
.pmt-location-attribute__icon {
  flex-shrink: 0;
  align-self: center;
  width: 2em;
  text-align: center;
  color: #999;
}
.pmt-location-attribute__value--yes .pmt-location-attribute__icon,
.pmt-location-attribute__value--no .pmt-location-attribute__icon {
  color: white;
}
.pmt-location-attribute__title {
  flex-shrink: 0;
}
.pmt-location-attribute__url {
  margin-left: 1em;
  flex-grow: 1;
  padding-left: 1em;
  padding-right: 1em;
}
input.pmt-location-attribute__url {
  min-width: 1em;
  border-top-right-radius: 0.8em;
  border-bottom-right-radius: 0.8em;
}
input.pmt-location-attribute__url::placeholder {
  color: var(--color-hover-grey);
}
.pmt-location__layout {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-xl);
  margin-right: -1rem;
}
.pmt-location__layout-main {
  flex: 1 1 auto;
  min-width: 0;
}
.pmt-location__layout-side-pane {
  flex: 0 0 350px;
  width: 350px;
  position: sticky;
  top: 75px;
}
@media screen and (min-width: 1600px) {
  .pmt-location__layout-side-pane {
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 12px;
    --spacing-lg: 16px;
    --spacing-xl: 24px;
  }
  .pmt-location__layout-side-pane .location-info-pane__icon--container {
    font-size: 40px;
    padding-left: 12px;
    padding-bottom: 8px;
  }
  .pmt-location__layout-side-pane .location-info-pane__rating-block {
    gap: 8px;
  }
  .pmt-location__layout-side-pane .location-info-pane-title__store-id-line {
    gap: 4px;
  }
  .pmt-location__layout-side-pane .location-info-pane-address__container {
    column-gap: 24px;
  }
  .pmt-location__layout-side-pane .location-info-pane-navigation__container {
    padding-top: 16px;
  }
}
.pmt-special-hours__header {
  border-bottom: 1px solid #ebebeb;
}
.pmt-special-hours__filters {
  margin-top: 1em;
}
.pmt-special-hours__footer {
  padding: 3rem 2rem 3rem 2rem;
  text-align: right;
}
.pmt-special-hours__actions .pmt-ui-selector-action__selected {
  margin-bottom: 1em;
}
.pmt-special-hours__list-item {
  padding: 0.5rem 0;
}
.pmt-special-hours__state-select {
  flex: 0 auto;
  display: flex;
  flex-wrap: nowrap;
}
.pmt-special-hours__state-select--with-hours {
  flex-basis: 20em;
}
.pmt-special-hours__hour-inputs {
  display: flex;
  margin-left: 1.7rem;
  align-items: center;
}
.pmt-special-hours__add-and-update {
  display: flex;
  flex-direction: column;
}
.pmt-special-hours__add-new {
  position: relative;
  margin-top: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ebebeb;
}
.pmt-special-hours__add-new:after {
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -1rem;
  content: "";
  display: block;
  margin-right: -1rem;
  width: 0;
  height: 0;
  border-bottom: 1rem solid #ebebeb;
  border-left: 1rem solid transparent;
  border-right: 1rem solid transparent;
}
.pmt-special-hours__add-new--locations {
  padding-left: 2rem;
}
.pmt-special-hours__add-new--with-update {
  margin-bottom: 1.5rem;
  margin-top: 0 !important;
}
.pmt-special-hours__section {
  background-color: #ebebeb;
}
.pmt-special-hours__section-title {
  font-weight: 500;
  font-size: 1.8rem;
  margin: 0;
}
.pmt-special-hours__location-selector {
  padding: 2rem 2rem 0 2rem;
}
.pmt-special-hours__regular-hours-warning {
  display: flex;
  justify-content: center;
}
.pmt-special-hours__regular-hours-warning h5 {
  padding: 4em 0em;
  margin: 0em 2em;
  color: #707070;
}
.how-to-guide__section img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}
.how-to-guide__steps {
  text-align: center;
  margin: 0;
  padding: 0;
}
.how-to-guide__bulk-edit-box {
  width: 32%;
  display: inline-block;
  min-width: 150px;
  margin: 1em 0;
  padding: 0;
}
.how-to-guide__bulk-edit-box p {
  float: left;
  text-align: center;
  width: 100%;
}
.how-to-guide__bulk-edit-box .fa-6x {
  font-size: 6em;
  height: 55px;
  color: var(--color-main-navigation);
}
.how-to-guide__bulk-edit-box img {
  height: 55px;
  width: 110px;
}
.how-to-guide__bulk-edit-box span {
  color: #b5b1ab;
}
.pmt-apiApp .pmt-grid {
  flex-flow: wrap;
}
.pmt-apiApp .pmt-grid::after {
  content: "";
  flex: 1 1 50%;
  min-width: 460px;
  margin: 0;
}
.pmt-apiApp .pmt-grid__item {
  flex: 1 1 50%;
  min-width: 460px;
  margin: 0;
}
.pmt-apiApp-credentials {
  position: relative;
  border-radius: 5px;
  background: #eee;
  padding: 1em;
  margin: 0 1rem 2em;
  min-width: 48rem;
}
.pmt-apiApp-credentials li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pmt-apiApp-credentials h2 {
  margin-top: 20px;
  font-size: 2.1rem;
  font-weight: bold;
  border-bottom: solid 1px #ddd;
  margin-bottom: 20px;
}
.pmt-apiApp-credentials i {
  font-size: 0.8rem;
}
.pmt-apiApp-credentials textarea {
  width: 100%;
  min-height: 100px;
  margin-bottom: 20px;
}
.pmt-apiApp-credentials .btn {
  font-size: 1.1rem;
  padding: 7px 25px;
  border: none;
}
.pmt-apiApp-credentials .btn-danger:hover {
  color: #fff;
}
.pmt-apiApp-credentials .pmt-apiApp-credentialsActions {
  margin-top: 2rem;
}
.pmt-apiApp-credentials .pmt-apiApp-saveFeedback {
  transition: height 0.2s ease-out;
  overflow: hidden;
  margin: 10px 0 0px;
  box-sizing: border-box;
  text-align: center;
  width: 100%;
  height: 0px;
  background: rgba(255, 255, 255, 0.4);
  line-height: 2rem;
}
.pmt-apiApp-credentials .pmt-apiApp-saveFeedback.pmt-apiApp-saveFeedback--show {
  height: 2rem;
}
.pmt-apiApp-confirmDelete {
  width: 300px;
  position: absolute;
  border-radius: 5px;
  margin: 20px 10px 20px;
  background: #fff;
  padding: 30px 20px 20px;
  bottom: 10px;
  left: 0;
  border: solid 1px #aaa;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 15px;
}
.pmt-apiApp-confirmDelete a {
  cursor: pointer;
}
.pmt-apiApp-confirmDelete p {
  margin-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  .pmt-apiApp-credentials {
    width: 98%;
    margin: 10px 1% 20px 1%;
  }
}
.search-accounts__search {
  margin-top: 2em;
}
.search-accounts__search input {
  padding: 0.25em 0;
}
.search-accounts .pmt-title-bar {
  margin-top: 2em;
}
.search-accounts .list {
  padding-bottom: 2em;
}
.search-accounts .list__item:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.pmt-legal {
  background-color: #ebebeb;
  height: auto;
  overflow: auto;
}
.pmt-legal__content {
  background-color: #fff;
  color: #333333;
  padding: 0.5em;
  padding-bottom: 1em;
}
@media screen and (min-width: 376px) {
  .pmt-legal__content {
    padding-left: 1em;
    padding-right: 1em;
  }
}
@media screen and (min-width: 641px) {
  .pmt-legal__content {
    padding-left: 2em;
    padding-right: 2em;
  }
}
.pmt-legal__content h1,
.pmt-legal__content h2,
.pmt-legal__content h3,
.pmt-legal__content h4,
.pmt-legal__content h5,
.pmt-legal__content h6 {
  margin-top: 1em;
}
.pmt-legal__content h1 {
  font-size: 2em;
  font-weight: bolder;
}
.pmt-legal__content h2 {
  font-size: 1.5em;
  font-weight: bolder;
}
.pmt-legal__content h3 {
  font-size: 1.17em;
  font-weight: bolder;
}
.pmt-legal__content table {
  width: 100%;
}
.pmt-legal__content table td,
.pmt-legal__content table th {
  padding: 0.5em;
  text-align: left;
}
.pmt-legal__content table tbody tr:nth-child(odd) {
  background-color: #ebebeb;
}
.pmt-legal__right {
  text-align: right;
}
.pmt-legal__accept {
  background-color: #ebebeb;
  padding: 2rem 3rem;
}
.pmt-legal__footer--right {
  text-align: right;
}
.pmt-network-indicators {
  display: flex;
  pointer-events: none;
}
.pmt-network-indicators--abs-top-left {
  position: absolute;
  content: "";
  z-index: 1;
  top: 2rem;
  right: 2rem;
}
.pmt-network-indicators__item {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-right: 1.5rem;
  width: 4.5rem;
  height: 4.5rem;
  font-size: 4.5rem;
  border-radius: 50%;
  pointer-events: auto;
}
.pmt-network-indicators__item--no-link {
  cursor: not-allowed;
}
.directories-name {
  display: inline-flex;
  align-items: center;
}
.directories-name-title {
  padding-left: 0.5em;
}
.directories-status-active i {
  color: #16c90e;
}
.directories-status-disconnected i {
  color: #ee3f23;
}
.directories-status-not-enabled i {
  color: #c2c2c2;
}
.directories-status i {
  margin-right: 0.5em;
  border: solid 0.1em white;
  border-radius: 1em;
}
.directories-detail-network-icon {
  display: flex;
  align-items: center;
  font-size: 2.5em;
  margin: 0.2em;
}
.directories-detail-body-container {
  padding: 10px 20px 20px 20px;
}
.directories-detail-header {
  font-weight: bold;
  padding-top: 10px;
}
.directories-detail-item-container {
  display: inline-flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
.directories-detail-item {
  display: flex;
  flex-direction: column;
  padding: 10px;
}
.directories-detail-body-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-left: 0.25em;
  margin-right: 0.25em;
}
.directory-detail-network-title {
  font-weight: bold;
}
@media screen and (min-width: 720px) {
  .directories-detail-network-description {
    max-width: 66%;
  }
}
.directories-detail-url {
  text-decoration: underline;
}
.list-table .pmt-ui-table__table-container {
  width: 100%;
  background-color: white;
}
.list-table .pmt-ui-table__table-container .pmt-icon--svg {
  font-size: 3em;
  display: inherit;
}
.pmt-ui-table__cell .pmt-tooltip--top .pmt-tooltip__tooltip {
  z-index: 3;
}
.list-table .pmt-icon {
  position: relative;
  width: auto;
  height: auto;
}
.list-table .pmt-icon svg {
  height: 0.6em;
  width: 0.6em;
}
.list-table pmt-ui-table__cell--a {
  padding: 0.5rem 1.2rem;
}
.list-table .pmt-ui-table__add-more {
  text-align: left;
  width: fit-content;
  position: sticky;
  left: 0;
  -webkit-position: sticky;
}
.duplicate__info {
  color: gray;
  font-size: 0.8em;
  margin-bottom: 2em;
}
.duplicate__info-icon {
  float: left;
}
.duplicate__sub {
  font-size: 0.8em;
  margin-top: 0.3em;
  color: gray;
}
.duplicates__list .pmt-ui-table__row {
  color: black;
}
.handleDuplicates__wrapper {
  overflow-x: hidden;
}
.handleDuplicates__table {
  border-radius: 8px;
  margin-top: 2em;
}
.handleDuplicates__table .cell-icon i {
  font-size: 1.5em;
}
.handleDuplicates__head {
  margin-right: 1em;
  font-weight: bold;
}
.handleDuplicates__cell {
  margin-right: 1em;
}
.handleDuplicates__location-distance {
  color: var(--color-main-navigation);
}
.handleDuplicates__location-distance .pmt-icon.pmt-icon svg {
  height: 2.5em;
  vertical-align: bottom;
}
.handleDuplicates__icon {
  text-align: center;
}
.handleDuplicates__pending {
  margin-right: 2em;
  margin-top: 2em;
}
.handleDuplicates__pending button {
  border-radius: 8px;
}
.handleDuplicates__failed {
  margin-right: 2em;
  margin-top: 2em;
  line-height: 2em;
  background-color: #ee3e23;
  padding: 0.2em 1em;
  color: white;
  border-radius: 8px;
}
.handleDuplicates__succeed {
  margin-right: 2em;
  margin-top: 2em;
  line-height: 2em;
  background-color: #cfe9da;
  padding: 1em;
  border-radius: 8px;
  border: 1px solid #0e9045;
}
.selected_location {
  border: 1px solid var(--color-main-navigation);
}
.possible__table {
  background-color: #cfe5f5;
  margin-bottom: 1em;
}
.cell-site-name {
  margin-right: 0.5em;
  font-weight: 600;
}
.cell-descriptor {
  font-weight: 600;
}
.nearby__table input[type=radio] {
  width: 1.8em;
  height: 1.8em;
  vertical-align: middle;
}
.nearby__table {
  background-color: #ebebeb;
}
@media screen and (min-width: 1025px) {
  pmt-elm[module="Tasks.Google.Duplicates.HandleDuplicates.Main"] > div {
    height: 95vh;
  }
  .duplicate__content {
    height: 100%;
  }
  .duplicate__info {
    height: 40em;
  }
  .duplicate__container {
    margin-left: 0.5em;
    margin-right: 0.5em;
    height: 100%;
    display: flex;
  }
  .duplicate__info-text {
    float: right;
    width: 95%;
  }
  .duplicate__map-view {
    width: 30vw;
    height: 30vw;
    margin-top: 1em;
    float: left;
  }
  .duplicate__list-view {
    float: right;
    margin-top: 1em;
    margin-left: 2em;
    flex-grow: 1;
  }
  .duplicate__btn-group {
    margin-top: 2em;
    text-align: right;
    margin-right: 2em;
    margin-bottom: 2em;
  }
  .duplicate__btn-group .btn__not-a-duplicate {
    margin-right: 1em;
  }
  .duplicate__btn-group button {
    padding-top: 1rem;
    padding-bottom: 1rem;
    width: 10em;
  }
  .handleDuplicates__table {
    margin-right: 2em;
    padding: 2rem;
  }
  .nearby__table td {
    padding-right: 2em;
  }
}
@media screen and (max-width: 1024px) {
  .duplicate__map-view {
    width: 100%;
  }
  .duplicate__map-view #map-box-view {
    width: 20vw;
    height: 50vw;
  }
  .duplicate__info {
    padding: 1rem;
  }
  .duplicate__info-icon {
    margin-right: 1em;
  }
  .duplicate__list-view {
    margin-top: 1em;
    padding: 1em;
  }
  .nearby__table td {
    padding-right: 0.5rem;
  }
}
.file-manager-upload-extra__optimize {
  padding: 2em 2em 0em 2em;
}
.pmt-table-list__caption {
  background-color: #fff;
}
.pmt-table-list__caption-header {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  flex-basis: 100%;
  flex-wrap: wrap;
  min-height: 3em;
}
.pmt-table-list__caption-header-part {
  padding: 0 0.5em;
}
.pmt-table-list__table {
  border-spacing: 0;
  width: 99%;
  table-layout: auto;
}
.pmt-table-list__header {
  background-color: #fff;
  text-align: left;
  font-weight: normal;
  white-space: nowrap;
  border-bottom: 1px solid #333333;
  padding: 0 0.3em 0 0.3em;
  cursor: pointer;
}
.pmt-table-list__body tr:nth-child(odd) {
  background-color: #ebebeb;
}
.pmt-table-list__body tr:hover {
  background-color: #d6d6d6;
}
.pmt-table-list__body tr td:nth-child(3) {
  max-width: 5em;
  width: 5%;
}
.pmt-table-list__body tr td:nth-child(4) {
  width: 5%;
  max-width: 4em;
}
.pmt-table-list__selected {
  background-color: #7acef3;
}
.pmt-table-list__row {
  background-color: #fff;
}
.pmt-table-list__cell {
  border-bottom: 1px solid #ebebeb;
  padding: 0 0.3em 0 0.3em;
  overflow: hidden;
}
.pmt-table-list__cell-warning {
  color: #f05139;
}
.pmt-table-list__cell-content {
  white-space: nowrap;
  text-overflow: ellipsis;
}
.pmt-location-top-info {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.pmt-location-top-info pmt-elm {
  width: 100%;
}
.pmt-location-top-info__nav {
  align-self: flex-end;
  width: 100%;
  background-color: #fff;
}
.pmt-location-top-info__nav-link-wrapper {
  display: inline-block;
}
.pmt-location-top-info__nav-link {
  color: #333333;
  font-size: 1.6rem;
  padding: 1rem 2rem;
  display: inline-block;
  border-bottom: 2px solid transparent;
}
.pmt-location-top-info__nav-link--active {
  font-weight: bold;
  border-color: #333333;
}
.pmt-location-top-info--disabled pmt-elm .pmt-title-bar {
  background-color: #333333;
}
.pmt-location-top-info .pmt-location-title-bar {
  display: flex;
  flex-direction: row;
}
.pmt-location-top-info .pmt-location-title-bar h6,
.pmt-location-top-info .pmt-location-title-bar p {
  margin: 0em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pmt-location-top-info .pmt-location-title-bar__item:first-child {
  padding: 0em 2em 0em 1em;
}
.pmt-location-top-info .pmt-location-title-bar__item:not(:first-child),
.pmt-location-top-info .pmt-location-title-bar__item--admin {
  padding: 0em 2em;
  overflow: hidden;
}
.pmt-location-top-info .pmt-location-title-bar__item--admin:last-child {
  border-left: solid 2px rgba(255, 38, 0, 0.3);
  border-right: solid 2px rgba(255, 38, 0, 0.3);
}
.pmt-location-top-info .pmt-location-title-bar__item--admin:nth-last-child(2) {
  border-left: solid 2px rgba(255, 38, 0, 0.3);
}
.pmt-location-top-info .pmt-location-new-title-bar {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 0.75em;
  line-height: 1.5em;
  letter-spacing: 0.009375em;
}
.pmt-location-top-info .pmt-location-new-title-bar p {
  display: inline;
  padding: 0em 1.75em;
}
.pmt-location-sub-view {
  display: flex;
  margin-top: 3rem;
}
.pmt-location-sub-view__left-col {
  display: flex;
}
.pmt-location-sub-view__right-col {
  flex: 1;
  resize: horizontal;
  overflow: auto;
}
.pmt-location-sub-view__nav,
.pmt-location-sub-view__left-col {
  width: 15rem;
  margin-right: 1rem;
}
.pmt-location-sub-view__nav {
  padding: 1rem 0.4rem;
  background-color: #fff;
  height: fit-content;
}
.pmt-location-sub-view__nav.is-sticky {
  margin-top: 1rem;
}
.pmt-location-sub-view__link {
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 1.6rem;
  padding: 1rem 2rem;
  max-width: 20rem;
  color: #333333;
  background-color: #fff;
  border: 1px solid transparent;
  margin-bottom: 0.4rem;
  transition: border-color 0.3s;
}
.pmt-location-sub-view__link--active {
  font-weight: bold;
  color: #fff;
  background: var(--color-main-navigation);
}
.pmt-location-sub-view__link:hover {
  transition: border-color 0.3s;
  border-color: #daedf8;
}
.pmt-location-sub-view__link-text {
  margin-left: 1rem;
}
@media screen and (max-width: 640px) {
  .pmt-location-sub-view__link {
    justify-content: center;
  }
  .pmt-location-sub-view__link-text {
    display: none;
  }
  .pmt-location-sub-view__nav,
  .pmt-location-sub-view__left-col {
    width: 5rem;
  }
}
.pmt-location-editor__header {
  color: white;
  background-color: #5c5c5c;
}
.pmt-location-editor__header-title {
  margin: 0 1rem;
  align-self: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.2rem;
}
@media screen and (min-width: 376px) {
  .pmt-location-editor__header-title {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 640px) {
  .pmt-location-editor__header-title {
    margin: 0 2rem;
  }
}
@media screen and (min-width: 960px) {
  .pmt-location-editor__header-title {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1024px) {
  .pmt-location-editor__header-title {
    font-size: 2.2rem;
  }
}
.pmt-location-editor__header-network-status {
  align-items: center;
}
.pmt-location-editor__footer {
  display: flex;
  justify-content: flex-end;
  background-color: #fff;
}
.pmt-location-editor__notes {
  flex-grow: 1;
}
.pmt-location-editor__actions {
  margin-left: 1em;
}
.pmt-location-editor__note {
  display: flex;
}
.pmt-location-editor__note:before {
  margin-right: 0.5em;
}
.pmt-location-editor__network-status {
  cursor: pointer;
}
.pmt-location-editor__network-status:hover {
  background-color: #ebebeb;
}
.pmt-location-editor__section-content {
  padding: 0.5rem 2rem;
  align-items: center;
  justify-content: center;
}
.pmt-location-editor__section-cta {
  align-self: flex-end;
}
.pmt-location-editor__data {
  display: flex;
  flex-direction: column;
}
.pmt-location-editor__data-footer {
  background-color: #ebebeb;
  padding: 0.2em 1em;
  flex-grow: 1;
  display: flex;
  align-items: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.pmt-location-editor__data-footer .pmt-btn {
  font-size: 0.7em;
}
.pmt-location-editor__data-footer .pmt-btn:first-child {
  margin-left: -1em;
}
.pmt-location-editor__data-footer .note .pmt-btn {
  font-size: 1em;
}
.pmt-location-editor__elm-location-selector {
  padding: 2rem 2rem 0 2rem;
}
.pmt-location-editor pmt-location-business-property-information {
  display: flex;
}
.pmt-api-images__card {
  margin-top: 0.15rem;
  margin-bottom: 3rem;
}
.pmt-api-documentation__header {
  margin-bottom: 2rem;
}
.pmt-api-documentation__section {
  margin-left: 1.6rem;
}
.pmt-api-documentation__container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 2rem;
  margin-bottom: 1.6em;
}
.pmt-api-documentation__card {
  margin-top: 0.15rem;
  margin-bottom: 3rem;
}
.pmt-api-documentation__card__content {
  max-width: 30rem;
  min-height: 11rem;
}
.pmt-conflict-dashboard {
  background-color: #fff;
  border-radius: 8px 8px 8px 8px;
}
.pmt-conflict-dashboard__conflicts-container {
  min-width: 350px;
  flex: 4;
}
.pmt-conflict-dashboard__cards-container-row {
  display: flex;
  flex-direction: row;
  gap: 2.4rem;
  margin-bottom: 2.4rem;
  flex-wrap: wrap-reverse;
}
.pmt-conflict-dashboard__cards-container-col {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  flex-basis: 35rem;
}
@media screen and (min-width: 1800px) {
  .pmt-conflict-dashboard__conflicts-col {
    max-width: 60em;
  }
}
.pmt-conflict-dashboard__conflicts-col {
  flex-grow: 3;
}
.pmt-conflict-dashboard__data-completeness-row {
  flex-grow: 1;
}
.pmt-conflict-dashboard__inner-ratings-1 {
  width: 65%;
  order: 1;
  display: flex;
  justify-content: space-between;
  padding: 1em;
  margin-top: 0.4em;
}
.pmt-conflict-dashboard__inner-ratings-2 {
  width: 30%;
  order: 2;
  display: grid;
  padding: 1em;
  margin-left: 1em;
}
@media (max-width: 1500px) {
  .pmt-conflict-dashboard__inner-ratings-1,
  .pmt-conflict-dashboard__inner-ratings-2 {
    width: 100%;
  }
}
.pmt-conflict-dashboard__data-completeness-container {
  max-width: 480px;
  min-width: 350px;
  flex: 1;
}
.pmt-conflict-dashboard__data-completeness-fields {
  color: var(--color-neutral-foreground-1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.2rem 1rem 0.2rem 1.2rem;
  border-radius: 0.5rem;
}
.pmt-conflict-dashboard__data-completeness-fields:hover {
  background-color: #daedf8;
  color: var(--color-main-navigation);
}
.pmt-conflict-dashboard__data-completeness-link-section {
  margin-top: 2em;
  margin-bottom: 2em;
}
.pmt-conflict-dashboard__data-completeness-donut-chart {
  margin-top: 1.6em;
}
.pmt-conflict-dashboard h2 {
  font-size: 1.8rem;
  font-weight: 500;
}
.pmt-conflict-dashboard__info {
  flex-grow: 1;
  flex-basis: 30%;
  display: flex;
  flex-direction: column;
}
.pmt-conflict-dashboard__empty-fields {
  display: none;
}
.pmt-conflict-dashboard__fields {
  flex-grow: 100;
}
.pmt-conflict-dashboard__justify-center {
  display: flex;
  justify-content: center;
}
.pmt-conflict-dashboard__justify-center--column {
  flex-direction: column;
}
.pmt-conflict-dashboard__additional-label {
  color: var(--color-neutral-foreground-1);
  margin-top: -2em;
  margin-left: 13em;
}
.pmt-conflict-dashboard__header {
  font-size: 2rem;
  line-height: 1.4;
  padding-bottom: 1rem;
  margin-bottom: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.005em;
  border-bottom: thin solid var(--color-neutral-border);
  display: flex;
  align-items: center;
}
.pmt-conflict-dashboard__total {
  flex-grow: 1;
}
.pmt-conflict-dashboard__total .pmt-conflict-status {
  font-size: 1.1em;
  line-height: 1.2;
}
.pmt-conflict-dashboard__total .pmt-conflict-status__title {
  padding: 0.5em 0;
  padding-right: 1em;
  width: auto;
  text-transform: none;
  white-space: normal;
  font-size: 1.2em;
}
.pmt-conflict-dashboard__total .pmt-conflict-status__count {
  font-size: 2.5em;
  line-height: 1.5;
  padding-left: 0.5em;
  padding-right: 0.2em;
}
.pmt-conflict-dashboard__congrats {
  color: var(--color-main-navigation);
}
.pmt-conflict-dashboard__congrats h3,
.pmt-conflict-dashboard__congrats p {
  margin: 0;
  line-height: 1.3;
}
.pmt-conflict-dashboard .grid {
  margin-left: -4rem;
}
.pmt-conflict-dashboard .grid__item {
  margin-left: 4rem;
}
.pmt-conflict-dashboard .note {
  display: flex;
}
.pmt-conflict-dashboard .note:before {
  margin-right: 0.5em;
}
.pmt-conflict-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-left: -2rem;
}
.pmt-conflict-summary__item {
  flex: 1 1 32rem;
  margin-left: 2rem;
  margin-bottom: 0.5rem;
}
.pmt-conflict-summary:after {
  content: " ";
  flex-basis: 50%;
}
@supports (display: grid) {
  .pmt-conflict-summary {
    margin-left: 0;
    display: grid;
    grid-gap: 0.5em 1em;
    grid-template-columns: repeat(auto-fit, minmax(max(26rem, calc(50% - 0.5em)), 1fr));
  }
  .pmt-conflict-summary:after {
    content: "";
    display: none;
  }
  .pmt-conflict-summary__item {
    display: block;
    margin-left: 0;
    margin-bottom: 0;
  }
}
.pmt-conflict-status {
  display: flex;
  align-items: center;
  min-width: 0;
  border-radius: 0.5rem;
  color: var(--color-neutral-foreground-1);
}
.pmt-conflict-status a {
  color: inherit;
}
.pmt-conflict-status--clean {
  color: #999;
  background-color: transparent;
}
.pmt-conflict-status--admin {
  background: rgba(255, 253, 253, 0.965);
  color: inherit;
  margin-bottom: 0.5em;
}
a.pmt-conflict-status,
.pmt-conflict-status__link {
  display: flex;
  align-items: center;
  flex-grow: 1;
  min-width: 0;
  color: inherit;
  border-radius: 0.5rem;
}
a.pmt-conflict-status:hover,
.pmt-conflict-status__link:hover {
  background-color: #daedf8;
  color: var(--color-main-navigation);
}
.pmt-conflict-status__title {
  margin: 0;
  padding: 0.2em;
  padding-left: 1em;
  flex-grow: 1;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pmt-conflict-status__count {
  margin: 0;
  padding: 0.2em;
  padding-right: 0.6em;
  text-align: right;
  margin-right: 0.2em;
}
.pmt-conflict-status--aside .pmt-conflict-status__count {
  margin-right: 2em;
}
.pmt-conflict-status--aside.pmt-conflict-status--with-aside .pmt-conflict-status__count {
  margin-right: 0;
}
.pmt-conflict-status__count .fa {
  font-size: 0.8em;
}
.pmt-conflict-status__aside {
  margin: 0;
  padding: 0.2em;
  display: flex;
  align-self: stretch;
}
.pmt-conflict-status__aside:hover .pmt-conflict-status__action {
  color: white;
  background: #daedf8;
}
.pmt-conflict-status__info,
.pmt-conflict-status__action {
  min-width: 1.6em;
  border-radius: 0.5rem;
  display: flex;
  align-self: stretch;
  justify-content: center;
  align-items: center;
  color: var(--color-neutral-foreground-1);
}
.pmt-conflict-status-container {
  display: flex;
}
.pmt-conflict-status-container__cleanup {
  align-items: center;
  width: 100%;
  margin: 0 1em 1em;
}
.pmt-conflict-status-container__cleanup--button {
  width: 100%;
  display: flex;
}
.pmt-conflict-status-container__cleanup--button .cleanup-deprecated-button-text {
  margin: 0 auto;
  font-size: 0.9em;
}
.pmt-conflict-status-container__cleanup--button .pmt-btn__label {
  width: 100%;
  display: flex;
}
.pmt-conflict-status-container__cleanup--button--aside {
  color: white;
}
.disabled-network-icon {
  color: #8c9ca3;
}
.pmt-conflict-resolver .container {
  padding: 1rem 2rem !important;
}
.pmt-conflict-resolver__title {
  display: flex;
  line-height: 1;
  padding: 0.5rem 0;
}
.pmt-conflict-resolver__title a {
  color: var(--color-main-navigation);
  text-decoration: underline;
}
.pmt-conflict-resolver__title div {
  margin-right: 5rem;
}
.pmt-conflict-resolver__field {
  border-bottom: 1px solid #e4e6ea;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: row;
  width: 100%;
}
.pmt-conflict-resolver__field:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.pmt-conflict-resolver__field--resolved .pmt-field-editor--network {
  visibility: hidden;
}
.pmt-conflict-resolver__error-container {
  padding-left: 1rem;
  padding-right: 1rem;
}
.pmt-conflict-resolver .pmt-grid {
  margin: 0;
  margin-top: 0.4rem;
  width: 100%;
}
.pmt-conflict-resolver .pmt-grid__item {
  margin-bottom: 1em;
  max-width: 100%;
}
.pmt-conflict-resolver .pmt-grid__item .pmt-field-editor {
  margin-bottom: 0 !important;
}
.pmt-conflict-resolver .note {
  display: flex;
}
.pmt-conflict-resolver .note:before {
  margin-right: 0.5em;
}
.pmt-conflict-resolver .leaflet-popup {
  font-size: 1.8rem;
}
.pmt-conflict-resolver .leaflet-popup .pmt-btn {
  line-height: 2;
  width: 100%;
  animation: none;
}
.pmt-conflict-resolver .leaflet-popup .pmt-btn:hover,
.pmt-conflict-resolver .leaflet-popup .pmt-btn:focus,
.pmt-conflict-resolver .leaflet-popup .pmt-btn:active {
  opacity: 0.9;
  animation: none;
  transform: none;
}
.pmt-conflict-resolver .leaflet-popup .leaflet-popup-close-button {
  display: none;
}
.pmt-conflict-resolver .leaflet-popup .leaflet-popup-tip-container {
  display: none;
}
.pmt-conflict-resolver .leaflet-popup .leaflet-popup-content-wrapper {
  background: transparent;
  box-shadow: none;
}
.pmt-conflict-resolver div.util__inset {
  max-height: 80vh;
  overflow-y: auto;
}
@media screen and (min-width: 1400px) {
  .pmt-conflict-resolver__field {
    flex-direction: column;
  }
  .pmt-conflict-resolver .pmt-grid {
    grid-template-columns: repeat(auto-fill, minmax(20vw, 1fr));
  }
  .pmt-conflict-resolver__leaflet-map {
    display: grid;
    min-height: 25vw;
    height: 94%;
    margin-bottom: 1em;
    border-radius: 1rem;
    background-color: #f2f2f2;
  }
}
@media screen and (max-width: 1400px) {
  .pmt-conflict-resolver__field {
    flex-direction: column;
  }
  .pmt-conflict-resolver__field .pmt-grid {
    margin-top: 1em;
  }
  .pmt-conflict-resolver__leaflet-map {
    width: 100%;
    height: 30vw;
  }
  .pmt-conflict-resolver .pmt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(29vw, 1fr));
    margin-top: 1em;
  }
  .pmt-conflict-resolver .pmt-grid__item {
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 1080px) {
  .pmt-conflict-resolver {
    padding: 0;
  }
  .pmt-conflict-resolver__leaflet-map {
    height: 40vw;
  }
  .pmt-conflict-resolver .pmt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(27vw, 1fr));
  }
  .pmt-conflict-resolver .pmt-grid__item {
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 740px) {
  .pmt-conflict-resolver .pmt-grid {
    display: flex;
    flex-direction: column;
  }
  .pmt-conflict-resolver .pmt-grid__item {
    max-height: 13em;
  }
  .pmt-conflict-resolver__img .pmt-grid {
    display: flex;
    flex-direction: column;
  }
  .pmt-conflict-resolver__img .pmt-grid__item {
    max-height: fit-content;
  }
}
@media screen and (max-width: 600px) {
  .container {
    padding: 0;
  }
}
.pmt-conflict-data {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin: 0;
  min-height: 1px;
}
.pmt-conflict-data__row {
  display: flex;
  margin: 1px;
  align-items: stretch;
}
.pmt-conflict-data__row::after {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  align-self: stretch;
  background-color: white;
  padding-top: 0.2em;
  min-width: 3rem;
  content: " ";
  display: flex;
}
.pmt-conflict-data__row--with-approved-diff .pmt-conflict-data__content,
.pmt-conflict-data__row--with-conflict .pmt-conflict-data__content {
  margin-top: 0;
  font-weight: bold;
}
.pmt-conflict-data--editable .pmt-conflict-data__row {
  cursor: pointer;
}
.pmt-conflict-data--editable .pmt-conflict-data__row:hover {
  background-color: #daedf8;
  color: var(--color-main-navigation);
}
.pmt-conflict-data--editable .pmt-conflict-data__row:hover::after,
.pmt-conflict-data--editable .pmt-conflict-data__row:hover .pmt-conflict-data__content {
  background-color: rgba(255, 255, 255, 0.8);
}
.pmt-conflict-data--editable .pmt-conflict-data__row::after {
  content: "\f303";
  color: #e4e6ea;
}
.pmt-conflict-data--network-data .pmt-conflict-data__row--with-conflict::after,
.pmt-conflict-data--network-data .pmt-conflict-data__row--with-conflict .pmt-conflict-data__actions,
.pmt-conflict-data--network-data .pmt-conflict-data__row--with-conflict .pmt-conflict-data__field,
.pmt-conflict-data--network-data .pmt-conflict-data__row--with-conflict .pmt-conflict-data__content {
  background-color: #fef2e6;
}
.pmt-conflict-data--network-data .pmt-conflict-data__row--with-conflict::after {
  content: "\f071";
  color: #f6891e;
}
.pmt-conflict-data--network-data .pmt-conflict-data__row--with-conflict.pmt-conflict-data__row--with-actions::after {
  display: none;
}
.pmt-conflict-data__field {
  margin-right: 1px;
  align-self: stretch;
  flex-basis: 0;
  min-width: 20rem;
  text-align: left;
  line-height: 1.2;
  padding-top: 0.7em;
  color: #333333;
  background-color: rgba(255, 255, 255, 0.4);
}
.pmt-conflict-data__field--day {
  min-width: 5rem;
}
.pmt-conflict-data__field--date {
  min-width: auto;
  white-space: nowrap;
}
.pmt-conflict-data__content {
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  background-color: white;
  flex: 1 1 auto;
}
.pmt-conflict-data__content--nowrap {
  word-wrap: normal;
}
.pmt-conflict-data__content--missing {
  background-color: var(--color-border-2);
}
.pmt-conflict-data__content:empty:before {
  content: "-";
}
.pmt-conflict-data__image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  margin: 1rem;
  border: 3px solid white;
  background: rgba(255, 255, 255, 0.3);
  min-height: 1px;
}
.pmt-conflict-data__image img {
  display: block;
  min-height: 1px;
  width: 100%;
}
.pmt-conflict-data__image-placeholder {
  min-height: 4em;
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.7);
}
.pmt-conflict-data--service-items__container {
  flex-wrap: nowrap;
}
.pmt-conflict-data--service-items__title {
  width: 100%;
}
.pmt-conflict-data--service-items__price {
  width: 100%;
}
.pmt-conflict-data--service-items__description {
  width: 100%;
  word-break: break-word;
}
.pmt-claim-match {
  border-radius: 0.5rem;
  margin-right: 2rem;
  margin-bottom: 2rem;
  width: 350px;
  border: 2px solid transparent;
}
.pmt-claim-match--master {
  background-color: #ccebfa;
}
.pmt-claim-match--network {
  background-color: #e4e6ea;
}
.pmt-claim-match--highlight {
  border-color: var(--color-main-navigation);
}
.pmt-claim-match__items {
  justify-content: flex-start;
  margin-left: unset;
}
.pmt-claim-match__row {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  padding: 2rem;
  border: 1px solid #e4e6ea;
  position: relative;
}
.pmt-claim-match__toggle-field-labels {
  position: absolute;
  content: "";
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 3rem;
}
.pmt-claim-match__header {
  display: flex;
  flex-direction: column;
  padding: 1rem 2rem;
}
.pmt-claim-match__title {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: 400;
}
.pmt-claim-match__matched-by {
  display: flex;
}
.pmt-claim-match__suffix {
  font-size: 1.4rem;
}
.pmt-claim-match__suffix strong {
  font-weight: 500;
}
.pmt-claim-match__suffix + .pmt-claim-match__suffix {
  margin-left: 2rem;
}
.pmt-claim-match__small-text {
  font-size: 1.4rem;
  color: #333333;
}
.pmt-claim-match__small-text strong {
  font-weight: 500;
}
.pmt-claim-match__footer {
  display: flex;
  padding: 1.4rem 1rem;
  flex-direction: column;
  align-items: center;
}
.pmt-claim-match__connect-btn {
  line-height: 2;
  width: 100%;
}
.pmt-claim-match__also-matches {
  padding: 1rem 2rem;
}
.pmt-claim-match__also-match {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.pmt-claim-match__back-btn {
  margin: 0 2rem 2rem;
}
.pmt-claim-field-compare {
  margin: 2px;
  display: flex;
}
.pmt-claim-field-compare__field {
  display: none;
  color: #333333;
  background-color: rgba(255, 255, 255, 0.4);
  min-width: 150px;
  padding: 0.7em;
  margin-right: 2px;
  flex-basis: 0;
  font-weight: 500;
  text-align: left;
}
.pmt-claim-field-compare__field--show {
  display: block;
}
.pmt-claim-field-compare__value {
  color: #333333;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 0.7em;
  flex-grow: 1;
  overflow: scroll;
  white-space: nowrap;
}
.pmt-claim-field-compare__value:empty {
  align-self: stretch;
}
.pmt-claim-field-compare__value:empty:before {
  content: "\200b";
}
.pmt-claim-validation__items--hide {
  display: none;
}
.pmt-claim-validation__item {
  display: block;
  width: 100%;
  border-radius: 0.5rem;
  margin-right: 2rem;
  margin-bottom: 2rem;
  border: 2px solid transparent;
  background-color: #e4e6ea;
}
.pmt-claim-validation__item:hover {
  background-color: #ccebfa;
}
.pmt-claim-validation__summary {
  background: #fff;
  padding: 1rem 0;
}
.pmt-claim-validation__summary--with-sticky {
  position: sticky;
  top: 0;
  box-shadow: inset 0 -1px 0 0 #ebebeb;
}
.pmt-claim-validation__summary-text {
  margin-right: 5px;
}
.pmt-claim-validation__header {
  display: flex;
  flex-direction: column;
  padding: 1rem 2rem;
}
.pmt-claim-validation__title {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: 400;
  color: #333333;
}
.pmt-claim-validation__suffix {
  font-size: 1.4rem;
  color: #333333;
}
.pmt-claim-validation__suffix strong {
  font-weight: 500;
}
.pmt-claim-validation__suffix + .pmt-claim-validation__suffix {
  margin-left: 2rem;
}
.pmt-claim-validation__small-text {
  font-size: 1.4rem;
  color: #333333;
}
.pmt-claim-validation__small-text strong {
  font-weight: 500;
}
.pmt-verify-location {
  border-radius: 8px 8px 8px 8px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2), 0px 2px 6px 4px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  margin-top: 0.5rem;
}
.pmt-verify-location__special-open-hours-import-notice {
  background-color: #f0f0f0;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.pmt-verify-location pmt-spinner > div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pmt-verify-location .pmt-verify-location__status svg {
  width: 40px;
  height: 40px;
}
.pmt-verify-location__publish-button {
  width: 100%;
  line-height: 3;
  margin-bottom: 1em;
}
.pmt-verify-location__header {
  font-size: 2rem;
  line-height: 1.4;
  padding-bottom: 1rem;
  margin-bottom: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.005em;
  border-bottom: thin solid var(--color-neutral-border);
}
.pmt-verify-location-resolver {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pmt-verify-location-resolver__content--address-map > pmt-map-v2 {
  height: 77%;
}
.pmt-verify-location-resolver .util__inset {
  overflow-y: auto;
  max-height: 80vh;
}
.pmt-verify-location-resolver__content {
  background-color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-bottom: -1em;
}
.pmt-verify-location-resolver__content div.util__inset {
  box-shadow: none;
  border-radius: 0;
  margin-top: 0;
  background-color: white;
  padding-top: 0;
  padding-right: 0;
  overflow: visible;
}
.pmt-verify-location-resolver__content div.util__inset pmt-card {
  background-color: transparent;
}
.pmt-verify-location-resolver__content .pmt-verify-location-resolver__content--address-map__street-view {
  margin-top: 0;
  margin-left: 0;
  min-height: 35vh;
  max-height: 35vw;
  width: 100%;
}
.pmt-verify-location-resolver__conflicts {
  flex-grow: 1;
}
.pmt-verify-location-resolver__cs-maps {
  margin-top: 20px;
}
.pmt-verify-location-resolver__cs-maps div.util__inset {
  box-shadow: none;
  border-radius: 0;
  margin-top: 0;
  background-color: white;
  padding-top: 0;
  padding-right: 0;
  overflow: visible;
}
.pmt-verify-location-resolver__cs-maps div.util__inset pmt-card {
  background-color: transparent;
}
.pmt-verify-location-resolver__cs-maps iframe {
  border: none;
  margin-bottom: 1rem;
}
.pmt-verify-location-resolver__map-box {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  margin-bottom: 1rem;
  width: 60rem;
}
.pmt-verify-location-resolver .pmt-title-bar {
  background-color: var(--color-main-navigation);
}
.pmt-verify-location-resolver .pmt-grid {
  flex-wrap: nowrap !important;
  margin-bottom: 1em;
}
.pmt-verify-location-resolver .pmt-grid__item {
  flex: 1 1 !important;
  max-width: 100%;
}
.pmt-verify-location-resolver .pmt-grid__item .pmt-field-editor {
  margin-bottom: 0 !important;
}
.pmt-verify-location-resolver__note {
  background-color: #fff;
  padding-bottom: 1rem;
}
.pmt-verify-location-resolver__note .note {
  margin-left: 1em;
  margin-top: -1em;
}
.pmt-verify-location-resolver__note .note:before {
  margin-right: 0.5em;
}
.pmt-verify-location-resolver__title {
  display: flex;
  line-height: 1;
  padding: 0.5rem 0;
}
.pmt-verify-location-resolver__title a {
  color: var(--color-main-navigation);
  text-decoration: underline;
}
.pmt-verify-location-resolver__title div:first-of-type {
  padding-right: 5rem;
}
@media screen and (min-width: 1921px) {
  .pmt-verify-location-resolver__content--address-map {
    min-height: 60vh;
    min-width: 40vw;
    max-width: 60vw;
    display: flex;
    flex-direction: row;
  }
  .pmt-verify-location-resolver__content .pmt-grid__item {
    max-width: 47%;
    margin-left: auto;
    margin-right: auto;
  }
  .pmt-verify-location-resolver__cs-maps {
    margin-top: 0;
    min-width: 20vw;
  }
}
@media screen and (max-width: 1920px) {
  .pmt-verify-location-resolver__content {
    display: flex;
    flex-direction: row;
  }
  .pmt-verify-location-resolver__content--address-map {
    min-height: 15vh;
    max-height: 20vw;
    min-width: 35vw;
    max-width: 35vw;
  }
  .pmt-verify-location-resolver .section {
    margin-bottom: 1em;
  }
  .pmt-verify-location-resolver .pmt-grid {
    flex-wrap: wrap !important;
  }
  .pmt-verify-location-resolver .pmt-grid__item {
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 600px) {
  .pmt-verify-location-resolver {
    padding: 0;
  }
  .pmt-verify-location-resolver__content--address-map {
    height: 40vw;
    margin-right: 1rem;
    margin-left: 1rem;
  }
  .pmt-verify-location-resolver .pmt-grid__item {
    margin-bottom: 1em;
  }
}
.pmt-verify-location-done__message {
  margin: 20px;
  color: #00d749;
  text-align: center;
}
.pmt-api-changes pmt-spinner > div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pmt-api-changes .pmt-api-changes__status svg {
  width: 40px;
  height: 40px;
}
.pmt-api-changes-resolver {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pmt-api-changes-resolver__content {
  background-color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-bottom: -1em;
}
.pmt-api-changes-resolver__content div.util__inset {
  box-shadow: none;
  border-radius: 0;
  margin-top: 0;
  background-color: white;
  padding-top: 0;
  padding-right: 0;
  overflow: hidden;
}
.pmt-api-changes-resolver__content div.util__inset pmt-card {
  background-color: transparent;
}
.pmt-api-changes-resolver__content .pmt-api-changes-resolver__content--map {
  margin-left: 0;
  margin-top: 0;
}
.pmt-api-changes-resolver__content .pmt-api-changes-resolver__content--map pmt-map-v2 {
  height: 77%;
}
.pmt-api-changes-resolver .section {
  margin-bottom: 0;
}
.pmt-api-changes-resolver .util__inset {
  width: 100%;
  overflow-y: auto;
  max-height: 80vh;
}
.pmt-api-changes-resolver .pmt-title-bar {
  background-color: var(--color-main-navigation);
}
.pmt-api-changes-resolver .pmt-grid {
  flex-wrap: nowrap !important;
}
.pmt-api-changes-resolver .pmt-grid__item {
  flex: 1 1 !important;
  max-width: 100%;
}
.pmt-api-changes-resolver .pmt-grid__item .pmt-field-editor {
  margin-bottom: 0 !important;
}
.pmt-api-changes-resolver__title {
  display: flex;
  line-height: 1;
  padding: 0.5rem 0;
}
.pmt-api-changes-resolver__title a {
  color: var(--color-main-navigation);
  text-decoration: underline;
}
.pmt-api-changes-resolver__title div:first-of-type {
  padding-right: 5rem;
}
.pmt-api-changes-resolver__note {
  background-color: #fff;
  padding-bottom: 1rem;
}
.pmt-api-changes-resolver__note .note {
  display: flex;
  margin-left: 1em;
}
.pmt-api-changes-resolver__note .note:before {
  margin-right: 0.5em;
}
@media screen and (min-width: 1320px) {
  .pmt-api-changes-resolver .pmt-grid {
    margin-bottom: 1em;
  }
  .pmt-api-changes-resolver .pmt-grid__item {
    min-height: 25vw;
  }
  .pmt-api-changes-resolver__content--map {
    min-height: 25vw;
    max-height: 25vw;
    min-width: 35vw;
    max-width: 35vw;
    margin-top: 1em;
    margin-left: 1em;
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 1320px) {
  .pmt-api-changes-resolver__content {
    display: flex;
    flex-direction: column;
  }
  .pmt-api-changes-resolver__content--map {
    margin: 1em 1em 0;
    width: 96%;
    height: 30vw;
  }
  .pmt-api-changes-resolver .section {
    margin-bottom: 1em;
  }
  .pmt-api-changes-resolver .pmt-grid {
    flex-wrap: wrap !important;
  }
  .pmt-api-changes-resolver .pmt-grid__item {
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 600px) {
  .pmt-api-changes-resolver {
    padding: 0;
  }
  .pmt-api-changes-resolver__content--map {
    height: 40vw;
    width: 96%;
    margin-right: 1rem;
    margin-left: 1rem;
  }
  .pmt-api-changes-resolver .pmt-grid__item {
    margin-bottom: 1em;
  }
}
.pmt-api-changes-done {
  background-color: #e6e8ec;
}
.pmt-api-changes-done__message {
  margin: 20px;
  color: #999;
  text-align: center;
}
.user-settings-profile__basic-information {
  display: flex;
  background: white;
  padding: 2rem;
}
@media screen and (max-width: 480px) {
  .user-settings-profile__basic-information {
    flex-direction: column;
  }
}
.user-settings-profile__basic-information .form-fields {
  display: flex;
  flex-direction: column;
  flex: auto;
}
.user-settings-profile__basic-information .form-fields button {
  margin-left: auto;
}
.user-settings-profile__basic-information .form-fields button,
.user-settings-profile__basic-information .form-fields .input-field {
  margin-top: 2rem;
}
.user-settings-profile__picture {
  flex-basis: 40%;
}
.user-settings-profile__picture .picture-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.user-settings-profile__picture .default-user-icon {
  color: #d6d6d6;
  font-size: 60px;
  margin: 50px 0 25px 0;
}
.user-settings-profile__picture .profile_image {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  margin: 50px 0 25px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.user-settings-profile__picture .overlay {
  width: 120px;
  height: 120px;
  margin: 50px 0 25px 0;
  background: #999;
  opacity: 0.5;
  position: relative;
}
.user-settings-profile__picture .overlay .spinner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.user-settings-notifications .util__inset {
  padding: 1em 1em;
}
@media screen and (min-width: 800px) {
  .user-settings-notifications .util__inset {
    padding: 1em 2.75em;
  }
}
.user-settings-notifications .info {
  max-width: 48em;
  border: none;
  box-shadow: none;
}
.user-settings-notifications--form {
  border-top: 0.3em solid whitesmoke;
}
.user-settings-notifications table {
  border-collapse: collapse;
}
.user-settings-notifications table thead {
  border-bottom: 0.5em solid transparent;
}
.user-settings-notifications table thead td {
  padding: 0 0.5em;
}
.user-settings-notifications table thead td:first-child {
  padding-left: 0;
}
.user-settings-notifications table tbody {
  border-bottom: 0.5em solid transparent;
}
.user-settings-notifications__actions {
  text-align: right;
  margin: 2em 0;
  display: flex;
  justify-content: right;
}
.user-settings-notifications__actions pmt-spinner {
  font-size: inherit;
  margin: 0 auto;
}
.user-settings-notifications .section__title {
  text-align: left;
}
.user-settings-notifications .section__icon {
  margin-right: 0.5em;
  width: 1em;
  display: inline-block;
}
.user-settings-notifications .event__name {
  font-weight: normal;
  text-align: left;
  padding-left: 0.5em;
}
.user-settings-notifications .event__checkbox {
  text-align: center;
}
.pmt-settings__notifications--title {
  padding: 1.5em 2.75em 0;
  color: #424242;
  font-size: 16px;
  font-family: Roboto;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.15px;
  word-wrap: break-word;
}
@media screen and (min-width: 800px) {
  .pmt-settings__notifications--title {
    padding: 1.5em 2.75em 0;
  }
}
.pmt-settings__notifications--save-btn {
  text-align: left;
  margin: 0.5em 0 0;
  display: flex;
  justify-content: left;
  width: 100%;
}
.pmt-settings__notifications--save-btn pmt-spinner {
  font-size: inherit;
  margin: 0 auto;
}
.pmt-settings__notifications--event {
  font-weight: normal;
  text-align: left;
  padding: 0 1.5em 0 0.8em;
  color: #424242;
  font-size: 16px;
  font-family: Roboto;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.15px;
  word-wrap: break-word;
}
.pmt-settings__notifications--note {
  color: #616161;
  font-size: 12px;
  font-family: Roboto;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.4px;
  word-wrap: break-word;
  margin-top: 1em;
  display: block;
}
.pmt-settings__notifications--form {
  padding: 0.75em 2.75em;
}
@media screen and (min-width: 800px) {
  .pmt-settings__notifications--form {
    padding: 0.75em 2.75em;
  }
}
.email-subscription-settings__section {
  margin-bottom: 1rem;
}
.duplicates__notes {
  padding: 0.5rem 2.5rem;
}
.duplicates__list {
  font-size: 1em;
  color: gray;
}
.duplicates__list .pmt-ui-table__table-container {
  width: 100%;
}
.duplicates__to-external {
  color: var(--color-main-navigation);
  text-decoration: none;
}
.duplicates__external-link-icon {
  margin-right: 1rem;
}
.duplicates__undo-icon {
  margin-right: 1rem;
}
.duplicates__to-undo {
  color: #ff2600;
  font-weight: 500;
}
.pmt-data-completeness-dashboard__field-list {
  padding-left: 2rem;
}
.pmt-data-completeness-dashboard__field-list__page {
  padding-left: 0;
  max-width: 30rem;
  justify-self: anchor-center;
}
.pmt-data-completeness-dashboard__collapse-completed-btn {
  display: flex;
  justify-content: center;
  margin-top: 0.8rem;
}
.pmt-data-completeness-dashboard__chart-list-spacer {
  height: 1.6rem;
}
.pmt-ui-font-document h1 {
  font-size: 2.4rem;
  line-height: 1.33333333;
  margin: 0;
  font-weight: 400;
}
.pmt-ui-font-document h2 {
  font-size: 2.2rem;
  line-height: 1.27272727;
  margin: 0;
  font-weight: 400;
}
.pmt-ui-font-document h3 {
  font-size: 2rem;
  line-height: 1.4;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.005em;
}
.pmt-ui-font-document h4 {
  font-size: 2rem;
  line-height: 1.4;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.005em;
}
.pmt-ui-font-document h5 {
  font-size: 2rem;
  line-height: 1.4;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.005em;
}
.pmt-ui-font-document h6 {
  font-size: 2rem;
  line-height: 1.4;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.005em;
}
.pmt-ui-font-document h1,
.pmt-ui-font-document h2,
.pmt-ui-font-document h3,
.pmt-ui-font-document h4,
.pmt-ui-font-document h5,
.pmt-ui-font-document h6,
.pmt-ui-font-document p {
  margin: 0.4rem 0;
  text-wrap: pretty;
}
.pmt-ui-font-document p + h1,
.pmt-ui-font-document p + h2,
.pmt-ui-font-document p + h3,
.pmt-ui-font-document p + h4,
.pmt-ui-font-document p + h5,
.pmt-ui-font-document p + h6 {
  padding-top: 0;
  margin-top: 1.2rem;
}
.pmt-ui-font-document .pmt-ui-font-h1 {
  font-size: 5.7rem;
  line-height: 1.12280702;
  margin: 0;
  font-weight: 400;
}
.pmt-ui-font-document .pmt-ui-font-h2 {
  font-size: 4.5rem;
  line-height: 1.15555556;
  margin: 0;
  font-weight: 400;
}
.pmt-ui-font-document .pmt-ui-font-h3 {
  font-size: 3.6rem;
  line-height: 1.22222222;
  margin: 0;
  font-weight: 400;
}
.pmt-ui-font-document .pmt-ui-font-h4 {
  font-size: 3.2rem;
  line-height: 1.25;
  margin: 0;
  font-weight: 400;
}
.pmt-ui-font-document .pmt-ui-font-h5 {
  font-size: 2.8rem;
  line-height: 1.28571429;
  margin: 0;
  font-weight: 400;
}
.pmt-ui-font-document .pmt-ui-font-h6 {
  font-size: 2.4rem;
  line-height: 1.33333333;
  margin: 0;
  font-weight: 400;
}
.pmt-ui-font-document .pmt-ui-font-headline {
  font-size: 2.2rem;
  line-height: 1.27272727;
  margin: 0;
  font-weight: 400;
}
.pmt-ui-font-document .pmt-ui-font-headline-1 {
  font-size: 2.2rem;
  line-height: 1.27272727;
  margin: 0;
  font-weight: 500;
}
.pmt-ui-font-document .pmt-ui-font-sub-headline {
  font-size: 2rem;
  line-height: 1.4;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.005em;
}
.pmt-ui-font-document .pmt-ui-font-navigation {
  font-size: 1.8rem;
  line-height: 1.33333333;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.00555556em;
}
.pmt-ui-font-document .pmt-ui-font-body {
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.009375em;
}
.pmt-ui-font-document .pmt-ui-font-body-1 {
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.009375em;
}
.pmt-ui-font-document .pmt-ui-font-note-1 {
  font-size: 1.4rem;
  line-height: 1.42857143;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.00714286em;
}
.pmt-ui-font-document .pmt-ui-font-note {
  font-size: 1.4rem;
  line-height: 1.42857143;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.01785714em;
}
.pmt-ui-font-document .pmt-ui-font-caption-1 {
  font-size: 1.2rem;
  line-height: 1.33333333;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.04166667em;
}
.pmt-ui-font-document .pmt-ui-font-caption {
  font-size: 1.2rem;
  line-height: 1.33333333;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.03333333em;
}
.pmt-ui-header-1 {
  font-size: 5.7rem;
  line-height: 1.12280702;
  margin: 0;
  font-weight: 400;
}
.pmt-ui-header-2,
.ui-insights-header__number-dashboard {
  font-size: 4.5rem;
  line-height: 1.15555556;
  margin: 0;
  font-weight: 400;
}
.pmt-ui-header-3,
.pmt-insights__highlight--value,
.pmt-insights__highlight--empty-state-icon,
.ui-insights-header__number,
.ui-insights-header__star-rating__value {
  font-size: 3.6rem;
  line-height: 1.22222222;
  margin: 0;
  font-weight: 400;
}
.pmt-ui-header-4 {
  font-size: 3.2rem;
  line-height: 1.25;
  margin: 0;
  font-weight: 400;
}
.pmt-ui-header-5 {
  font-size: 2.8rem;
  line-height: 1.28571429;
  margin: 0;
  font-weight: 400;
}
.pmt-ui-header-6 {
  font-size: 2.4rem;
  line-height: 1.33333333;
  margin: 0;
  font-weight: 400;
}
.pmt-ui-font-headline,
.lightbox__headline,
.pmt-insights__top-listings-title {
  font-size: 2.2rem;
  line-height: 1.27272727;
  margin: 0;
  font-weight: 400;
}
.pmt-ui-font-headline-1 {
  font-size: 2.2rem;
  line-height: 1.27272727;
  margin: 0;
  font-weight: 500;
}
.pmt-ui-font-sub-headline,
.lightbox__sub-headline,
.pmt-title-and-feedback,
.ui-insights-header__header,
.pmt-dashboard__todos-title,
.pmt-dashboard__card__total,
.pmt-locator-landing-page__content--subtitle,
.pmt-locator-landing-page__content--note,
.pmt-locator-landing-page__confirmation-popup--title,
.pmt-locator-landing-page .locator-lp-card .box h1,
.pmt-locator-landing-page .locator-lp-introduction h1,
.pmt-local-campaign-landing-page__content-subtitle,
.pmt-local-campaign-landing-page__content-note,
.pmt-local-campaign-landing-page__confirmation-popup-title,
.pmt-local-campaign-landing-page__card-item h1,
.pmt-local-campaign-landing-page__introduction-item h1 {
  font-size: 2rem;
  line-height: 1.4;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.005em;
}
.pmt-ui-font-navigation-0 {
  font-size: 1.8rem;
  line-height: 1.33333333;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.00555556em;
}
.pmt-ui-font-navigation,
.lightbox__custom-field-checkbox-label,
.location-details-label__title {
  font-size: 1.8rem;
  line-height: 1.33333333;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.00555556em;
}
.pmt-ui-font-body,
.location-details-row__value,
.location-details-row__inner-value,
.location-details-row__table table tr th,
.location-details-row__table table tr td,
.pmt-field-editor__title,
.lightbox__headline-description,
.lightbox__sub-headline-description,
.pmt-log-card-view__top-inner-container__logo-box__logo-text,
.outer-card-container,
.pmt-dashboard__todos-tasks,
.pmt-dashboard__todo__desc,
.pmt-dashboard__card__link,
.pmt-locator-landing-page .locator-lp-card .box p,
.pmt-locator-landing-page .locator-lp-introduction p,
.pmt-local-campaign-landing-page__card-item p,
.pmt-local-campaign-landing-page__introduction-item p {
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.009375em;
}
.pmt-ui-font-body-1 {
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.009375em;
}
.pmt-ui-font-note-1,
.media-approval__title {
  font-size: 1.4rem;
  line-height: 1.42857143;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.00714286em;
}
.pmt-ui-font-note,
.lightbox__input-label,
.lightbox__google-services-selection-row,
.lightbox__google-services-dropdown-title,
.lightbox__google-services-price-title,
.lightbox__google-services-description-title,
.pmt-apple-insights-top-list,
.pmt-insights__top-list-description,
.pmt-insights__highlight--note,
.pmt-insights__review--comment,
.pmt-insights__review--date-container,
.pmt-insights__review--network,
.pmt-insights__performance-item--rank,
.pmt-insights__performance-item--location__identifier,
.pmt-insights__performance-item--location__metrics--rating,
.ui-insights-header__note,
.ui-media-card__customer-owner-description,
.location-details-label__description,
.network-claim-page--suggested-matches__match-container,
.google-suggested-matches__match-container,
.image-info-preview__info__title-col,
.image-info-preview__info__value-col,
.add-assets__asset-title,
.add-assets__asset-metadata,
.pmt-locator-landing-page__confirmation-popup--content,
.pmt-local-campaign-landing-page__confirmation-popup-content,
.posts-note span {
  font-size: 1.4rem;
  line-height: 1.42857143;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.01785714em;
}
.pmt-ui-font-caption-1,
.pmt-field-editor .pmt-field-editor-data__field,
.ui-insights-header__lifetime-number--value,
.location-details-label__new-release-indicator,
.networks-log__table--td-address-text {
  font-size: 1.2rem;
  line-height: 1.33333333;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.04166667em;
}
.pmt-ui-font-caption,
.pmt-task__thumbnail__brand-page span,
.pmt-google-attributes-suggestions__attribute-group__title,
.pmt-insights__performance-item--location__metrics--review,
.ui-insights-header__lifetime-number,
.pmt-log-card-view__content-box,
.pmt-log-card-view__content-box .pmt-ui-status-bar--error,
.inner-card-container .location-details-row__value location-details-row__table,
.full-data-container,
.networks-log__table table tr th,
.networks-log__table table tr td,
.pmt-locator-landing-page .locator-lp-cta-note,
.pmt-local-campaign-landing-page__cta-note {
  font-size: 1.2rem;
  line-height: 1.33333333;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.03333333em;
}
table th,
table td {
  padding: 0;
}
.history-link-icon {
  line-height: inherit;
  margin-right: 0.5em;
}
.location-details-row {
  display: flex;
  align-items: start;
  gap: 2.4rem;
}
.location-details-row__value,
.location-details-row__table,
.location-details-row__table table,
.location-details-row__coordinates,
.location-details-row__profile_image,
.location-details-row__cover_image {
  width: 100%;
}
.location-details-row__label {
  width: 25em;
  display: block;
  align-items: flex-start;
  margin-top: 0.3rem;
  margin-left: 2.4rem;
}
.location-details-row__label-conflicts-container {
  display: flex;
  align-items: baseline;
}
.location-details-row__indented p {
  margin-left: 2em;
}
.location-details-row__value {
  color: var(--color-neutral-foreground);
  align-items: baseline;
  max-width: 45em;
  text-align: justify;
  word-break: break-word;
  margin-right: -0.03rem;
  padding-top: 0.2rem;
}
.location-details-row__value__max_content {
  width: max-content;
}
.location-details-row__value__text {
  margin: 0;
}
.location-details-row__value__not-set {
  color: var(--color-listings-orange-text);
}
.location-details-row__inner-value {
  color: var(--color-neutral-foreground);
  align-items: baseline;
  text-align: justify;
  word-break: break-word;
}
.location-details-row__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.6em 1em 0em 0em;
}
.location-details-row__icon--conflict {
  color: var(--color-listings-orange-text);
}
.location-details-row__icon--work {
  color: var(--color-neutral-foreground-2);
}
.location-details-row__table table {
  margin-top: 0.25em;
  width: 17em;
  border-collapse: collapse;
  table-layout: fixed;
}
.location-details-row__table table tr:first-child {
  margin-bottom: 0.5em;
}
.location-details-row__table table tr {
  border-bottom: 1pt solid var(--color-neutral-border);
}
.location-details-row__table table tr th {
  color: var(--color-neutral-foreground);
  padding: 0;
}
.location-details-row__table table tr td:first-child {
  color: var(--color-neutral-foreground-2);
}
.location-details-row__table table tr td {
  color: var(--color-neutral-foreground);
  padding: 0.2em;
}
.location-details-row__table table tr:last-child {
  border-bottom: none;
}
.location-details-row__table--td-center {
  text-align: center;
}
.location-details-row__table--td-special-hour-date {
  vertical-align: top;
  display: flex;
  flex-direction: column;
}
.location-details-row__table--tr-special-hour-label {
  border-bottom: none !important;
}
.location-details-row__table--td-special-hour-label {
  text-align: left;
  vertical-align: bottom;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: inherit;
}
.location-details-row__coordinates_lat {
  padding-right: 1.75em;
}
.location-details-row__profile_image,
.location-details-row__cover_image {
  margin-top: 0.5em;
}
.location-details-row__profile_image img {
  width: 5.375em;
  height: 5.375em;
  object-fit: cover;
}
.location-details-row__cover_image img {
  width: 19em;
  height: 5.375em;
  object-fit: cover;
}
.location-details-row__review_button {
  padding: 0.75em;
  border: 0;
}
.location-details-row__review_link {
  margin-left: 1em;
}
.location-details-row__review_link:hover {
  text-decoration: underline;
}
.location-details-row__attribute-name {
  max-width: 20em;
  width: 17em;
  padding-right: 1em;
}
.location-details-row__action-links-table {
  display: flex;
  flex-flow: column;
  gap: 1.6rem;
}
.location-details-row__action-links-row {
  display: flex;
  flex-flow: column;
}
.location-details-row__action-links-type {
  vertical-align: top;
}
.location-details-row__action-links-url {
  overflow: hidden;
  text-overflow: ellipsis;
}
.location-details-row__enum {
  display: flex;
  flex-wrap: wrap;
}
.location-details-row__pill {
  border-color: transparent;
  color: #ffffff;
  border-radius: 1em;
  margin-bottom: 0.2em;
  padding: 0em 0.25em;
  margin-right: 0.5em;
}
.location-details-row__pill--true {
  background-color: #0e9045;
}
.location-details-row__pill--true span {
  margin-left: 0.5em;
  margin-right: 0.5em;
}
.location-details-row__pill--false {
  background-color: #333;
}
.location-details-row__pill--false span {
  margin-left: 0.5em;
  margin-right: 0.5em;
}
@media screen and (max-width: 570px) {
  .location-details-row {
    flex-direction: column;
  }
  .location-details-row__label {
    width: 100%;
  }
}
.pmt-field-editor {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  border-radius: 0.5rem;
  margin-bottom: 4rem;
  min-height: 1px;
  background-color: #ccebfa;
}
.pmt-field-editor--network {
  background-color: #e4e6ea;
}
.pmt-field-editor--selected {
  box-shadow: 0 0 0 3px var(--color-main-navigation);
}
.pmt-field-editor--resolved {
  background-color: #cbdcd8;
}
.pmt-field-editor--resolved .pmt-field-editor--network {
  visibility: hidden;
}
@keyframes pmt-field-editor-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.pmt-field-editor__network-name {
  text-transform: capitalize;
}
.pmt-field-editor__header {
  display: flex;
  align-items: center;
  padding: 0 2rem 0 2rem;
}
.pmt-field-editor__title {
  padding: 1.2rem 0 2.8rem 0;
  flex-grow: 1;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
  font-size: 1.4rem;
  letter-spacing: normal;
  text-transform: uppercase;
}
.pmt-field-editor__title-suffix {
  display: block;
  font-size: 1.4rem;
  margin-top: 0.4rem;
  margin-bottom: -1.8rem;
  line-height: 1;
  text-transform: none;
}
.pmt-field-editor__title-suffix a {
  color: inherit;
}
.pmt-field-editor__title-suffix a:hover {
  text-decoration: underline;
}
.pmt-field-editor__content {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-height: 1px;
  margin: 0 1px;
}
.pmt-field-editor__data {
  flex-grow: 1;
}
.pmt-field-editor--publishing-other .pmt-field-editor__data {
  visibility: hidden;
  max-height: 0;
}
.pmt-field-editor__progress {
  color: rgba(255, 255, 255, 0.7);
  display: none;
  width: 150px;
  height: 150px;
  margin: auto;
}
.pmt-field-editor__progress svg {
  align-self: center;
  max-height: 9.6rem;
  animation: pmt-field-editor-spin 4s infinite linear;
}
.pmt-field-editor--publishing-other .pmt-field-editor__progress {
  display: flex;
  align-items: center;
}
.pmt-field-editor__footer {
  padding: 1.4rem 1rem;
  text-align: center;
}
.pmt-field-editor__alert {
  padding: 1rem 1rem 0rem 1rem;
}
.pmt-field-editor__status {
  display: inline-block;
  line-height: 2;
  margin: 1px;
  color: var(--color-main-navigation);
  font-weight: bold;
}
.pmt-field-editor .pmt-field-editor__resolved-icon {
  font-size: 2em;
  line-height: 0;
  color: rgba(0, 0, 0, 0.6);
}
.pmt-field-editor__cta {
  line-height: 2;
  width: 100%;
}
.pmt-field-editor .pmt-field-editor-data {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin: 0;
  min-height: 1px;
}
.pmt-field-editor .pmt-field-editor-data__row {
  display: flex;
  margin: 1px;
  align-items: stretch;
}
.pmt-field-editor .pmt-field-editor-data__row::after {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  padding: 0.2em;
  align-self: stretch;
  background-color: white;
  min-width: 1.5em;
  content: " ";
  display: flex;
  justify-content: center;
}
.pmt-field-editor .pmt-field-editor-data__row--with-approved-diff .pmt-field-editor-data__content,
.pmt-field-editor .pmt-field-editor-data__row--with-conflict .pmt-field-editor-data__content {
  font-weight: bold;
}
.pmt-field-editor .pmt-field-editor-data--editable {
  cursor: pointer;
}
.pmt-field-editor .pmt-field-editor-data--editable .pmt-field-editor-data__row::after {
  content: "\f303";
  color: #e4e6ea;
}
.pmt-field-editor .pmt-field-editor-data--editable:hover .pmt-field-editor-data__row {
  background-color: var(--color-main-navigation-highlight);
  color: var(--color-main-navigation);
}
.pmt-field-editor .pmt-field-editor-data--editable:hover .pmt-field-editor-data__row::after,
.pmt-field-editor .pmt-field-editor-data--editable:hover .pmt-field-editor-data__row .pmt-field-editor-data__content {
  background-color: rgba(255, 255, 255, 0.8);
}
.pmt-field-editor .pmt-field-editor-data .pmt-field-editor-data__row--with-conflict::after,
.pmt-field-editor .pmt-field-editor-data .pmt-field-editor-data__row--with-conflict .pmt-field-editor-data__field,
.pmt-field-editor .pmt-field-editor-data .pmt-field-editor-data__row--with-conflict .pmt-conflict-data__actions,
.pmt-field-editor .pmt-field-editor-data .pmt-field-editor-data__row--with-conflict .pmt-field-editor-data__content {
  background-color: #fff2a5;
}
.pmt-field-editor .pmt-field-editor-data .pmt-field-editor-data__row--with-conflict::after {
  content: "\f071";
  color: #f6891e;
}
.pmt-field-editor .pmt-field-editor-data .pmt-field-editor-data__row--with-conflict.pmt-conflict-data__row--with-actions::after {
  display: none;
}
.pmt-field-editor .pmt-field-editor-data .pmt-conflict-data__row--with-actions .pmt-btn {
  padding-left: 0;
  padding-right: 0;
  width: 3rem;
  height: 3rem;
  margin: 0 0.2em;
  align-self: center;
  justify-content: center;
  display: flex;
}
.pmt-field-editor .pmt-field-editor-data .pmt-conflict-data__row--with-actions .pmt-conflict-data__actions {
  display: flex;
}
.pmt-field-editor .pmt-field-editor-data .pmt-conflict-data__row--with-actions .pmt-btn--use-this {
  color: #5c5c5c;
  border: none;
  background-color: inherit;
}
.pmt-field-editor .pmt-field-editor-data .pmt-conflict-data__row--with-actions .pmt-btn--use-this:hover {
  text-decoration: underline;
}
.pmt-field-editor .pmt-field-editor-data .pmt-conflict-data__row--with-actions::after {
  content: "";
}
.pmt-field-editor .pmt-field-editor-data .pmt-conflict-data__row--with-approved-diff::after {
  content: "\f00c";
}
.pmt-field-editor .pmt-field-editor-data__field {
  display: flex;
  align-items: center;
  margin: 0 1px 0 0;
  align-self: stretch;
  flex-basis: 0;
  min-width: 8em;
  text-align: left;
  color: #333333;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0.2em 1em;
  text-overflow: ellipsis;
  overflow: hidden;
}
.pmt-field-editor .pmt-field-editor-data__content {
  word-wrap: break-word;
  background-color: white;
  flex: 1 1 auto;
  margin-bottom: 0;
  padding: 0.2rem 1rem;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media screen and (min-width: 376px) {
  .pmt-field-editor .pmt-field-editor-data__content {
    flex: 1 1 auto;
    padding: 0.2em 1em;
  }
}
.pmt-field-editor .pmt-field-editor-data__content:empty:before {
  content: "\2014";
}
.pmt-google-attributes-suggestions__banner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-md);
}
.pmt-google-attributes-suggestions__banner-button {
  flex-shrink: 0;
}
.pmt-google-attributes-suggestions__page-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}
.pmt-google-attributes-suggestions__footer {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: var(--spacing-sm);
}
.pmt-google-attributes-suggestions__attribute-group {
  margin-bottom: var(--spacing-lg);
}
.pmt-google-attributes-suggestions__attribute-group__title {
  color: var(--color-neutral-foreground-2);
}
.lightbox {
  transition: 0.1s ease-in opacity;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lightbox__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  background-color: rgba(51, 51, 51, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}
.lightbox__container {
  max-width: 600px;
  width: 90%;
  outline: 0;
  z-index: 11;
  display: flex;
  flex-direction: column;
  max-height: calc(100% - 16rem);
  border-radius: 8px;
  background-color: #fff;
}
.lightbox__headline {
  color: var(--color-neutral-foreground);
}
.lightbox__headline--with-pop-over {
  display: flex;
  align-items: center;
}
.lightbox__headline-description {
  color: var(--color-neutral-foreground-1);
  padding-bottom: 0.5em;
}
.lightbox__sub-headline {
  color: var(--color-neutral-foreground);
  margin-top: 0.75em;
  line-height: 1em;
}
.lightbox__sub-headline-description {
  color: var(--color-neutral-foreground-2);
}
.lightbox__input-label {
  color: var(--color-hover-grey);
}
.lightbox__input-container {
  display: flex;
  flex-direction: column;
  margin-top: 1.6rem;
  gap: 0.4rem;
}
.lightbox__selected-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
  margin-bottom: 3.2rem;
}
.lightbox__header {
  padding: 0em 2em 0em 2em;
}
.lightbox__header--with-pop-over {
  display: flex;
  flex-direction: column;
}
.lightbox__content {
  overflow: auto;
  padding: 0 2em 1em 2em;
}
.lightbox__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 1.5em 0em 1.5em 1.5em;
}
.lightbox__history-btn-container {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}
.lightbox__add-btn-container {
  margin-top: 1em;
  margin-bottom: 1.5em;
}
.lightbox__select-container {
  flex-direction: column;
}
.lightbox__select-row {
  display: flex;
  width: 25em;
}
.lightbox__dropdown-container {
  width: 80%;
}
.lightbox__dropdown-container span {
  overflow: hidden !important;
}
.lightbox__dropdown-container--small {
  width: 24.8rem;
}
.lightbox__remove-additional {
  float: right;
  font-size: 1.2em;
  cursor: pointer;
  padding-left: 1.5em;
}
.lightbox__location-selector-container {
  margin-top: 0.5rem;
  margin-bottom: 0.5em;
}
.lightbox__location-selector-container__button-container {
  margin: 0.4rem 0;
}
.lightbox__checkbox-header {
  margin-top: 0.5em;
  margin-bottom: 1em;
}
.lightbox__flex {
  display: flex;
}
.lightbox__banner-confirm-removal-container {
  display: flex;
  flex-direction: column;
}
.lightbox__banner-confirm-removal-button-container {
  display: flex;
  justify-content: flex-end;
}
.lightbox__open-hours-days {
  display: flex;
  flex-direction: row;
  margin-bottom: 0.6em;
  min-height: 2em;
}
.lightbox__open-hours-days-soh {
  align-items: center;
}
.lightbox__special-open-hours-days {
  display: flex;
  flex-direction: row;
  max-height: 2em;
}
.lightbox__highlight-new-date {
  background-color: #e7f2da;
  animation: pmt-fade-in 0.7s;
}
.lightbox__open-hours-day-name {
  width: 8em;
}
.lightbox__open-hours-day-data {
  margin-left: 0.5em;
  display: flex;
}
.lightbox__open-hours-day-closed {
  margin-right: 2.25em;
}
.lightbox__open-hours-day-span-container {
  display: flex;
  flex-direction: row;
  margin-bottom: 0.3em;
}
.lightbox__open-hours-input {
  margin-right: 0.3em;
}
.lightbox__open-hours-inner-span-container {
  display: flex;
  flex-direction: row;
}
.lightbox__open-hours-day-add-span {
  margin-left: 1em;
}
.lightbox__open-hours-day-remove-span {
  float: right;
  font-size: 1em;
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 1.2rem;
}
.lightbox__scheduler-selected-date-label {
  height: 2em;
}
.lightbox__scheduler-calendar-container {
  min-height: 3em;
  vertical-align: middle;
}
.lightbox__deactive {
  pointer-events: none;
}
.lightbox__ml-05 {
  margin-left: 0.5em;
}
.lightbox__mr-05 {
  margin-right: 0.5em;
}
.lightbox__mt-09 {
  margin-top: 0.9em;
  align-items: center;
}
.lightbox__mt-1 {
  margin-top: 1.2em;
}
.lightbox__mt-075 {
  margin-top: 0.75em;
}
.lightbox__special-open-hours-checkbox-alignment {
  margin-right: 1.5em;
}
.lightbox__special-open-hours-label-alignment {
  margin-right: 1.2em;
  margin-left: 1em;
  width: 26rem;
}
.lightbox__line {
  margin-bottom: -0.05em;
  width: 95%;
}
.lightbox__center_input {
  text-align: center;
}
.lightbox__special-open-hours-error-spacing {
  margin-top: 1em;
}
.lightbox__special-open-hours-span-width {
  min-width: 8.3em;
  max-width: 12em;
}
.lightbox__special-open-hours-container {
  min-height: 17.2em;
  max-height: 17.2em;
  overflow-y: auto;
}
.lightbox__special-open-hours-clear-button-icon-enabled {
  color: var(--color-secondary-emergency);
}
.lightbox__special-open-hours-clear-button {
  margin-left: 0.5em;
}
.lightbox__special-open-hours-clear-button-enabled {
  color: var(--color-neutral-foreground-1);
}
.lightbox__special-open-hours-clear-button-disabled {
  color: var(--color-neutral-foreground-disabled);
}
.lightbox__special-open-hours-inner-span-container {
  display: flex;
  flex-direction: row;
}
.lightbox__special-open-hours-spans-row {
  display: flex;
  flex-direction: column;
}
.lightbox__special-open-hours-day-span-container {
  display: flex;
  flex-direction: row;
}
.lightbox__special-open-hours-span-action {
  float: right;
  font-size: 1em;
  cursor: pointer;
  width: 7em;
}
.lightbox__special-open-hours-input {
  margin-right: 0.3em;
}
.lightbox__custom-field-list-form {
  display: flex;
  flex-direction: row;
  margin-bottom: 1em;
  margin-top: 1em;
}
.lightbox__custom-field-list-row {
  display: flex;
  flex-direction: row;
  padding: 0.5em;
}
.lightbox__custom-field-list-row:hover {
  background-color: var(--color-main-navigation-highlight);
}
.lightbox__custom-field-list-input {
  width: 26em;
}
.lightbox__custom-field-object-row {
  display: flex;
  flex-direction: row;
  padding: 0.5em;
  margin-top: 0.5em;
}
.lightbox__custom-fields-container {
  min-height: 10em;
  max-height: 10em;
  overflow-y: auto;
  box-shadow: 0px 0px 0.9px rgba(0, 0, 0, 0.1), 0px 1.6px 3.6px rgba(0, 0, 0, 0.14);
}
.lightbox__custom-field-object-container {
  overflow-y: auto;
}
.lightbox__custom-field-read-only {
  color: var(--color-neutral-foreground-2);
}
.lightbox__custom-field-checkbox-label {
  color: #242424;
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 400;
}
.lightbox__google-services-editor-container {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--color-border-1);
  padding-bottom: 2.4rem;
  row-gap: 1.6rem;
}
.lightbox__google-services-input-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.4rem;
}
.lightbox__google-services-selection-container {
  display: flex;
  flex-direction: column;
  margin-top: 1.6rem;
  overflow-y: auto;
  max-height: 19.2rem;
  gap: 0.4rem;
}
.lightbox__google-services-selection-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.4rem 0.4rem 0 0.4rem;
  color: var(--color-border-1);
}
.lightbox__google-services-selection-row i {
  cursor: pointer;
  color: var(--color-neutral-foreground-1);
  margin-left: 1.6rem;
  gap: 0.8rem;
  margin-right: 1.6rem;
}
.lightbox__google-services-selection-row:has(> i:hover) {
  background-color: var(--color-red-10);
}
.lightbox__google-services-price-container .pmt-ui-input__field,
.lightbox__google-services-price-container .pmt-ui-select {
  width: 8rem;
  height: 2.8rem;
}
.lightbox__google-services-dropdown-container .pmt-ui-select {
  width: 20rem;
  height: 2.8rem;
}
.lightbox__google-services-dropdown-container span {
  overflow: hidden !important;
}
.lightbox__google-services-titles-container {
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
  margin: 0.8rem 0;
}
.lightbox__google-services-description-container {
  width: 100%;
}
.lightbox__google-services-freeform-container {
  font-size: 1.4rem !important;
}
.lightbox__google-services-freeform-container .pmt-ui-input__field {
  width: 20rem;
  height: 2.8rem;
}
.lightbox__google-services-hidden-icon .pmt-ui-input__icons {
  display: none;
}
.lightbox__google-services-dropdown-title {
  width: 20rem;
  color: var(--color-hover-grey);
}
.lightbox__google-services-price-title {
  width: calc((8rem * 2) + 0.8rem);
  color: var(--color-hover-grey);
}
.lightbox__google-services-description-title {
  color: var(--color-hover-grey);
}
.lightbox__overlapping-special-open-hours .pmt-ui-alert--error {
  align-items: center;
  width: 100%;
}
.lightbox__overlapping-special-open-hours .pmt-ui-alert__icon {
  padding-top: 0;
}
.lightbox__overlapping-special-open-hours .pmt-ui-alert__message {
  width: 100%;
}
.lightbox__overlapping-special-open-hours .pmt-ui-alert__message .pmt-ui-alert__message {
  width: 100%;
}
.lightbox__overlapping-special-open-hours .message-container {
  display: flex;
  margin: auto;
  width: 100%;
  justify-content: space-between;
}
.lightbox__overlapping-special-open-hours .error-message {
  margin-top: auto;
  margin-bottom: auto;
}
.lightbox__overlapping-special-open-hours .error-action {
  float: right;
}
#lightbox__btn-close {
  margin-right: 1em;
  background: #919191;
  color: #fff;
}
#lightbox__btn-close:hover {
  background: #7c7c7c;
}
#lightbox__btn-close:disabled {
  background: #c2c2c2;
  cursor: auto;
}
#lightbox__btn-update:disabled {
  cursor: auto;
}
.location-details-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.location-details-group__title {
  color: #000000;
  margin: 1em 0.4rem 0.4rem 0.4rem;
}
.location-details-group__rows {
  background: #ffffff;
  box-shadow: 0px 0.3px 0.9px rgba(0, 0, 0, 0.1), 0px 1.6px 3.6px rgba(0, 0, 0, 0.14);
  border-radius: 8px;
  margin-top: 1rem;
  overflow: hidden;
}
.location-details-group__row:first-child {
  padding-top: 0.75rem;
}
.location-details-group__row:last-child {
  padding-bottom: 0.75rem;
}
.location-details-group__row {
  padding: 0.75rem 1.5rem 0 1.5rem;
  width: 100%;
  cursor: default;
}
.location-details-group__row:hover {
  background-color: #eaf6ff;
}
.location-details-group__clickable-element:hover {
  background-color: #eaf6ff;
  cursor: pointer;
}
.ui-donut-chart__warning-filling {
  fill: var(--color-secondary-warning-graphs);
}
.ui-donut-chart__error-filling {
  fill: var(--color-secondary-attention-graphs);
}
.ui-donut-chart__success-filling {
  fill: var(--color-secondary-success-graphs);
}
.ui-donut-chart__background {
  opacity: 0.2;
}
.pmt-insight-card {
  width: 100%;
  background-color: white;
  padding: 2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.pmt-insight-card .pmt-text-container {
  padding-bottom: 1em;
  display: contents;
}
.pmt-business-total {
  font-style: normal;
  font-weight: 400;
  font-size: 3.6rem;
  color: #000000;
  line-height: 4.4rem;
}
.pmt-title-and-description {
  flex-direction: column;
  padding: 0px 8px 8px;
}
.pmt-title-and-feedback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.pmt-description {
  font-style: normal;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2rem;
  align-self: center;
  letter-spacing: 0.009375em;
  color: var(--color-neutral-foreground-2);
  margin-left: auto;
  display: flex;
  justify-content: space-between;
}
.pmt-insight-chart-note {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.pmt-insight-chart-container {
  height: 250px;
}
.pmt-apple-insights-searches-chart {
  height: 250px;
  max-width: 450px;
}
.pmt-apple-insights-top-list .pmt-ui-table__table-container {
  width: 100%;
}
.pmt-apple-insights-top-list .pmt-ui-table {
  max-height: 400px;
}
.pmt-facebook-insights-chart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1rem;
}
.pmt-highlights-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 16px;
}
.pmt-highlights-card {
  width: 100%;
  background-color: white;
  padding: 2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.pmt-highlights-card__text-container {
  padding-bottom: 1em;
  display: contents;
}
.pmt-highlights-card__icon-and-total {
  font-style: normal;
  font-weight: 400;
  font-size: 2.2rem;
  color: #000000;
  padding-top: 8px;
  padding-left: 8px;
  line-height: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.pmt-highlights-card__icon-and-total i {
  font-size: 1.6rem;
}
.pmt-highlights-card__icon-and-total__conversations i {
  color: var(--color-brand-orange);
}
.pmt-highlights-card__icon-and-total__followers i,
.pmt-highlights-card__icon-and-total__likes i,
.pmt-highlights-card__icon-and-total__checkins i {
  color: #61a5d8;
}
.pmt-highlights-card__icon-and-total__recommendations i {
  color: #f15079;
}
.pmt-highlights-card__description {
  font-style: normal;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2rem;
  align-self: center;
  letter-spacing: 0.009375em;
  padding-top: 8px;
  padding-left: 8px;
  color: var(--color-neutral-foreground-2);
}
.pmt-highlights-card__title {
  flex-direction: column;
  padding: 0px 8px 8px;
  border-bottom: 1px solid #e6e6e6;
  color: var(--color-neutral-foreground-2);
}
.ui-feedback {
  display: flex;
}
.ui-feedback .pmt-ui-lightbox__container {
  max-width: 64rem;
  min-height: 24rem;
}
.ui-feedback__label {
  color: var(--color-neutral-foreground-1);
}
.ui-feedback__actions {
  display: inline-flex;
  gap: 1.6rem;
}
.ui-feedback__action-button {
  all: unset;
  appearance: none;
  cursor: pointer;
}
.ui-feedback__action-button:hover,
.ui-feedback__action-button:focus,
.ui-feedback__action-button:active {
  color: var(--color-main-navigation);
}
.ui-feedback__action-button--positive:active,
.ui-feedback__action-button--positive:focus {
  color: var(--color-main-navigation);
  animation: wobble-ver-left 0.4s;
  -webkit-animation: wobble-ver-left 0.4s;
}
.ui-feedback__action-button--negative:active,
.ui-feedback__action-button--negative:focus {
  color: var(--color-main-navigation);
  animation: wobble-ver-right 0.4s;
  -webkit-animation: wobble-ver-right 0.4s;
}
.ui-feedback h1 {
  margin-bottom: 1.6rem;
}
.ui-feedback__modal {
  padding: 0 3.2rem;
}
.ui-feedback__modal-footer {
  display: flex;
  gap: 1.6rem;
  justify-content: flex-end;
}
.ui-feedback__modal-footer button {
  text-transform: capitalize;
}
@-webkit-keyframes wobble-ver-left {
  0%, 100% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
  }
  50% {
    -webkit-transform: translateY(-15px) rotate(-20deg);
    transform: translateY(-15px) rotate(-20deg);
  }
}
@keyframes wobble-ver-left {
  0%, 100% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
  }
  50% {
    -webkit-transform: translateY(-15px) rotate(-20deg);
    transform: translateY(-15px) rotate(-20deg);
  }
}
@-webkit-keyframes wobble-ver-right {
  0%, 100% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
  }
  50% {
    -webkit-transform: translateY(15px) rotate(20deg);
    transform: translateY(15px) rotate(20deg);
  }
}
@keyframes wobble-ver-right {
  0%, 100% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
  }
  50% {
    -webkit-transform: translateY(15px) rotate(20.6deg);
    transform: translateY(15px) rotate(20.6deg);
  }
}
.listings-ui-date-range-picker {
  display: flex;
}
.listings-ui-date-range-picker .pmt-ui-select__toggle:focus-within,
.listings-ui-date-range-picker .pmt-ui-select__toggle:focus,
.listings-ui-date-range-picker .pmt-ui-select__toggle:active,
.listings-ui-date-range-picker .pmt-ui-select__toggle:hover {
  background-color: transparent !important;
}
.listings-ui-date-range-picker .pmt-ui-select__item:focus-within,
.listings-ui-date-range-picker .pmt-ui-select__item:focus,
.listings-ui-date-range-picker .pmt-ui-select__item:active,
.listings-ui-date-range-picker .pmt-ui-select__item:hover {
  background-color: transparent;
}
.listings-ui-date-range-picker__dropdown {
  display: flex;
  justify-content: center;
  padding: 0.6rem 1.2rem 0.6rem;
  gap: 1.2rem;
}
.listings-ui-date-range-picker__presets {
  padding: 0.2rem 0;
}
.listings-ui-date-range-picker__presets ul {
  list-style: none;
  margin: 0;
  padding: 0.8rem 0;
}
.listings-ui-date-range-picker__presets ul:first-child {
  border-bottom: 1px solid #eaebeb;
}
.listings-ui-date-range-picker__presets li {
  display: flex;
}
.listings-ui-date-range-picker__presets li button {
  flex-grow: 1;
  justify-content: left;
}
.listings-ui-date-range-picker-toggle {
  display: flex;
  gap: 1px;
  color: var(--color-main-navigation);
}
.listings-ui-date-range-picker-toggle__part {
  display: flex;
  align-items: baseline;
  padding: var(--spacing-xs) var(--spacing-lg);
  gap: var(--spacing-md);
  background-color: var(--color-main-navigation-10);
}
.listings-ui-date-range-picker-toggle__preset {
  border-top-left-radius: var(--radius-xxl);
  border-bottom-left-radius: var(--radius-xxl);
  border-top-right-radius: var(--radius-xxl);
  border-bottom-right-radius: var(--radius-xxl);
}
.listings-ui-date-range-picker-toggle:focus .listings-ui-date-range-picker-toggle__preset {
  color: var(--color-main-navigation);
  box-shadow: inset 0 0 0 1px var(--color-neutral-foreground-1);
}
.listings-ui-date-range-picker-toggle:hover .listings-ui-date-range-picker-toggle__preset {
  background-color: var(--color-main-navigation-30);
}
.listings-ui-date-range-picker-toggle:active .listings-ui-date-range-picker-toggle__preset {
  box-shadow: none;
  background-color: var(--color-main-navigation-40);
}
.listings-ui-date-range-picker-toggle__dates {
  background-color: transparent;
  color: var(--color-neutral-foreground-2);
}
.listings-ui-date-range-picker-toggle__date-range {
  display: flex;
  gap: 0.8rem;
}
.pmt-insights__card-container {
  display: flex;
  gap: 1.6em;
}
.pmt-insights__date-picker-and-export-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.6rem;
}
.pmt-insights__date-picker-and-export-container span {
  display: flex;
  align-items: center;
}
.pmt-insights__alert-container {
  margin: 1.6rem;
}
.pmt-insights__date-container {
  display: flex;
  gap: 0.6rem;
  margin-left: 0.8rem;
}
.pmt-insights__date-container pmt-date {
  margin: 0 -0.6rem;
}
.pmt-insights__top-list-title {
  display: flex;
  align-items: center;
}
.pmt-insights__top-list-description {
  display: flex;
  align-items: top;
  color: var(--color-neutral-foreground-2);
}
.pmt-insights__top-listings-title {
  color: var(--color-neutral-foreground-1);
  display: flex;
  align-items: center;
}
.pmt-insights__top-list-review-link {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  max-width: 200px;
}
.pmt-insights__top-list-review-link:hover {
  text-decoration: underline;
}
.pmt-insights__ui-performance-container {
  display: flex;
  flex-direction: column;
  padding: var(--spacing-lg);
  gap: var(--spacing-sm);
  flex-grow: 1;
}
.pmt-insights__ui-performance-asides {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.pmt-insights__ui-performance-blue-text {
  color: var(--color-main-navigation);
}
.pmt-insights__ui-performance-red-text {
  color: var(--color-red);
}
.pmt-insights__ui-performance-green-text {
  color: #0e9045;
}
.pmt-insights__ui-feedback {
  margin-left: auto;
  font-size: 14pt;
}
.pmt-insights__chartCard--container {
  margin-bottom: 1.6em;
  border-radius: var(--radius-lg);
}
.pmt-insights__highlight--container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 2rem;
  margin-bottom: 1.6em;
}
.pmt-insights__highlight--item {
  flex-grow: 1;
  border-radius: var(--radius-lg);
}
.pmt-insights__highlight--item__full-height {
  height: 100%;
}
.pmt-insights__highlight--note {
  color: var(--color-neutral-foreground-2);
  margin-bottom: 0.4em;
}
.pmt-insights__highlight--empty-state-icon {
  color: var(--color-neutral-foreground-2);
}
.pmt-insights__highlight--asides {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.pmt-insights__highlight--star-rating {
  font-size: 1.6rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.2rem;
}
.pmt-insights__asides {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.pmt-insights__chart {
  height: 24rem;
}
.pmt-insights__chart--doughnut-container {
  width: calc(2 * 24rem);
  max-width: 100%;
  display: flex;
  justify-content: center;
  margin: auto;
  align-items: center;
  padding-top: 1.6rem;
}
.pmt-insights__chart--doughnut-container > * {
  height: 100%;
  width: 100%;
}
.pmt-insights__chart--star-rating {
  width: 26rem;
}
.pmt-insights__chart--star-rating-container {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  margin-top: 0.4em;
  margin-bottom: 1em;
}
.pmt-insights__chart--star-average-container {
  width: 26rem;
  display: grid;
  padding: 1em;
  align-content: center;
}
.pmt-insights__chart--star-average-item {
  display: flex;
  justify-content: space-between;
  font-size: 1.6rem;
}
.pmt-insights__chart--star-rating-card {
  text-align: center;
}
.pmt-insights__chart--star-rating-lifetime {
  display: flex;
  justify-content: center;
}
.pmt-insights__chart--star-rating-total {
  font-size: 3em;
}
.pmt-insights__chart--star-per-rating {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}
.pmt-insights__chart--star-per-rating--bar {
  display: inline-flex;
}
.pmt-insights__chart--star-per-rating--value {
  margin-right: 1em;
  font-size: 1.4rem;
}
.pmt-insights__chart--star-per-rating--line {
  margin-top: 0.2em;
  width: 12.6em;
}
.pmt-insights__chart--doughnut {
  height: 34rem;
  padding-block: 2rem;
  width: 50%;
}
.pmt-insights__review {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.6rem;
}
.pmt-insights__review--star-rating {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}
.pmt-insights__review--comment {
  color: var(--color-neutral-foreground-2);
  overflow-y: hidden;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.pmt-insights__review--date-container {
  display: flex;
  color: var(--color-neutral-foreground-2);
  font-size: 1.2rem;
  margin-left: 0.8rem;
}
.pmt-insights__review--footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 0.8rem;
}
.pmt-insights__review--button-container {
  display: flex;
  justify-content: flex-end;
}
.pmt-insights__review--network {
  color: var(--color-hover-grey);
}
.pmt-insights__rating-metric-section-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  width: 100%;
}
@media (max-width: 1200px) {
  .pmt-insights__rating-metric-section-container {
    grid-template-columns: 1fr;
  }
}
.pmt-insights__divider {
  border-top: 1px solid var(--color-border-1);
  margin: 0 1.6rem;
}
.pmt-insights__rating-top-list-container {
  padding: var(--spacing-lg);
}
.pmt-insights__performance-item {
  display: flex;
  flex-direction: row;
  padding: var(--spacing-sm);
  padding-bottom: 0;
  align-items: flex-start;
  gap: var(--spacing-lg);
  align-self: stretch;
  border-radius: var(--radius-md);
  background: #fff;
}
.pmt-insights__performance-item--rank {
  color: var(--color-neutral-foreground-1);
  font-size: 1.6rem;
  width: 5.2rem;
  height: 5.2rem;
  background-color: var(--color-border-2);
  border-radius: 0.6rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: var(--spacing-xs);
}
.pmt-insights__performance-item--location {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.pmt-insights__performance-item--location__identifier {
  margin-bottom: var(--spacing-xs);
}
.pmt-insights__performance-item--location__metrics {
  display: flex;
  flex-direction: row;
}
.pmt-insights__performance-item--location__metrics--rating {
  margin-right: var(--spacing-xl);
  display: flex;
}
.pmt-insights__performance-item--location__metrics--review {
  margin: auto;
  margin-left: 0;
}
.ui-insights-header__header {
  color: var(--color-neutral-foreground-1);
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.ui-insights-header__header__title {
  flex: 0 0 auto;
}
.ui-insights-header__header__icon {
  margin-right: 1rem;
}
.ui-insights-header__note {
  color: var(--color-neutral-foreground-2);
}
.ui-insights-header__number {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.ui-insights-header__number-dashboard {
  align-items: baseline;
  gap: 0.6rem;
  color: var(--color-neutral-foreground-2);
}
.ui-insights-header__star-rating {
  font-size: 1.6rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.2rem;
}
.ui-insights-header .pmt-ui-popOver__target {
  margin-left: 0;
  margin-right: 0;
}
.ui-media-card {
  padding: 0 1rem 1rem 1rem;
  background-color: white;
  display: flex;
  flex-direction: column;
}
.ui-media-card__google-media-icon {
  background-color: #eee;
  padding: 0.5em 0.5em 0.25em 0.5em;
  border-radius: 1em;
}
.ui-media-card__icon-and-store-div {
  display: flex;
}
.ui-media-card__margin-right-auto {
  margin-right: auto;
}
.ui-media-card__logo {
  flex-grow: 1;
  padding-top: 0.5rem;
}
.ui-media-card__customer-owner-logo {
  color: var(--color-main-reserved);
}
.ui-media-card__customer-owner-logo-popup {
  margin-left: 0.5em;
}
.ui-media-card__customer-owner-description {
  margin-left: 0.75em;
  text-align: center;
  color: var(--color-neutral-foreground-1);
}
.ui-media-card__logo-image {
  height: 2rem;
  border-radius: 50%;
  padding: 0.5rem 1rem 0 0;
}
.ui-media-card__flag {
  position: absolute;
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
}
.ui-media-card__flagged {
  border: 1px solid #f6891e;
}
.ui-media-card__detailed-view {
  display: flex;
  height: 100%;
  overflow: hidden;
}
.ui-media-card__detailed-view--media-preview {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ebebeb;
  position: relative;
  margin: 0em 0em 1.75em 1.75em;
}
.ui-media-card__detailed-view--media-preview img {
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.ui-media-card__detailed-view--media-preview .pmt-ui-media-card__actions--flag,
.ui-media-card__detailed-view--media-preview .pmt-ui-media-card__actions--flagged,
.ui-media-card__detailed-view--media-preview .pmt-ui-media-card__actions--delete {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1rem;
}
.ui-media-card__detailed-view--details {
  flex-basis: 25%;
  min-width: 15em;
  padding: 3rem;
  overflow-y: auto;
}
.ui-media-card__detailed-view--details h4 {
  font-size: 0.8em;
  color: #c2c2c2;
}
.ui-media-card__thumbnail {
  position: relative;
  display: flex;
  flex: 1;
  max-height: 250px;
  background: #ebebeb;
}
.ui-media-card__thumbnail img {
  object-fit: cover;
  cursor: pointer;
  width: 100%;
}
.ui-media-card__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.5rem 0;
}
.ui-media-card__actions--report {
  color: colorBrand2;
  cursor: pointer;
  font-size: 16px;
}
.ui-media-card__actions--flag {
  color: white;
  background-color: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  padding: 0 0.75rem;
}
.ui-media-card__actions--flag-flagged {
  background-color: transparent;
  color: #ee3e23;
}
.ui-media-card__actions--flag:hover {
  background-color: rgba(0, 0, 0, 0.4);
}
.ui-media-card__actions--delete {
  color: black;
  cursor: pointer;
}
.ui-media-card__overlay-info {
  position: absolute;
  text-align: right;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  justify-content: space-between;
  padding: 0.25rem 1rem;
  font-size: 16px;
  color: white;
}
.ui-media-card__overlay-info--views i {
  padding-right: 0.5rem;
}
.ui-media-card__video {
  max-width: 100%;
  max-height: 100%;
}
.location-details-label {
  display: flex;
  flex-direction: column;
}
.location-details-label__title {
  color: #242424;
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 400;
}
.location-details-label__title-and-new-release-indicator-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.8rem;
}
.location-details-label__new-release-indicator {
  font-size: 1.2rem;
  border-radius: 1.2rem;
  align-items: center;
  color: white;
  padding: 0.2rem 0.8rem;
  background-color: var(--color-brand-orange);
  display: flex;
  height: fit-content;
  max-width: 10rem;
  overflow: hidden;
}
.location-details-label__description {
  color: #7c7c7c;
}
.location-details-label__schedule-updates__margin {
  margin-top: 0.25em;
}
.location-details-label__schedule-updates__rounded-button button {
  border-radius: 50px;
}
.network-log-list-table__network-list {
  display: flex;
}
.network-log-list-table__network-icon {
  padding-left: 0.5em;
}
.network-log-list-table .pmt-ui-table__row-more-content {
  padding: 0;
}
.network-log-list-table .pmt-ui-table__table-container {
  margin-bottom: 0;
  table-layout: fixed;
}
.network-log-list-table .pmt-ui-table__thead {
  border-bottom: 1px solid var(--color-neutral-border);
}
.network-log-list-table .pmt-ui-table__tbody .pmt-ui-table__cell {
  padding: 0em 1em;
}
.network-log-list-table .pmt-ui-table__tbody .pmt-ui-table__row:first-child {
  border-top: 0;
}
.network-log-list-table .pmt-ui-table__tbody .pmt-ui-table__row:last-child {
  border-bottom: 0;
}
.network-log-list-table .pmt-ui-table__tbody .pmt-ui-table__row-more-reason {
  padding: 0;
}
.network-log-list-table .pmt-ui-table__tbody .pmt-ui-table__row {
  border-bottom: 1px dashed var(--color-neutral-border);
  height: 40px;
}
.network-log-list-table .pmt-ui-table__tbody .pmt-ui-table__row .pmt-ui-table__row-more-content {
  background-color: #fff;
  padding-top: 0;
  padding-bottom: 0;
}
.network-log-list-table .pmt-ui-table__tbody .pmt-ui-table__row .pmt-ui-table__cell--index-0,
.network-log-list-table .pmt-ui-table__tbody .pmt-ui-table__row .pmt-ui-table__cell--index-1,
.network-log-list-table .pmt-ui-table__tbody .pmt-ui-table__row .pmt-ui-table__cell--index-2,
.network-log-list-table .pmt-ui-table__tbody .pmt-ui-table__row .pmt-ui-table__cell--index-3,
.network-log-list-table .pmt-ui-table__tbody .pmt-ui-table__row .pmt-ui-table__cell--index-4,
.network-log-list-table .pmt-ui-table__tbody .pmt-ui-table__row .pmt-ui-table__cell--index-5 {
  width: 20%;
  max-width: 20%;
  min-width: 20%;
}
.list-table-more .pmt-ui-table__unselectables:first-child {
  border-top: 0;
}
.list-table-more .pmt-ui-table__unselectables:last-child {
  border-bottom: 1px dashed #e2e2e2;
}
.network-log-list-table-more {
  background-color: red;
}
.network-log-list-table-more__networks-cell {
  display: flex;
}
.network-log-list-table-more .pmt-ui-table__cell--index-0,
.network-log-list-table-more .pmt-ui-table__cell--index-1,
.network-log-list-table-more .pmt-ui-table__cell--index-2,
.network-log-list-table-more .pmt-ui-table__cell--index-3,
.network-log-list-table-more .pmt-ui-table__cell--index-4,
.network-log-list-table-more .pmt-ui-table__cell--index-5 {
  width: 20%;
  max-width: 20%;
  min-width: 20%;
}
.network-log-list-table-more .pmt-ui-table__row {
  padding-left: 40%;
}
.network-log-list-table-more__network-list {
  display: flex;
}
.network-log-list-table-more__network-icon {
  padding-left: 0.5em;
}
.pmt-log-card-view {
  display: flex;
}
.pmt-log-card-view__container {
  min-height: 193px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2), 0px 2px 6px 4px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  margin: 1rem;
  color: var(--color-neutral-foreground);
  width: -webkit-fill-available;
}
.pmt-log-card-view__top-inner-container {
  height: 24px;
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.pmt-log-card-view__top-inner-container__center {
  margin-bottom: 0;
  align-self: center;
  margin-left: 24px;
  padding-top: 2px;
}
.pmt-log-card-view__top-inner-container__left {
  margin-left: 8px;
}
.pmt-log-card-view__top-inner-container__logo-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}
.pmt-log-card-view__top-inner-container__logo-box__logo-icon {
  height: 2.4rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 2.4rem;
  font-size: 1.2rem;
}
.pmt-log-card-view__top-inner-container__logo-box__logo-icon__general {
  height: 3rem;
}
.pmt-log-card-view__top-inner-container__logo-box__logo-text__network-name {
  text-transform: capitalize;
}
.pmt-log-card-view__top-inner-container__status-box {
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
}
.pmt-log-card-view__top-inner-container__status-box__icon {
  width: 14px;
  font-size: 1rem;
  line-height: 1rem;
  margin-right: 0.8rem;
}
.pmt-log-card-view__top-inner-container__status-box__icon__success {
  color: #3fa650;
}
.pmt-log-card-view__top-inner-container__status-box__icon__pending {
  color: var(--color-neutral-foreground-2);
}
.pmt-log-card-view__top-inner-container__status-box__icon__failed {
  color: var(--color-listings-red-badge);
}
.pmt-log-card-view__top-inner-container__status-box__icon__off {
  color: var(--color-neutral-border);
}
.pmt-log-card-view__top-inner-container__status-box__text {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6rem;
  letter-spacing: 0.4px;
  text-align: left;
  align-self: center;
  text-transform: capitalize;
}
.pmt-log-card-view__middle-title-box {
  display: flex;
  height: 2.4rem;
  border-bottom: 1px solid #d1d1d1;
  align-items: center;
  margin-bottom: 1rem;
}
.pmt-log-card-view__middle-title-box__text-style {
  height: 1.6rem;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6rem;
  letter-spacing: 0.4px;
  text-align: left;
}
.pmt-log-card-view__content-box .pmt-ui-status-bar--error {
  background-color: var(--color-listings-red-badge);
  color: white;
  border-radius: 0.25rem;
  max-width: 60rem;
}
.pmt-log-card-view__content-box .address-row {
  line-height: 2rem;
}
.outer-card-container {
  padding: 1em;
  display: flex;
  flex-direction: column;
  color: var(--color-neutral-foreground-1);
  width: fit-content;
}
.outer-card-container .details-text {
  margin-top: 1rem;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.4rem;
  letter-spacing: 0.1;
}
.outer-card-container .inner-card-container {
  display: block;
}
.inner-card-container {
  display: flex;
  flex-direction: row;
  min-width: 25rem;
}
.inner-card-container .location-details-row__value location-details-row__table {
  color: var(--color-neutral-foreground-1);
}
.network-log-pagination {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0 2.5rem 0;
}
.full-data-container {
  display: flex;
  flex-direction: row;
  color: var(--color-neutral-foreground-1);
  width: -webkit-fill-available;
}
.side-data-container {
  padding: 0.5rem;
}
.side-data-container .pmt-ui-status-bar--error {
  max-width: 35rem;
}
.side-data-container__from {
  min-width: 13.25rem;
}
.side-data-container__to {
  min-width: 13.25rem;
}
.arrow-container {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  align-self: stretch;
  padding: 0 1.5rem;
}
.networks-log-filterContainer {
  padding: 0 2rem;
  position: relative;
}
.networks-log-filterContainer__loading {
  pointer-events: none;
  opacity: 0.6;
}
.networks-log-filter-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.5);
  z-index: 10;
  padding: inherit;
}
.networks-log__value {
  color: var(--color-neutral-foreground);
  align-items: baseline;
  text-align: justify;
  word-break: break-word;
  padding-top: 0.2rem;
}
.networks-log__table .max-table {
  max-width: 35rem;
}
.networks-log__table .special-open-hours-table {
  width: 35rem;
}
.networks-log__table table {
  margin-top: 0.25em;
  border-collapse: collapse;
}
.networks-log__table table tr:first-child {
  margin-bottom: 0.5em;
}
.networks-log__table table tr {
  border-bottom: 1pt solid var(--color-neutral-border);
}
.networks-log__table table tr th {
  color: var(--color-neutral-foreground);
  padding: 0;
}
.networks-log__table table tr td:first-child {
  color: var(--color-neutral-foreground-2);
  width: 8rem;
}
.networks-log__table table tr td {
  color: var(--color-neutral-foreground);
  padding: 0.25em 0;
}
.networks-log__table table tr:last-child {
  border-bottom: none;
}
.networks-log__table__open-hours-key {
  vertical-align: top;
}
.networks-log__table__open-hours-value {
  width: 10em;
}
.networks-log__table--td-center {
  width: 10rem;
  text-align: center;
}
.networks-log__table--td-special-hour-date {
  width: 5.5rem;
  vertical-align: top;
}
.networks-log__table--td-special-hour-time {
  text-align: center;
  width: 9rem;
  vertical-align: text-top;
}
.networks-log__table--td-special-hour-label {
  text-align: left;
  vertical-align: text-top;
  width: 15rem;
}
.networks-log__table--td-address-header {
  width: 6rem;
  vertical-align: top;
}
.networks-log__table--td-address-text {
  width: -webkit-fill-available;
  vertical-align: top;
}
.networks-log__table--td-google-service-id {
  text-align: left;
  width: 16rem !important;
  vertical-align: top;
}
.networks-log__table--td-google-service-price {
  text-align: left;
  width: 12rem;
  vertical-align: top;
}
.networks-log__table--td-google-service-description {
  text-align: left;
  width: 12rem;
  vertical-align: top;
}
.networks-log-empty-state-banner {
  width: 100%;
  background-color: var(--color-secondary-warning-background);
  border-radius: 0.8rem;
  display: inline-flex;
  padding: 1.6rem 2.4rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--color-neutral-foreground);
  margin-bottom: 1.6rem;
}
.networks-log-select-location-text {
  margin-bottom: 2rem;
}
.location-details-header {
  background-color: var(--color-main-navigation);
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 1em;
  line-height: 1.5em;
  letter-spacing: 0.009375em;
  color: #ffffff;
  padding: 0.5em 0em;
}
.location-details-header p {
  display: inline;
  padding: 0em 1.75em;
}
.location-details {
  margin-top: 2rem;
}
.location-details__map-off-svg-icon {
  display: inline-block;
  height: 17.56px;
  width: 18px;
  margin: 0 auto;
  align-content: center;
  background: no-repeat center center;
  background-size: 18px;
  background-image: url("../mapOff-YCYCZVCR.png");
}
.location-details__map-on-svg-icon {
  display: inline-block;
  height: 17.56px;
  width: 18px;
  margin: 0 auto;
  align-content: center;
  background: no-repeat center center;
  background-size: 18px;
  background-image: url("../mapOn-LFML6PFV.png");
}
.location-details__circle-toggle-button {
  width: 32px;
  height: 32px;
  background-color: var(--color-main-navigation-muted-rest);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}
.location-details__circle-toggle-button:hover {
  background-color: var(--color-main-navigation-muted-hover);
}
.location-details--map {
  height: 300px;
  position: relative;
}
.location-details-container {
  margin: 0em 1em;
}
.location-details-container .pmt-ui-view-selector {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding-left: 1em;
}
.location-details--location-list-header {
  justify-content: space-between;
  margin-top: -0.5em;
  margin-bottom: 1em;
}
.location-details--location-list-header-with-map {
  padding-top: 1.5em;
}
.location-details--unread-count {
  border-style: solid;
  border-width: 0.16em 0.34em;
  border-color: var(--color-listings-red-badge);
  background-color: var(--color-listings-red-badge);
  border-radius: 1em;
  color: var(--color-neutral-background);
  font: 600 12px "Roboto";
  margin-top: -0.2em;
  outline: 2px solid var(--color-neutral-background);
  position: absolute;
  line-height: 12px;
}
.location-details__more-info {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 14.5px;
  letter-spacing: 0.015625em;
  display: flex;
}
.location-details__more-info p {
  color: #787878;
  display: inline-block;
  margin: 0em 0em 0.2em 0em;
}
.location-details__more-info span {
  color: #424242;
  display: inline-block;
  margin: 0em 0em 0.2em 0em;
}
.location-details__more-info b {
  color: #787878;
  font-weight: 500;
  display: inline-block;
  margin: 0em 0em 0.2em 0em;
}
.location-details__more-info__icon {
  color: #787878;
  margin-right: 0.5em;
}
.location-details__more-info__padding-top {
  padding-top: 0.875em;
}
.location-details__subheader {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25em;
  line-height: 1.75em;
  margin: 0;
}
.location-details__subheader__url {
  margin-left: 2.375em;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 1.125em;
  line-height: 1.5em;
  letter-spacing: 0.00625em;
  color: #61a5d8;
  display: inline-flex;
}
.location-details__subheader__url a {
  word-break: break-all;
}
.location-details__subheader__url__icon {
  color: #61a5d8;
  margin-right: 0.75em;
}
.location-details__anchor {
  display: block;
  position: relative;
  top: -100px;
  visibility: hidden;
}
.temporarily-closed__details-section {
  margin-top: 1rem;
}
.temporarily-closed__deactive {
  pointer-events: none;
  opacity: 0.4;
}
.opening-date__note-margin {
  margin: 0.75em 0 0 0 !important;
}
.network-claim-page__header {
  display: flex;
  align-items: center;
}
.network-claim-page__icon {
  font-size: 2.4rem;
  margin-right: 1.6rem;
}
.network-claim-page__line-separator {
  margin-bottom: 1.6rem;
  margin-top: 1.6rem;
  opacity: 0.5;
  width: 100%;
}
.network-claim-page__page-margin {
  margin-left: 1.2rem;
}
.network-claim-page__inner-container {
  display: flex;
  justify-content: space-between;
}
.network-claim-page__categories-component {
  margin-bottom: 3.2rem;
}
.network-claim-page__categories-component-title {
  margin-bottom: 0.8rem;
}
.network-claim-page__content-margin {
  margin-left: 2.4rem;
}
.network-claim-page__sub_content-margin {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.network-claim-page__sub_content-note {
  margin-left: 1rem;
}
.network-claim-page__sub_content-caption {
  margin-left: 2rem;
}
.network-claim-page__headline {
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
}
.network-claim-page__publish-button {
  margin-bottom: 3.2rem;
}
.network-claim-page__render-distance {
  margin-bottom: 1.6rem;
}
.network-claim-page__section-break {
  margin-top: 3.2rem;
}
.network-claim-page__business_name {
  color: var(--color-warning);
}
.network-claim-page__business_name-absent {
  color: #707070;
}
.network-claim-page__business-selection-container {
  margin-bottom: 3.2rem;
}
.network-claim-page__business-selection-container__button {
  margin-bottom: 3.2rem;
}
.network-claim-page__business-selection-filter-row {
  padding: 0.5em 0.5em 0em 0em;
  margin: 0 0.5em 1.6rem;
  display: flex;
  align-items: baseline;
  gap: 2.4rem;
}
.network-claim-page__list-container {
  margin-bottom: 1em;
  overflow: auto;
  background: white;
  display: "flex";
  justify-content: "space-between";
  gap: "32px";
  font-size: "16px";
}
.network-claim-page__create-location-tabs {
  margin-bottom: 1.2rem;
}
.network-claim-page__error-text {
  color: #ee3e23;
}
.network-claim-page__sync-locations__container {
  display: flex;
  flex-direction: column;
}
.network-claim-page__sync-locations__last-sync {
  color: var(--color-neutral-foreground-2);
}
.network-claim-page__sync-locations__at {
  color: #999;
}
.network-claim-page__sync-locations_section {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.network-claim-page__connect_button_small {
  height: 2.2rem;
  font-size: 1.2rem;
}
.network-claim-page__match_location_container {
  flex-grow: 1;
}
.network-claim-page__match_location_table_container {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  font-size: 16px;
}
.network-claim-page--suggested-matches__container {
  display: flex;
  flex-direction: column;
  max-height: 40rem;
  overflow-y: auto;
  width: 100%;
  margin-top: 1.6rem;
  padding: 0.4rem;
  padding-bottom: 1.6rem;
  gap: 1.6rem;
}
.network-claim-page--suggested-matches__match-container {
  display: flex;
  flex-direction: row;
  padding: 0.8rem 1.6rem;
  border-radius: 0.8rem;
  gap: 1.6rem;
  background-color: #fff;
  box-shadow: var(--shadow-card);
}
.network-claim-page--suggested-matches__match-container input {
  margin-right: 0 !important;
}
.network-claim-page--suggested-matches__locations-container {
  flex-grow: 1;
  display: grid;
  grid-template-columns: auto 1fr 2fr 2fr 3fr 2fr 2fr 2fr auto;
  column-gap: 0.8rem;
}
.network-claim-page--suggested-matches__location-icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0 1.2rem;
}
.network-claim-page--suggested-matches__divider {
  grid-column: 1 / -1;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  border-top: 1px solid var(--color-neutral-border);
}
.network-claim-page__disabled {
  opacity: 0.5;
  pointer-events: none;
}
.bing-claim-page--chain-section__container {
  display: block;
}
.bing-claim-page--chain-section__row {
  display: flex;
  width: 100%;
}
.bing-claim-page--chain-section__row--child {
  flex-grow: 1;
}
.bing-claim-page--chain-section__row--child--left {
  margin-right: 1.6rem;
}
.bing-claim-page--create-section__disabled {
  pointer-events: none;
  opacity: 0.5;
  user-select: none;
}
.google-matches td.pmt-ui-table__row-more-content {
  padding: 0 !important;
  margin: 0;
}
.google-matches .pmt-ui-table__row-more-reason {
  padding: 0;
  margin: 0;
}
.google-matches .pmt-ui-table__row-more-content .pmt-ui-table__table-container {
  margin-bottom: 0;
  margin-left: auto;
}
.google-matches .pmt-ui-table__row-more-content .pmt-ui-table__row {
  background: #fafafa;
}
.google-matches .pmt-ui-table__row-more-content .pmt-ui-table__thead .pmt-ui-table__cell {
  background: #fafafa;
}
.google-matches .pmt-ui-table__row-more-content .pmt-ui-table__row:last-child {
  border-bottom: 1px solid var(--color-border-2);
}
.google-matches__distance {
  display: inline-block;
  width: 100%;
  text-align: right;
}
.google-matches__summary {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-right: var(--spacing-4xl);
  margin-bottom: var(--spacing-xl);
}
.google-matches__tab-content {
  margin-top: var(--spacing-xl);
}
.google-matches__empty {
  display: block;
  margin-top: var(--spacing-xl);
}
.google-matches__status--duplicate {
  color: var(--color-error);
}
.google-matches__status--open {
  color: var(--color-success);
}
.google-matches__status--temp-closed {
  color: var(--color-warning);
}
.google-matches__status--closed {
  color: var(--color-error);
}
.google-matches__error-tooltip-content {
  white-space: normal;
  overflow-wrap: anywhere;
}
.google-matches__row-more-inner {
  float: right;
}
.google-matches .pmt-ui-table__add-more {
  text-align: left;
  width: fit-content;
  position: sticky;
  left: 0;
  -webkit-position: sticky;
}
.google-suggested-matches__container {
  display: grid;
  grid-template-columns: auto auto auto auto minmax(auto, 1fr) auto auto auto auto auto auto;
  column-gap: 2rem;
  row-gap: 1.6rem;
  max-height: 40rem;
  overflow: auto;
  width: max-content;
  margin-top: 1.6rem;
  padding: 0.4rem 0.4rem 0.4rem;
}
.google-suggested-matches__match-container {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: subgrid;
  grid-template-rows: auto auto auto;
  column-gap: 1.6rem;
  row-gap: 0.4rem;
  padding: 0.8rem 1.6rem;
  border-radius: 0.8rem;
  background-color: #fff;
  box-shadow: var(--shadow-card);
}
.google-suggested-matches__match-container > :first-child {
  grid-column: 1;
  grid-row: 1 / -1;
  align-self: center;
}
.google-suggested-matches__match-container input {
  margin-right: 0 !important;
}
.google-suggested-matches__locations-container {
  display: contents;
}
.google-suggested-matches__divider {
  grid-column: 2 / -1;
  grid-row: 2;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  border-top: 1px solid var(--color-neutral-border);
}
.chain-section {
  max-width: 64rem;
}
.chain-section--max-width {
  max-width: 50rem;
}
.chain-section__search-form .pmt-ui-input {
  max-width: 50rem;
  flex: 1 1 auto;
  min-width: 0;
}
.chain-section__card {
  border: 1px solid var(--color-neutral-border);
  border-radius: 8px;
  flex: 1 1 auto;
  min-width: 0;
  padding: var(--spacing-sm) var(--spacing-md);
}
.chain-section__name {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.chain-section__language-code {
  font-size: 0.75em;
}
.chain-section__no-results-title {
  font-weight: 500;
}
.chain-section__linked-placeholder {
  height: 48px;
  max-width: 50rem;
}
.chain-section__result-placeholder {
  height: 48px;
  max-width: 50rem;
}
.third-party-links-button {
  color: var(--color-main-navigation);
}
.third-party-links-button:hover {
  cursor: pointer;
}
.action-link-overflow {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #46a7dd;
}
.action-link-type {
  color: black;
}
.action-link-third-party-description {
  margin-bottom: 1em;
}
.google-attributes {
  margin-top: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}
.google-attributes__rows {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: var(--spacing-sm);
}
.google-attributes__rows + .google-attributes__rows {
  border-top: 1px solid var(--color-neutral-border);
  padding-top: var(--spacing-lg);
}
.google-attributes__row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: var(--spacing-sm);
}
.google-attributes__row--remove {
  cursor: pointer;
  margin-top: var(--spacing-xs);
}
.google-attributes__boolean-value,
.google-attributes__enum-value {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: var(--spacing-sm);
}
.google-attributes__repeated-enum-value {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: var(--spacing-xs);
}
.google-attributes__repeated-enum-selected {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: var(--spacing-sm);
}
.networks-log__table--dark table tr th {
  color: var(--color-neutral-background) !important;
}
.networks-log__table--dark table tr td:first-child {
  color: var(--color-neutral-background) !important;
}
.networks-log__table--dark table tr td {
  color: var(--color-neutral-background) !important;
}
.media-approval__title {
  font-size: 1.4rem;
  line-height: 2rem;
  color: var(--color-neutral-foreground-1);
  margin-top: 3rem;
}
.media-approval__content {
  width: 100%;
  margin-top: var(--spacing-xl);
}
.media-approval__buttons {
  display: flex;
  gap: var(--spacing-lg);
}
.media-approval__section {
  margin-top: var(--spacing-4xl);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.4px;
}
.media-approval__section h2 {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.15px;
}
.media-approval__section h3 {
  font-size: 12px;
  font-weight: 700;
}
.media-approval__section p {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.4px;
}
.media-approval__section__last {
  margin-bottom: var(--spacing-xl);
}
.media-approval__show-more {
  text-align: center;
}
.media-approval__items {
  display: flex;
  flex-direction: row;
  flex-basis: start;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  padding: 0;
  margin-top: var(--spacing-lg);
}
.media-approval__items li {
  list-style: none;
}
.media-approval__item {
  list-style-type: none;
  padding-right: var(--spacing-sm);
}
.media-approval__item:last-child {
  margin-right: 0;
}
.media-approval__img {
  cursor: pointer;
  width: 100px;
  height: 100px;
  margin-bottom: var(--spacing-sm);
}
.media-approval__img--cover {
  width: 180px;
  height: 100px;
}
.media-approval__img__network {
  text-transform: capitalize;
}
.no-approvals a {
  margin-top: var(--spacing-sm);
}
.image-info-preview__content {
  display: flex;
  flex-direction: row;
  width: 65%;
  gap: var(--spacing-xl);
  padding-bottom: var(--spacing-xxl);
  padding-left: var(--spacing-xxl);
}
.image-info-preview__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.image-info-preview__info__container {
  padding-right: var(--spacing-xxl);
  padding-top: var(--spacing-lg);
  display: flex;
  flex-direction: row;
  width: 100%;
}
.image-info-preview__info__title-col {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  white-space: nowrap;
  overflow: hidden;
  padding-right: var(--spacing-xl);
  color: var(--color-neutral-foreground-2);
}
.image-info-preview__info__value-col {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  overflow: hidden;
  gap: var(--spacing-lg);
  padding-bottom: var(--spacing-sm);
  color: var(--color-neutral-foreground-1);
}
.add-assets {
  display: flex;
  flex-direction: column;
  padding: var(--spacing-xl);
  color: var(--color-neutral-foreground-2);
  font-size: 1.8rem;
  gap: 2.4rem;
}
.add-assets__drop-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 3px dashed var(--color-neutral-border);
  padding: 3.2rem;
  gap: 0.8rem;
  border-radius: 0.8rem;
}
.add-assets__drop-box--hover {
  border: 3px dashed var(--color-main-navigation);
  background-color: var(--color-main-navigation-05);
}
.add-assets__assets-container {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.add-assets__assets-container i {
  cursor: pointer;
}
.add-assets__assets-container i:hover {
  color: var(--color-red);
}
.add-assets__row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1.6rem;
  padding-right: 2.4rem;
}
.add-assets__image {
  width: 8rem;
  height: 8rem;
  object-fit: contain;
}
.add-assets__asset {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.4rem;
}
.add-assets__button-container {
  display: flex;
  flex-direction: row;
  justify-content: right;
  gap: 1.6rem;
  margin-top: 1.6rem;
}
.add-assets__asset-info {
  display: flex;
  flex-direction: column;
}
.add-assets__asset-title {
  font-size: 1.6rem;
}
.add-assets__asset-metadata {
  font-size: 1.4rem;
  color: var(--color-hover-grey);
}
.add-assets__asset-metadata--hidden {
  visibility: hidden;
}
.add-assets__asset-metadata--invalid {
  color: red;
}
.listings-drop-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 3px dashed var(--color-neutral-border);
  padding: 3.2rem;
  gap: 0.8rem;
  border-radius: 0.8rem;
}
.listings-drop-zone--hover {
  border: 3px dashed var(--color-main-navigation);
  background-color: var(--color-main-navigation-05);
}
@keyframes skeleton-loading {
  0% {
    background-color: #f5f5f5;
  }
  100% {
    background-color: #e2e2e2;
  }
}
pmt-rating .pmt-rating__value-numeric {
  font-size: inherit;
}
.location-info-pane__container {
  box-sizing: border-box;
  width: 100%;
  max-height: calc(100vh - 150px);
  border-top: 1px solid var(--color-border-1);
  border-left: 1px solid var(--color-border-1);
  border-top-left-radius: 8px;
  overflow: hidden;
  background-color: #fff;
}
.location-info-pane__scroll {
  height: 100%;
  max-height: inherit;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: var(--spacing-lg);
  padding-right: var(--spacing-xl);
  padding-bottom: var(--spacing-lg);
  padding-left: var(--spacing-xl);
  scrollbar-width: thin;
}
.location-info-pane__icon--container {
  font-size: 4rem;
  padding-left: 1.2rem;
  padding-bottom: 0.8rem;
  line-height: 0;
}
.location-info-pane__map--container {
  position: relative;
  padding-bottom: var(--spacing-sm);
  overflow: hidden;
  border-radius: 8px;
}
.location-info-pane__map--shadow::before {
  pointer-events: none;
  background:
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(255, 255, 255, 0) 25%);
  height: 100%;
  width: 100%;
  position: absolute;
  content: "";
  border-radius: 8px;
  overflow: hidden;
  z-index: 2;
}
.location-info-pane__map--shadow {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.location-info-pane__network-icons {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: var(--spacing-lg);
  padding-top: var(--spacing-sm);
  padding-bottom: var(--spacing-sm);
}
.location-info-pane__network-icons .location-info-pane__icon--container {
  font-size: 4rem;
  padding-left: 0;
  padding-bottom: 0;
  line-height: 0;
}
.location-info-pane__media--container {
  display: flex;
  flex-direction: column;
  padding-top: var(--spacing-lg);
  gap: var(--spacing-sm);
}
.location-info-pane__media--image-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--spacing-lg);
}
.location-info-pane__media--item {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}
.location-info-pane__media--item img {
  border-radius: 8px;
  width: 40px;
  height: 40px;
  object-fit: cover;
}
.location-info-pane__media--empty {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  background-color: var(--color-border-1);
  border-radius: 8px;
  width: 100%;
  font-weight: 400;
  font-size: 14px;
}
.location-info-pane__media--empty-icon {
  flex: 0 0 auto;
}
.location-info-pane__media--empty-text {
  flex: 1 1 auto;
}
.location-info-pane__media--empty-action {
  flex: 0 0 auto;
}
.location-info-pane__data-completeness--container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-sm);
  padding-bottom: var(--spacing-sm);
}
.location-info-pane__data-completeness--progress-bar {
  max-width: 50%;
}
.location-info-pane__status-reviews-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-md);
  padding-top: var(--spacing-sm);
  padding-bottom: var(--spacing-sm);
}
.location-info-pane__rating-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1.2rem;
  gap: var(--spacing-xs);
}
.location-info-pane-title__container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  padding-bottom: var(--spacing-sm);
}
.location-info-pane-title__store-id-line {
  display: flex;
  flex-direction: row;
  gap: 0.4rem;
  align-items: center;
}
.location-info-pane-title__storefront-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.location-info-pane-address__container {
  display: grid;
  grid-template-columns: fit-content(100%) 1fr;
  grid-template-rows: repeat(4, fit-content(100%));
  column-gap: 2.4rem;
  row-gap: var(--spacing-xs);
  padding-top: var(--spacing-sm);
  padding-bottom: var(--spacing-sm);
  border-bottom: 1px solid var(--color-border-1);
  border-top: 1px solid var(--color-border-1);
}
.location-info-pane-navigation__container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 1.6rem;
}
.location-info-pane-navigation__item {
  padding-left: var(--spacing-lg);
  padding-bottom: var(--spacing-sm);
  padding-top: var(--spacing-sm);
  color: var(--color-neutral-ink);
  border-left: 1px solid var(--color-border-1);
}
.location-info-pane-navigation__item a {
  color: var(--color-neutral-ink);
}
.location-info-pane-navigation__item a:hover {
  color: var(--color-main-navigation);
}
.location-info-pane-navigation__item-with-icon {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-sm);
  align-items: center;
}
.location-info-pane-navigation__active {
  border-left: 2px solid var(--color-main-navigation);
}
.location-info-pane-navigation__anchor {
  display: block;
  position: relative;
  top: -250px;
  visibility: hidden;
}
.pmt-dashboard {
  padding-left: var(--spacing-xxl);
  padding-right: var(--spacing-xxl);
  padding-top: var(--spacing-xxs);
  max-width: 150rem;
}
.pmt-dashboard__highlight__container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}
.pmt-dashboard__highlight__container .pmt-ui-card {
  box-shadow: none;
  border: 1px solid var(--color-border-1);
}
.pmt-dashboard__highlight__item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-width: 30rem;
}
.pmt-dashboard__highlight__item > * {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pmt-dashboard__highlight__item > * > * {
  flex: 1;
}
.pmt-dashboard__highlight__item__full-height {
  height: 100%;
}
.pmt-dashboard__insights__container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}
.pmt-dashboard__insights__container .pmt-ui-card {
  box-shadow: none;
  border: 1px solid var(--color-border-1);
}
.pmt-dashboard__insights__item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-width: 30rem;
}
.pmt-dashboard__insights__item > * {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pmt-dashboard__insights__item > * > *:last-child {
  flex: 1;
}
.pmt-dashboard__todos-card-container .pmt-ui-card {
  border: 1px solid var(--color-border-2);
  padding: 2.4rem;
}
.pmt-dashboard__todos {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  max-height: 32rem;
  overflow-y: auto;
  margin: 0;
  padding: 0;
}
.pmt-dashboard__todos-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: var(--spacing-lg);
}
.pmt-dashboard__todos-title {
  display: flex;
  align-items: center;
}
.pmt-dashboard__todos-title i {
  font-size: 1.6rem;
  margin-right: 1.4rem;
  margin-left: 0.6rem;
}
.pmt-dashboard__todo {
  display: flex;
  align-items: center;
  padding: 0.8rem 1.6rem 0.8rem 1.6rem;
  border-radius: 0.6rem;
  background: white;
  margin-bottom: 1.2rem;
}
.pmt-dashboard__todo__icon {
  font-size: 1.2rem;
  margin-right: 1.6rem;
}
.pmt-dashboard__todo__desc {
  font-size: 1.6rem;
  color: var(--color-neutral-foreground-1);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pmt-dashboard__todo--high {
  color: var(--color-red-60);
}
.pmt-dashboard__todo--medium {
  color: var(--color-secondary-warning-graphs);
}
.pmt-dashboard__todo--low {
  color: var(--color-main-brand);
}
.pmt-dashboard__todo--info {
  color: #f38bf0;
}
.pmt-dashboard__todo:hover:not(.pmt-dashboard__todo__empty-state) {
  cursor: pointer;
  background: #daedf8;
}
.pmt-dashboard__todo__empty-state {
  display: flex;
  flex-direction: column;
  align-items: baseline;
}
.pmt-dashboard__todo__empty-state--header {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}
.pmt-dashboard__todo__empty-state--content {
  display: flex;
  color: var(--color-neutral-foreground-2);
  font-size: 1.6rem;
}
.pmt-dashboard__card {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: space-between;
}
.pmt-dashboard__card__container .pmt-ui-card {
  min-height: 11.5rem;
  max-height: 35rem;
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
  padding-left: var(--spacing-xxl);
  padding-right: var(--spacing-xxl);
}
.pmt-dashboard__card__container .pmt-ui-card .pmt-ui-card__header {
  padding-bottom: 0;
}
.pmt-dashboard__card__red-text {
  color: var(--color-error);
}
.pmt-dashboard__card__total {
  vertical-align: text-bottom;
  color: var(--color-neutral-foreground-2);
}
.pmt-dashboard__card__link {
  color: var(--color-main-navigation);
  text-decoration: none;
}
.pmt-dashboard__card__link:hover {
  text-decoration: underline;
}
.pmt-dashboard__card__loading {
  border-radius: var(--radius-lg);
  width: 100%;
}
.pmt-dashboard__card__loading__highlight {
  height: 12.5rem;
}
.pmt-dashboard__gauge {
  justify-content: center;
  flex: 1;
}
.pmt-dashboard__gauge__link-container {
  display: flex;
  justify-content: center;
  margin-top: 2.4rem;
}
.pmt-dashboard__gauge-full {
  height: 18rem;
}
.pmt-dashboard__chart-container {
  display: flex;
  flex-direction: column;
  height: 80%;
  justify-content: center;
  align-items: center;
}
.pmt-dashboard__chart-container > * {
  min-height: 0;
  flex: 1;
}
.pmt-dashboard__chart-and-link-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.pmt-dashboard__insights-card .pmt-ui-card {
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
  padding-left: var(--spacing-xxl);
  padding-right: var(--spacing-xxl);
}
.pmt-dashboard__card-with-link-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.pmt-dashboard__card-with-link-content .pmt-dashboard__gauge {
  flex: 1;
}
.pmt-dashboard__card-with-link-content .pmt-conflict-summary {
  flex: 0 0 auto;
}
.pmt-dashboard__data-completeness {
  max-width: 90rem;
}
.pmt-dashboard__data-completeness__field-list {
  grid-gap: 0.8rem 1rem;
}
.pmt-dashboard__data-completeness__page-list {
  grid-gap: 0.8rem 2.4rem;
  grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
}
.pmt-dashboard__data-completeness__row-container {
  display: flex;
  flex-direction: row;
  margin-bottom: 2.4rem;
}
.pmt-dashboard__data-completeness__column-container {
  width: 50%;
}
.pmt-dashboard__rounded-border {
  border-radius: 0.6rem;
}
.pmt-dashboard__red-border {
  border: 1px solid var(--color-error);
  border-radius: 0.6rem;
}
.pmt-brand-management__image-cropper__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: var(--spacing-lg);
  gap: var(--spacing-md);
}
.pmt-brand-management__image-cropper__cropper {
  width: 100%;
  height: 100%;
}
.pmt-brand-management__image-cropper__radio-buttons {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-lg);
  justify-content: center;
}
.pmt-brand-management__image-cropper__saving-image-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: var(--spacing-sm);
  padding-top: var(--spacing-xxl);
  align-items: center;
  justify-content: center;
}
.pmt-brand-management__search-bar-container {
  padding-bottom: var(--spacing-xxl);
  padding-left: var(--spacing-lg);
  max-width: 60%;
}
.pmt-brand-management__page-container {
  padding-left: var(--spacing-xxl);
}
.pmt-brand-management__conflict-button-container {
  padding-top: var(--spacing-md);
}
.pmt-brand-management__page-title {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  padding-bottom: var(--spacing-xl);
  padding-left: var(--spacing-sm);
  color: var(--color-neutral-foreground-1);
}
.pmt-brand-management__page-title h1 {
  font-weight: 400;
  font-size: 22px;
  color: var(--color-neutral-foreground-1);
}
.pmt-brand-management__page-title h2 {
  font-weight: 400;
  font-size: 16px;
  color: var(--color-neutral-foreground-1);
}
.pmt-brand-management__google-brand_list {
  display: flex;
  flex-direction: column;
  max-width: 80%;
  padding-left: var(--spacing-lg);
  gap: calc(var(--spacing-xl) + var(--spacing-lg));
}
.pmt-brand-management__facebook-brand_list {
  display: flex;
  flex-direction: column;
  max-width: 80%;
  padding-left: var(--spacing-lg);
  gap: var(--spacing-xl);
}
.pmt-brand-management__brand_card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--spacing-xl);
}
.pmt-brand-management__brand-card-container {
  display: flex;
  flex-direction: column;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}
.pmt-brand-management__brand-card-title {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--spacing-xs);
  padding-bottom: var(--spacing-md);
  width: 100%;
}
.pmt-brand-management__brand-card-title div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--spacing-xl);
}
.pmt-brand-management__brand-card-title h3 {
  color: var(--color-neutral-foreground-1);
}
.pmt-brand-management__brand-card-title p {
  color: var(--color-neutral-foreground-2);
}
.pmt-brand-management__webhook-info {
  display: flex;
  flex-direction: row;
  justify-content: center;
  border: 0.5px solid var(--color-red);
  border-radius: var(--radius-sm);
  gap: var(--spacing-xl);
  padding: var(--spacing-sm) var(--spacing-xl);
}
.pmt-brand-management__webhook-info__disabled {
  display: none;
}
.pmt-brand-management__brand-card-media-information {
  display: flex;
  flex-direction: column;
}
.pmt-brand-management__brand-card-media-information-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.pmt-brand-management__brand-card-media-information-row-number__disabled {
  color: var(--color-text-disabled);
}
.pmt-brand-management__media-info-container {
  display: flex;
  flex-direction: column;
}
.pmt-brand-management__brand-link a {
  color: var(--color-main-navigation);
  font-weight: 400;
}
.pmt-brand-management__brand-media-info__container {
  position: relative;
  max-width: 292px;
  gap: var(--spacing-md);
}
.pmt-brand-management__brand-media-info__container__text {
  color: var(--color-hover-grey);
  font-size: 12px;
}
.pmt-brand-management__brand-media-info__brand-page-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: var(--spacing-md);
}
.pmt-brand-management__brand-media-info__cover-container {
  position: relative;
  width: 292px;
  height: 128px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.pmt-brand-management__brand-media-info__cover-container:hover .pmt-brand-management__brand-media-info__cover {
  cursor: pointer;
  -webkit-filter: blur(3px);
  filter: blur(3px);
}
.pmt-brand-management__brand-media-info__cover-container:hover .pmt-brand-management__brand-media-info__cover__overlay {
  opacity: 1;
}
.pmt-brand-management__brand-media-info__cover {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-sm);
  transition: filter 0.3s ease-in-out;
  object-fit: cover;
}
.pmt-brand-management__brand-media-info__cover-not-owner {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-sm);
  transition: filter 0.3s ease-in-out;
}
.pmt-brand-management__brand-media-info__cover__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  font-size: 24px;
  font-weight: 400;
  color: white;
  pointer-events: none;
}
.pmt-brand-management__brand-media-info__edit-container {
  display: flex;
  flex-direction: row;
  background: rgba(36, 36, 36, 0.7);
  align-items: center;
  border-radius: var(--radius-sm);
  padding: var(--spacing-sm);
  gap: var(--spacing-md);
}
.pmt-brand-management__brand-media-info__profile-container {
  position: absolute;
  z-index: 2;
  width: 73px;
  height: 73px;
  top: 85px;
  left: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pmt-brand-management__brand-media-info__profile-container:hover .pmt-brand-management__brand-media-info__profile__overlay {
  opacity: 1;
}
.pmt-brand-management__brand-media-info__profile-container:hover .pmt-brand-management__brand-media-info__profile__facebook {
  cursor: pointer;
  -webkit-filter: blur(3px);
  filter: blur(3px);
}
.pmt-brand-management__brand-media-info__profile-container:hover .pmt-brand-management__brand-media-info__profile__google {
  cursor: pointer;
  -webkit-filter: blur(3px);
  filter: blur(3px);
}
.pmt-brand-management__brand-media-info__profile__overlay {
  position: absolute;
  border-radius: 100%;
  color: white;
  font-size: 14px;
  font-weight: bold;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
.pmt-brand-management__brand-media-info__profile__facebook {
  border-radius: 100%;
  width: 100%;
  height: 100%;
  transition: filter 0.3s ease-in-out;
  object-fit: cover;
  background: var(--color-neutral-background);
}
.pmt-brand-management__brand-media-info__profile__google {
  border-radius: 100%;
  width: 100%;
  height: 100%;
  transition: filter 0.3s ease-in-out;
  object-fit: cover;
  background: var(--color-neutral-background);
}
.pmt-brand-management__brand-media-info__profile__not-owner {
  border-radius: 100%;
  width: 100%;
  height: 100%;
  transition: filter 0.3s ease-in-out;
  object-fit: cover;
  background: var(--color-neutral-background);
}
.pmt-brand-management__reset-media-lightbox-title {
  display: flex;
  flex-direction: column;
  padding-left: var(--spacing-xxl);
  gap: var(--spacing-sm);
}
.pmt-brand-management__reset-media-lightbox-title h1 {
  font-weight: 400;
  font-size: 22px;
  color: var(--color-neutral-foreground-1);
}
.pmt-brand-management__reset-media-lightbox-title h3 {
  font-weight: 400;
  font-size: 16px;
  color: var(--color-neutral-foreground-1);
}
.pmt-brand-management__reset-media-lightbox-container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}
.pmt-brand-management__reset-media-lightbox-table-container {
  padding-right: var(--spacing-xl);
  padding-left: var(--spacing-xl);
  gap: var(--spacing-sm);
}
.pmt-brand-management__reset-media-lightbox-footer {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin-top: var(--spacing-xs);
  margin-bottom: var(--spacing-xs);
  margin-right: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  gap: var(--spacing-sm);
}
.pmt-brand-management__reset-media-lightbox-image-preview {
  width: 50px;
  height: 50px;
  border: solid 0.5px #d1d1d1;
}
.pmt-brand-management__file-uploader-container {
  display: flex;
  flex-direction: column;
  padding: var(--spacing-xl);
  gap: var(--spacing-lg);
  height: 100%;
}
.pmt-brand-management__file-uploader-footer {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-lg);
  justify-content: flex-end;
}
.pmt-brand-management__file-uploader-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  overflow-y: scroll;
  min-height: 80%;
}
.pmt-brand-management__file-uploader-item {
  position: relative;
  display: flex;
  padding: var(--spacing-xs);
  flex-direction: row;
  align-items: center;
  cursor: pointer;
}
.pmt-brand-management__file-uploader-item__error-text {
  color: #ee3e23;
  font-size: 12px;
}
.pmt-brand-management__file-uploader-item__warning-text {
  color: var(--color-secondary-warning);
  font-size: 12px;
}
.pmt-brand-management__file-uploader-item__text-disabled {
  color: var(--color-text-disabled);
}
.pmt-brand-management__file-uploader-item__disabled {
  cursor: not-allowed;
}
.pmt-brand-management__file-uploader-item__disabled-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(36, 36, 36, 0.02);
  border-radius: var(--radius-sm);
  z-index: 4;
}
.pmt-brand-management__file-uploader-item img {
  width: 80px;
  height: 80px;
  border: solid 0.5px #d1d1d1;
  object-fit: contain;
}
.pmt-brand-management__file-uploader-item__title {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  gap: var(--spacing-xs);
  padding-left: var(--spacing-sm);
}
.pmt-brand-management__file-uploader-item__title div {
  padding-top: var(--spacing-sm);
}
.pmt-brand-management__file-uploader-item__upload-info {
  padding-left: var(--spacing-sm);
  font-weight: 500;
}
.pmt-brand-management__file-uploader-header {
  padding-left: var(--spacing-xl);
}
.pmt-add-location {
  display: flex;
  flex-direction: column;
  padding: 0 var(--spacing-xl);
  size: 2.4rem;
  margin-bottom: var(--spacing-xl);
  gap: var(--spacing-5xl);
}
.pmt-add-location__section {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}
.pmt-add-location__section--hidden {
  display: none;
}
.pmt-add-location__section-subheading {
  font-size: 2rem;
  line-height: 2.8rem;
}
.pmt-add-location__section-heading {
  font-size: 2rem;
  line-height: 2.8rem;
  border-bottom: 2px solid var(--color-neutral-border);
  padding-bottom: 0.1em;
  margin-bottom: 1em;
  width: calc(60rem + 2 * var(--spacing-xl) + 16rem);
}
.pmt-add-location__row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--spacing-xl);
}
.pmt-add-location__cell {
  min-width: 30rem;
}
.pmt-add-location__row--full-width {
  width: calc(60rem + 2 * var(--spacing-xl) + 16rem);
}
.pmt-add-location__errorDisplay {
  padding-bottom: 2.5rem;
}
.pmt-add-location__opening-date {
  display: flex;
  flex-direction: column;
}
.pmt-add-location__opening-date button {
  margin-top: var(--spacing-xs);
  margin-left: -8px;
}
.pmt-add-location__char-counter {
  font-size: 1.4rem;
  text-align: right;
  color: #858585;
  position: absolute;
  bottom: 2px;
  right: 8px;
  margin: 0;
  pointer-events: none;
}
.pmt-add-location__charcount--over {
  color: var(--color-red);
}
.pmt-add-location__field {
  position: relative;
}
.pmt-add-location__get-from-address-button-container {
  padding-top: var(--spacing-xs);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pmt-add-location__map-container {
  width: calc(60rem + 2 * var(--spacing-xl) + 16rem);
  max-width: 100%;
  margin-top: var(--spacing-md);
}
.pmt-add-location__text {
  letter-spacing: 0.25px;
  padding-bottom: var(--spacing-sm);
}
.pmt-add-location .service-areas-container {
  margin-top: var(--spacing-md);
  gap: 0.8rem;
}
.pmt-add-location .service-areas-container i {
  cursor: pointer;
}
.pmt-add-location .service-areas-container i:hover {
  color: var(--color-red);
}
.pmt-add-location__service-areas-info-container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  width: calc(60rem + 2 * var(--spacing-xl) + 16rem);
}
.pmt-add-location__phone-info-disclaimer {
  margin-top: var(--spacing-sm);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  width: calc(60rem + 2 * var(--spacing-xl) + 16rem);
}
.pmt-add-location > .pmt-add-location__section > .pmt-ui-open-hours > .pmt-ui-open-hours__totals {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
}
.pmt-add-location > .pmt-add-location__section > .pmt-ui-open-hours > .pmt-ui-open-hours__totals > .total {
  display: flex;
  flex-direction: row;
  background-color: white;
  border-bottom: 1px solid var(--color-neutral-border);
}
.pmt-add-location > .pmt-add-location__section > .pmt-ui-open-hours > .pmt-ui-open-hours__totals > .total > .total__day,
.pmt-add-location > .pmt-add-location__section > .pmt-ui-open-hours > .pmt-ui-open-hours__totals > .total .total__time-span {
  font-size: 1.4rem;
  line-height: 2rem;
}
.pmt-add-location > .pmt-add-location__section > .pmt-ui-open-hours > .pmt-ui-open-hours__totals > .total > .total__day {
  width: 20rem;
  justify-self: left;
}
.pmt-add-location > .pmt-add-location__section > .pmt-ui-open-hours > .pmt-ui-open-hours__totals > .total > .total__time-span {
  justify-self: right;
}
.pmt-add-location > .pmt-add-location__section > .pmt-ui-open-hours > .pmt-ui-open-hours__totals > button:last-child {
  margin-top: var(--spacing-sm);
  align-self: start;
}
.pmt-add-location > .pmt-add-location__section > .pmt-ui-open-hours > .pmt-ui-open-hours__edit {
  font-size: 1.4rem;
  line-height: 2rem;
}
.pmt-add-location > .pmt-add-location__section > .pmt-ui-open-hours > .pmt-ui-open-hours__edit > .pmt-ui-table .pmt-ui-table__cell {
  padding-left: 0;
}
.pmt-add-location > .pmt-add-location__section > .pmt-ui-open-hours > .pmt-ui-open-hours__edit div h2 {
  margin-top: 1rem;
  font-size: 2rem;
}
.pmt-add-location > .pmt-add-location__section > .pmt-ui-open-hours > .pmt-ui-open-hours__edit div > .open-hours-edit {
  background-color: white;
  padding-left: 0;
}
.pmt-add-location > .pmt-add-location__section > .pmt-ui-open-hours > .pmt-ui-open-hours__edit div > .open-hours-edit h3 {
  font-size: 1.8rem;
  justify-self: start;
  margin-bottom: 0.5rem;
}
.pmt-add-location > .pmt-add-location__section > .pmt-ui-open-hours > .pmt-ui-open-hours__edit div > .open-hours-edit__section > .time-span-edit > .time-edit > i {
  font-style: normal;
  align-self: center;
}
.pmt-add-location > .pmt-add-location__section > .pmt-ui-open-hours > .pmt-ui-open-hours__edit div > .open-hours-edit__section > .time-span-edit span.time-span-edit__separator {
  align-self: center;
}
.pmt-listings-autocomplete {
  box-sizing: border-box;
  position: relative;
}
.pmt-listings-autocomplete > .pmt-listings-input {
  outline: none;
  border: 0.1rem solid #cdcdcd;
  color: var(--color-neutral-foreground-2);
  background: none;
  width: 100%;
  padding: 0.6rem 1.2rem 0.6rem 1.2rem;
  border-radius: 8px;
  line-height: inherit;
}
.pmt-listings-autocomplete > .pmt-listings-input::placeholder {
  color: var(--color-neutral-foreground-disabled);
}
.pmt-listings-autocomplete .pmt-listings-input.error {
  border-color: #c4314b;
}
.pmt-listings-autocomplete .pmt-listings-input.error:focus,
.pmt-listings-autocomplete .pmt-listings-input.error:focus-visible {
  outline: none;
  border-color: #D32F2F;
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.25);
}
.pmt-listings-autocomplete__label {
  color: var(--color-neutral-foreground-2);
  display: block;
}
.pmt-listings-autocomplete > .pmt-listings-input:focus {
  border: 1px solid var(--color-main-navigation);
  width: 100%;
  border-radius: 5px;
  padding: 6px 12px;
  outline: none;
}
.pmt-listings-autocomplete .pmt-listings-autocomplete--results-container {
  position: absolute;
  left: 0;
  right: 0;
  background: #fff;
  padding: 0;
  border: 1px solid #ebebeb;
  border-top: none;
  z-index: 1;
  overflow: auto;
  max-height: 200px;
}
.pmt-listings-autocomplete .pmt-listings-autocomplete--results-container ul {
  border: 1px solid #ebebeb;
  list-style: none;
  padding: 0.3em 0 0 0;
  margin: 0;
}
.pmt-listings-autocomplete .pmt-listings-autocomplete--results-container li {
  padding: 0 1em;
  cursor: pointer;
}
.pmt-listings-autocomplete .pmt-listings-autocomplete--results-container li:hover {
  background: #daedf8;
}
.pmt-listings-autocomplete .pmt-listings-autocomplete--results-container .selected {
  background: #daedf8;
}
.pmt-api-documentation {
  padding-left: 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  font-size: 1.6rem;
  max-width: 100rem;
}
.pmt-api-documentation__header-section {
  display: flex;
  flex-direction: column;
}
.pmt-api-documentation__header-title {
  font-weight: 400;
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}
.pmt-api-documentation__header-description-container {
  max-width: 70rem;
  font-weight: 400;
  font-size: 1.6rem;
}
.pmt-api-documentation__use-cases-section {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.pmt-api-documentation__use-case-section {
  display: flex;
  padding: 2.4rem;
  gap: 4.4rem;
}
.pmt-api-documentation__use-case-section__title {
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}
.pmt-api-documentation__use-case-section__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pmt-api-documentation__additional-feature-section {
  display: flex;
  padding: 2.4rem;
  gap: 4.4rem;
}
.pmt-api-documentation__additional-feature-section__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pmt-api-documentation__additional-features-title {
  color: var(--color-neutral-foreground-1);
  font-size: 2.8rem;
  font-weight: 400;
  border-bottom: 1px solid var(--color-neutral-border);
  margin-bottom: 0.8rem;
}
.pmt-api-documentation a {
  text-decoration: underline;
}
.pmt-locator-landing-page {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: #fff;
  overflow-y: auto;
  color: var(--color-neutral-foreground);
}
.pmt-locator-landing-page .app__section:nth-child(2n) {
  background-color: #fcfcfc;
}
.pmt-locator-landing-page .main-image {
  flex: 0 1 45%;
  max-width: 45%;
  max-height: 41rem;
  height: auto;
  object-fit: contain;
  align-self: flex-start;
}
.pmt-locator-landing-page .locator-gif {
  max-width: 55rem;
  margin: 6rem auto;
}
.pmt-locator-landing-page .locator-gif img {
  border-radius: 2%;
}
.pmt-locator-landing-page__highlight {
  font-weight: 500;
  color: #f6451e;
}
.pmt-locator-landing-page__container {
  display: flex;
  gap: 20px;
  margin: 4.6rem auto 2rem auto;
  padding: 0 3rem;
  max-width: 120rem;
}
.pmt-locator-landing-page__middle-container {
  margin: 3.6rem auto;
  padding: 0 3rem;
  max-width: 120rem;
}
.pmt-locator-landing-page .dot-separator {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.5rem 0;
}
.pmt-locator-landing-page .dot-separator span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-neutral-border, #ccc);
}
.pmt-locator-landing-page__interest-button {
  margin-right: 2rem;
}
.pmt-locator-landing-page__content {
  flex-grow: 1;
  margin-left: 10rem;
}
.pmt-locator-landing-page__content--title {
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 2em;
  line-height: 1.43rem;
  font-size: 1.1rem;
}
.pmt-locator-landing-page__content--title-text {
  font-size: 1.43rem;
}
.pmt-locator-landing-page__content--header {
  font-size: 44px;
  line-height: 4.5rem;
  color: var(--color-neutral-foreground);
  margin-bottom: 2rem;
  font-weight: 600;
  max-width: 45rem;
}
.pmt-locator-landing-page__content--link {
  color: var(--color-neutral-foreground-1);
  text-decoration: underline;
}
.pmt-locator-landing-page__content--subtitle {
  color: var(--color-neutral-foreground-1);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  padding-right: 8rem;
  max-width: 45rem;
}
.pmt-locator-landing-page__content--note {
  color: var(--color-neutral-foreground-2);
  margin-top: 44px;
}
.pmt-locator-landing-page__content--buttons {
  margin-block: 2rem;
}
.pmt-locator-landing-page__content__supported-networks {
  display: flex;
  align-items: center;
  margin: 1rem 0 1rem 0;
}
.pmt-locator-landing-page__content__supported-networks span {
  display: flex;
  align-items: center;
  margin-left: 4px;
}
.pmt-locator-landing-page__content__supported-networks .pmt-icon--svg:last-child {
  margin-top: 1px;
}
.pmt-locator-landing-page__content__supported-networks--text {
  font-size: 15px;
  font-style: italic;
  color: #686868;
}
.pmt-locator-landing-page .introduction-container {
  max-width: 150rem !important;
  padding: 3rem !important;
}
.pmt-locator-landing-page .chat {
  display: flex;
  gap: 4.8rem;
  align-items: center;
  justify-content: space-between;
  margin: 2rem auto;
}
.pmt-locator-landing-page .chat h1 {
  max-width: 52ch;
}
.pmt-locator-landing-page__confirmation-popup {
  padding: 0 4rem;
}
.pmt-locator-landing-page__confirmation-popup--title {
  color: var(--color-neutral-foreground);
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: 1.955rem;
  line-height: 2.48rem;
}
.pmt-locator-landing-page__confirmation-popup--icon {
  font-size: 3.6rem;
  text-align: center;
  color: #686868;
}
.pmt-locator-landing-page__confirmation-popup--content {
  font-weight: 400;
  font-size: 1.24rem;
  line-height: 1.77rem;
  letter-spacing: 0.25px;
  color: var(--color-neutral-foreground-1);
}
.pmt-locator-landing-page__confirmation-popup--content span {
  color: var(--color-neutral-foreground-1);
  text-decoration: underline;
  cursor: pointer;
}
.pmt-locator-landing-page__confirmation-popup span {
  color: #1070cf;
}
.pmt-locator-landing-page__interested-note {
  font-size: 1.43rem;
}
.pmt-locator-landing-page__no-thanks {
  display: flex;
  justify-content: center;
  margin-top: var(--size-20);
}
.pmt-locator-landing-page .pmt-landing-page-footer {
  padding-bottom: var(--size-36);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: center;
  text-align: center;
  flex-basis: 100%;
}
.pmt-locator-landing-page .pmt-landing-page-footer__brands {
  margin-top: var(--size-36);
  flex-direction: row;
  justify-content: space-evenly;
}
.pmt-locator-landing-page .pmt-landing-page-footer__brands img {
  height: 100%;
}
.pmt-locator-landing-page .pmt-ui-lightbox__container--medium {
  width: 90%;
  max-width: 100%;
  height: 86%;
  max-height: 100%;
}
.pmt-locator-landing-page .done-button {
  display: flex;
  justify-content: flex-end;
  padding-bottom: var(--size-8);
  padding-right: var(--size-24);
}
.pmt-locator-landing-page .locator-lp-header {
  position: relative;
  top: -40px;
  padding-left: 15px;
  padding-top: 15px;
  padding-bottom: 10px;
}
.pmt-locator-landing-page .locator-lp-header .center {
  display: inline-flex;
  align-items: center;
}
.pmt-locator-landing-page .locator-lp-header img {
  margin-right: 1rem;
}
.pmt-locator-landing-page .locator-lp-card {
  flex-basis: 100%;
  gap: var(--size-28);
  display: flex;
  flex-direction: column;
}
.pmt-locator-landing-page .locator-lp-card .box {
  max-width: 50%;
  margin: 0 auto;
  text-align: center;
}
.pmt-locator-landing-page .locator-lp-card .box h1 {
  color: var(--color-neutral-foreground-1);
  margin-bottom: var(--size-12);
}
.pmt-locator-landing-page .locator-lp-card .box p {
  color: var(--color-neutral-foreground-2);
}
.pmt-locator-landing-page .flex {
  display: flex;
}
.pmt-locator-landing-page .flex-center {
  display: flex;
  flex-grow: 1;
  justify-content: center;
}
.pmt-locator-landing-page .locator-lp-product-title {
  margin: var(--size-20) auto;
  font-size: 28px;
  font-weight: normal;
  color: var(--color-neutral-foreground-1);
  max-width: 70rem;
  text-align: center;
}
.pmt-locator-landing-page .locator-lp-introduction {
  flex-basis: 100%;
  gap: 20px;
  display: flex;
  text-align: center;
}
.pmt-locator-landing-page .locator-lp-introduction .content {
  flex: 1;
  max-width: 25%;
  box-sizing: border-box;
  padding: 0 14px;
}
.pmt-locator-landing-page .locator-lp-introduction .divider {
  border-right-style: solid;
  border-width: 1px;
  border-color: lightblue;
}
.pmt-locator-landing-page .locator-lp-introduction .icon {
  font-size: 50px;
  color: var(--color-main-navigation);
}
.pmt-locator-landing-page .locator-lp-introduction .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background-color: #eaf3f9;
  padding: 20px;
  border-radius: 40%;
}
.pmt-locator-landing-page .locator-lp-introduction h1 {
  margin: 2rem 0 1rem 0;
  color: var(--color-neutral-foreground-1);
}
.pmt-locator-landing-page .locator-lp-introduction p {
  color: var(--color-neutral-foreground-2);
  font-size: 1.4rem;
}
.pmt-locator-landing-page .flex-basis {
  flex-basis: 100%;
}
.pmt-locator-landing-page .flex-wrap {
  flex-wrap: wrap;
}
.pmt-locator-landing-page .locator-lp-cta-note {
  color: var(--color-neutral-foreground-2);
}
.pmt-locator-landing-page .locator-ctas-note-container {
  text-align: center;
  margin: 20px 0;
  color: var(--color-neutral-foreground-2);
}
.pmt-locator-landing-page .pmt-locator-landing-gray-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 3rem 3rem 3rem;
  max-width: 120rem;
  margin: 0 auto;
}
.pmt-locator-landing-page .pmt-locator-landing-gray-container .pmt-locator-landing-cta-wrapper {
  margin-bottom: var(--size-44);
}
.pmt-locator-landing-page .pmt-locator-landing-cta-note-wrapper {
  flex-basis: 100%;
  flex-wrap: wrap;
  display: flex;
  flex-grow: 1;
  justify-content: center;
  margin-top: var(--size-12);
}
.pmt-locator-landing-page .pmt-locator-landing-cta-icon i {
  font-size: smaller;
  margin-left: 0.7rem;
}
.pmt-local-campaign-landing-page {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: #fff;
  overflow-y: auto;
  color: var(--color-neutral-foreground);
}
.pmt-local-campaign-landing-page .app__section:nth-child(2n) {
  background-color: #fcfcfc;
}
.pmt-local-campaign-landing-page__main-image {
  flex: 0 1 45%;
  max-width: 45%;
  max-height: 30rem;
  height: auto;
  object-fit: contain;
  align-self: flex-start;
}
.pmt-local-campaign-landing-page__promo-wrapper {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  margin: 0 auto;
}
.pmt-local-campaign-landing-page__promo {
  flex: 0 0 45%;
  text-align: right;
}
.pmt-local-campaign-landing-page__promo img {
  border-radius: 2%;
  max-height: 40rem;
}
.pmt-local-campaign-landing-page__highlight {
  font-weight: 500;
  color: #f6451e;
}
.pmt-local-campaign-landing-page__container {
  display: flex;
  gap: 20px;
  margin: 4.6rem auto 2rem auto;
  padding: 0 3rem;
  max-width: 120rem;
}
.pmt-local-campaign-landing-page__middle-container {
  margin: 3.6rem auto;
  padding: 0 3rem;
  max-width: 120rem;
}
.pmt-local-campaign-landing-page__dot-separator {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 5rem 0;
}
.pmt-local-campaign-landing-page__dot-separator span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-neutral-border, #ccc);
}
.pmt-local-campaign-landing-page__interest-button {
  margin-right: 2rem;
}
.pmt-local-campaign-landing-page__content {
  flex-grow: 1;
  margin-left: 10rem;
}
.pmt-local-campaign-landing-page__content-title {
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 2em;
  line-height: 1.43rem;
  font-size: 1.1rem;
}
.pmt-local-campaign-landing-page__content-title-text {
  font-size: 1.43rem;
}
.pmt-local-campaign-landing-page__content-header {
  font-size: 30px;
  line-height: 4.5rem;
  color: var(--color-neutral-foreground);
  margin-bottom: 2rem;
  font-weight: 600;
  max-width: 45rem;
}
.pmt-local-campaign-landing-page__content-link {
  color: var(--color-neutral-foreground-1);
  text-decoration: underline;
}
.pmt-local-campaign-landing-page__content-subtitle {
  color: var(--color-neutral-foreground-1);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  max-width: 45rem;
}
.pmt-local-campaign-landing-page__content-note {
  color: var(--color-neutral-foreground-2);
  margin-top: 44px;
}
.pmt-local-campaign-landing-page__content-buttons {
  margin-block: 2rem;
}
.pmt-local-campaign-landing-page__supported-networks {
  display: flex;
  align-items: center;
  margin: 1rem 0 1rem 0;
}
.pmt-local-campaign-landing-page__supported-networks span {
  display: flex;
  align-items: center;
  margin-left: 4px;
}
.pmt-local-campaign-landing-page__supported-networks .pmt-icon--svg:last-child {
  margin-top: 1px;
}
.pmt-local-campaign-landing-page__supported-networks-text {
  font-size: 15px;
  font-style: italic;
  color: #686868;
}
.pmt-local-campaign-landing-page__introduction-container {
  max-width: 150rem !important;
  padding: 3rem !important;
}
.pmt-local-campaign-landing-page__chat {
  display: flex;
  gap: 4.8rem;
  align-items: center;
  justify-content: space-between;
  margin: 2rem auto;
}
.pmt-local-campaign-landing-page__chat h1 {
  max-width: 52ch;
}
.pmt-local-campaign-landing-page__confirmation-popup {
  padding: 0 4rem;
}
.pmt-local-campaign-landing-page__confirmation-popup span {
  color: #1070cf;
}
.pmt-local-campaign-landing-page__confirmation-popup-title {
  color: var(--color-neutral-foreground);
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: 1.955rem;
  line-height: 2.48rem;
}
.pmt-local-campaign-landing-page__confirmation-popup-icon {
  font-size: 3.6rem;
  text-align: center;
  color: #686868;
}
.pmt-local-campaign-landing-page__confirmation-popup-content {
  font-weight: 400;
  font-size: 1.24rem;
  line-height: 1.77rem;
  letter-spacing: 0.25px;
  color: var(--color-neutral-foreground-1);
}
.pmt-local-campaign-landing-page__confirmation-popup-content span {
  color: var(--color-neutral-foreground-1);
  text-decoration: underline;
  cursor: pointer;
}
.pmt-local-campaign-landing-page__interested-note {
  font-size: 1.43rem;
}
.pmt-local-campaign-landing-page__no-thanks {
  display: flex;
  justify-content: center;
  margin-top: var(--size-20);
}
.pmt-local-campaign-landing-page__footer {
  padding-bottom: var(--size-36);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: center;
  text-align: center;
  flex-basis: 100%;
}
.pmt-local-campaign-landing-page__footer-brands {
  margin-top: var(--size-36);
  flex-direction: row;
  justify-content: space-evenly;
}
.pmt-local-campaign-landing-page__footer-brands img {
  height: 100%;
}
.pmt-local-campaign-landing-page .pmt-ui-lightbox__container--medium {
  width: 90%;
  max-width: 100%;
  height: 86%;
  max-height: 100%;
}
.pmt-local-campaign-landing-page__done-button {
  display: flex;
  justify-content: flex-end;
  padding-bottom: var(--size-8);
  padding-right: var(--size-24);
}
.pmt-local-campaign-landing-page__header {
  position: relative;
  top: -40px;
  padding-left: 15px;
  padding-top: 15px;
  padding-bottom: 10px;
}
.pmt-local-campaign-landing-page__header img {
  margin-right: 1rem;
}
.pmt-local-campaign-landing-page__header-center {
  display: inline-flex;
  align-items: center;
}
.pmt-local-campaign-landing-page__card {
  flex: 1;
  gap: var(--size-28);
  display: flex;
  flex-direction: column;
}
.pmt-local-campaign-landing-page__card-item {
  text-align: left;
}
.pmt-local-campaign-landing-page__card-item h1 {
  color: var(--color-neutral-foreground-1);
  margin-bottom: var(--size-12);
}
.pmt-local-campaign-landing-page__card-item p {
  color: var(--color-neutral-foreground-2);
}
.pmt-local-campaign-landing-page .flex {
  display: flex;
}
.pmt-local-campaign-landing-page .flex-center {
  display: flex;
  flex-grow: 1;
  justify-content: center;
}
.pmt-local-campaign-landing-page__product-title {
  margin: var(--size-20) 0;
  font-size: 28px;
  font-weight: normal;
  color: var(--color-neutral-foreground-1);
}
.pmt-local-campaign-landing-page__introduction {
  flex-basis: 100%;
  gap: 20px;
  display: flex;
  text-align: center;
}
.pmt-local-campaign-landing-page__introduction-item {
  flex: 1;
  max-width: 25%;
  box-sizing: border-box;
  padding: 0 14px;
}
.pmt-local-campaign-landing-page__introduction-item h1 {
  margin: 2rem 0 1rem 0;
  color: var(--color-neutral-foreground-1);
}
.pmt-local-campaign-landing-page__introduction-item p {
  color: var(--color-neutral-foreground-2);
  font-size: 1.4rem;
}
.pmt-local-campaign-landing-page__introduction-item--divider {
  border-right-style: solid;
  border-width: 1px;
  border-color: lightblue;
}
.pmt-local-campaign-landing-page__introduction-icon {
  font-size: 50px;
  color: var(--color-main-navigation);
}
.pmt-local-campaign-landing-page__introduction-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background-color: #eaf3f9;
  padding: 20px;
  border-radius: 40%;
}
.pmt-local-campaign-landing-page .flex-basis {
  flex-basis: 100%;
}
.pmt-local-campaign-landing-page .flex-wrap {
  flex-wrap: wrap;
}
.pmt-local-campaign-landing-page__cta-note {
  color: var(--color-neutral-foreground-2);
}
.pmt-local-campaign-landing-page__cta-note-container {
  text-align: center;
  margin: 20px 0;
  color: var(--color-neutral-foreground-2);
}
.pmt-local-campaign-landing-page__gray-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 3rem 3rem 3rem;
  max-width: 120rem;
  margin: 0 auto;
}
.pmt-local-campaign-landing-page__cta-wrapper {
  margin-bottom: var(--size-44);
}
.pmt-local-campaign-landing-page__cta-note-wrapper {
  flex-basis: 100%;
  flex-wrap: wrap;
  display: flex;
  flex-grow: 1;
  justify-content: center;
  margin-top: var(--size-12);
}
.pmt-local-campaign-landing-page__cta-icon i {
  font-size: smaller;
  margin-left: 0.7rem;
}
.modern .pmt-locations__header:before,
.modern .pmt-locations__header:after {
  content: " ";
  display: table;
}
.modern .pmt-locations__header:after {
  clear: both;
}
.modern .pmt-locations__cta,
.modern .pmt-locations__search-field {
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.modern .pmt-locations__search-field {
  float: left;
  width: 50%;
  margin-top: 3rem;
  margin-bottom: 2rem;
}
.modern .pmt-locations__cta {
  float: right;
  line-height: 1.5;
}
.modern .pmt-locations__top {
  display: flex;
  justify-content: flex-start;
}
.modern .pmt-locations__filter {
  margin-top: 1rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}
.modern .pmt-locations__help {
  clear: both;
  display: block;
  line-height: 1;
  text-align: right;
}
.modern .pmt-locations__viewing {
  font-size: 1em;
  line-height: 1;
  font-weight: 500;
}
.modern .pmt-location-creator .form__input {
  padding: 2rem 1rem;
  border-bottom: none;
}
.modern .pmt-location-creator .form__input .select2-container {
  margin-top: 0.55em;
}
.modern .pmt-location-creator .form__input .select2-container .select2-choice {
  padding: 0.5em 1em;
  height: auto;
  line-height: 2;
}
.modern .pmt-location-creator .l-flex {
  display: flex;
  flex-wrap: wrap;
  margin: 0 2rem;
  margin-bottom: 4rem;
}
.modern .pmt-location-creator .l-flex__33,
.modern .pmt-location-creator .l-flex__50,
.modern .pmt-location-creator .l-flex__75,
.modern .pmt-location-creator .l-flex__100 {
  min-width: 260px;
}
.modern .pmt-location-creator .l-flex__100 {
  margin: 0 1rem;
  flex-grow: 1;
  flex-basis: 100%;
}
.modern .pmt-location-creator .l-flex__75 {
  margin: 0 1rem;
  flex-grow: 1;
  flex-basis: 100%;
}
@media screen and (min-width: 641px) {
  .modern .pmt-location-creator .l-flex__75 {
    flex-basis: 70%;
  }
}
.modern .pmt-location-creator .l-flex__50 {
  margin: 0 1rem;
  flex-grow: 1;
  flex-basis: 100%;
}
@media screen and (min-width: 641px) {
  .modern .pmt-location-creator .l-flex__50 {
    flex-basis: 40%;
  }
}
.modern .pmt-location-creator .l-flex__33 {
  margin: 0 1rem;
  flex-grow: 1;
  flex-basis: 100%;
}
@media screen and (min-width: 641px) {
  .modern .pmt-location-creator .l-flex__33 {
    flex-basis: 30%;
  }
}
.modern .pmt-location-creator .service-area-error {
  margin-left: 1rem;
}
.modern .pmt-location-creator .location-type-container {
  margin: 0 0 2rem 0;
}
.modern .pmt-location-creator .location-type {
  font-weight: bold;
}
.modern .pmt-location-creator .location-type input[type=radio] {
  -ms-transform: scale(1.5);
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  margin-right: 1rem;
}
.modern .pmt-location-creator .location-type__p {
  margin-left: 2.5em;
  color: #999;
}
.modern .pmt-location-creator .service-area__bing-note {
  padding-left: 2.25em;
}
.modern .pmt-location-creator .service-area-option__container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  padding: 0em 2em;
  margin-bottom: 4rem;
}
.modern .pmt-location-creator .service-area-option p {
  color: #adadad;
  max-width: 28em;
  align-items: center;
}
.modern .pmt-location-creator .service-area-option label {
  display: flex;
}
.modern .pmt-location-creator .service-area-option .location-type-container {
  margin: 0em 0.5em;
}
.modern .pmt-location-creator .service-area-option .radio {
  margin-right: 0.5em;
}
.modern .pmt-location-creator .service-area-option .radio input {
  margin-top: 0.3em;
  width: 1em;
  height: 1em;
}
.modern .pmt-location-creator .service-area-option .text__container {
  display: flex;
  flex-direction: column;
}
.modern .pmt-location-creator .service-area__note {
  padding: 0em 3em 1em 3em;
}
@media (max-width: 1165px) {
  .modern .pmt-location-creator .service-area-option__container {
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
  }
  .modern .pmt-location-creator .service-area-option p {
    max-width: 30em;
  }
  .modern .pmt-location-creator .service-area-option label {
    margin-bottom: 1.5em;
  }
}
.modern .text-highligt-warning {
  background: #ffec7c none repeat scroll 0 0;
  color: #000;
}
.legacy {
}
.legacy html,
.legacy body {
  height: 100%;
  background: none repeat scroll 0 0 whitesmoke;
  overflow: hidden;
  color: #4b575c;
  font-size: 14px;
  line-height: 1.42857;
}
.legacy ol,
.legacy li {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}
.legacy h1,
.legacy h2,
.legacy h3,
.legacy h4,
.legacy h5 {
  margin: 0;
  padding: 0;
  font-weight: 500;
}
.legacy h1 {
  font-size: 36px;
  padding: 10px 0 0 0;
  margin-bottom: 20px;
}
.legacy h2 {
  font-size: 1.5em;
}
.legacy h3 {
  font-size: 24px;
}
.legacy h4 {
  font-size: 18px;
}
.legacy h5 {
  text-transform: uppercase;
  border-bottom: 1px solid #dddddd;
}
.legacy input {
  border-style: none none solid;
  border-width: 1px;
  border: solid 1px #DADFE3;
  font-size: 1.4em;
  font-weight: 400;
  padding: 0.5em;
}
.legacy input[type=text],
.legacy input[type=password],
.legacy input[type=email],
.legacy input[type=tel] {
  width: 100%;
  background-color: #ffffff;
  background-image: none;
  border-color: -moz-use-text-color -moz-use-text-color #cccccc;
  border-style: none none solid;
  border-width: 0 0 1px;
  border-radius: 0px;
  box-shadow: 0 0 0;
  color: #697b83;
  display: block;
  font-size: 14px;
  height: 34px;
  line-height: 1.42857;
  padding: 6px 12px;
  transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
}
.legacy input[type=text]:focus,
.legacy input[type=password]:focus,
.legacy input[type=email]:focus,
.legacy input[type=tel]:focus {
  background-color: #ffffcc;
  border: 0 none;
}
.legacy textarea {
  max-width: 100%;
}
.legacy select,
.legacy input[type=number] {
  width: 50%;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  border-radius: 3px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
  color: #697b83;
  display: block;
  font-size: 14px;
  height: 34px;
  line-height: 1.42857;
  padding: 6px 12px;
  transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
}
.legacy input[type=number] {
  width: 100%;
}
.legacy button {
  color: #333;
  -moz-user-select: none;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857;
  margin-bottom: 0;
  padding: 6px 12px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
.legacy button[disabled=disabled],
.legacy button:disabled {
  pointer-events: none;
  color: #c0c0c0;
  background-color: #ffffff;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.legacy input[type=submit] {
  background: none repeat scroll 0 0 #00adff;
  color: #fff;
  display: inline;
  font-weight: 400;
}
.legacy a {
  text-decoration: none;
  text-transform: none;
  color: #0097de;
}
.legacy a:hover {
  color: #2cbbff;
}
.legacy hr {
  color: #d6d6d6;
  background-color: #d6d6d6;
  height: 1px;
  border: 0 none;
}
.legacy p {
  margin: 0 0 10px;
}
.legacy table {
  max-width: 100%;
  width: 100%;
  background-color: transparent;
  border-collapse: collapse;
  border-spacing: 0;
}
.legacy table > tbody > tr > td,
.legacy table > tbody > tr > th,
.legacy table > tfoot > tr > td,
.legacy table > tfoot > tr > th,
.legacy table > thead > tr > td,
.legacy table > thead > tr > th {
  border-top: 1px solid #ddd;
  line-height: 1.42857;
  padding: 8px;
  vertical-align: top;
}
.legacy * {
  box-sizing: border-box;
}
.legacy fieldset {
  padding: 0;
  margin: 0;
  border: none;
}
.legacy .pointer {
  cursor: pointer;
}
.legacy .relative {
  position: relative;
}
.legacy .absolute {
  position: absolute;
}
.legacy .fixed {
  position: fixed;
}
.legacy .inline {
  display: inline;
}
.legacy .right {
  float: right;
}
.legacy .left {
  float: left;
}
.legacy .clear {
  clear: both;
}
.legacy .box-1-4 {
  min-height: 1px;
  width: 23%;
  min-width: 200px;
  margin-right: 2%;
}
.legacy .box-2-4 {
  min-height: 1px;
  width: 48%;
  min-width: 250px;
  margin-right: 2%;
}
.legacy .box-3-4 {
  min-height: 1px;
  width: 75%;
  min-width: 250px;
}
.legacy .box-4-4 {
  min-height: 1px;
  width: 100%;
  min-width: 250px;
}
.legacy .btn {
  color: #333;
  -moz-user-select: none;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857;
  margin-bottom: 0;
  padding: 6px 12px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
.legacy .btn:hover {
  border-color: #adadad;
}
.legacy .btn-primary {
  color: #333;
  -moz-user-select: none;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857;
  margin-bottom: 0;
  padding: 6px 12px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  background-color: #0097de;
  border-color: #0085c4;
  color: #fff;
}
.legacy .btn-primary:hover {
  color: #ffffff;
  background-color: #0074ab;
  border-color: #005c87;
}
.legacy .btn-fb-login {
  color: #333;
  -moz-user-select: none;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857;
  margin-bottom: 0;
  padding: 6px 12px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  padding: 12px 12px;
  background-color: #2c4b9f;
  border-color: #0085c4;
  color: #ffffff;
}
.legacy .btn-fb-login-text {
  padding: 0px 30px;
  font-weight: 500;
}
.legacy .btn .disabled,
.legacy .btn-primary:disabled {
  cursor: none;
  -webkit-opacity: 0.65;
  -moz-opacity: 0.65;
  opacity: 0.65;
}
.legacy .btn-danger {
  background-color: #ff6661;
  color: #fff;
}
.legacy .label {
  border-radius: 0.25em;
  color: #fff;
  display: inline;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  padding: 0.2em 0.6em 0.3em;
  text-align: center;
  vertical-align: baseline;
  white-space: nowrap;
  background-color: #8c9ca3;
}
.legacy .label-danger {
  border-radius: 0.25em;
  color: #fff;
  display: inline;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  padding: 0.2em 0.6em 0.3em;
  text-align: center;
  vertical-align: baseline;
  white-space: nowrap;
  background-color: #8c9ca3;
  background-color: #ffb0ae;
}
.legacy .label-warning {
  border-radius: 0.25em;
  color: #fff;
  display: inline;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  padding: 0.2em 0.6em 0.3em;
  text-align: center;
  vertical-align: baseline;
  white-space: nowrap;
  background-color: #8c9ca3;
  background-color: #ffb44b;
}
.legacy .label-info {
  border-radius: 0.25em;
  color: #fff;
  display: inline;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  padding: 0.2em 0.6em 0.3em;
  text-align: center;
  vertical-align: baseline;
  white-space: nowrap;
  background-color: #8c9ca3;
  background-color: #65dafd;
}
.legacy .label-success {
  border-radius: 0.25em;
  color: #fff;
  display: inline;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  padding: 0.2em 0.6em 0.3em;
  text-align: center;
  vertical-align: baseline;
  white-space: nowrap;
  background-color: #8c9ca3;
  background-color: #6df56d;
}
.legacy .label-primary {
  border-radius: 0.25em;
  color: #fff;
  display: inline;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  padding: 0.2em 0.6em 0.3em;
  text-align: center;
  vertical-align: baseline;
  white-space: nowrap;
  background-color: #8c9ca3;
}
.legacy .alert-container {
  height: 20px;
}
.legacy .alert {
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 15px;
}
.legacy .alert-success {
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 15px;
  background-color: #6df56d;
  border-color: #d6e9c6;
}
.legacy .alert-info {
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 15px;
  background-color: #65dafd;
  border-color: #bce8f1;
  color: #31708f;
}
.legacy .alert-warning {
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 15px;
  background-color: #ffb44b;
  border-color: #faebcc;
  color: #8a6d3b;
}
.legacy .alert-danger {
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 15px;
  background-color: #ffb0ae;
  border-color: #ebccd1;
  color: #940500;
}
.legacy .list-item {
  border-bottom: 1px solid #dddddd;
}
.legacy .list-item:hover {
  background-color: #f5f5f5;
}
.legacy .list-item.nohover:hover {
  background-color: inherit;
}
.legacy .list-row {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 20px;
  padding-bottom: 25px;
}
.legacy .list-row .inline-row {
  display: inline;
  margin-right: 1em;
}
.legacy .list-row.seperator {
  background-color: #f5f5f5;
}
.legacy .list-row-compact-noborder {
  vertical-align: top;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.legacy .list-row-compact {
  vertical-align: top;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 6px;
  padding-bottom: 6px;
  border-top: 1px solid #dddddd;
}
.legacy .required {
  color: #ffb0ae;
}
.legacy .input-error.has-errors {
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 15px;
  background-color: #ffb0ae;
  border-color: #ebccd1;
  color: #940500;
}
.legacy input.hours {
  width: 80px;
  display: inline;
  margin-bottom: 8px;
}
.legacy .fade.ng-leave {
  transition: 0.5s linear all;
  opacity: 1;
}
.legacy .fade.ng-leave.ng-leave-active {
  opacity: 0;
}
.legacy .fade-in.ng-enter {
  transition: 0.5s linear all;
  opacity: 0;
}
.legacy .fade-in.ng-enter.ng-enter-active {
  opacity: 1;
}
.legacy .fa-triangle-exclamation {
  color: #ffb44b;
}
.legacy .fa-foursquare {
  color: #ff3366;
}
.legacy .fa-facebook,
.legacy .fa-facebook-official {
  color: #336699;
}
.legacy .fa-facebook-official.white {
  color: #ffffff;
}
.legacy .fa-google {
  color: #4687f4;
}
.legacy .fa-circle-info {
  color: #ffb44b;
}
.legacy .fa-circle-info__small {
  font-size: 0.6em;
}
.legacy .sub-header {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 9px;
  margin: 40px 0 20px;
}
.legacy .error-container {
  border: solid 2px red;
  padding: 5px 2px;
}
.legacy .error-message {
  color: red;
}
.legacy .text-right {
  text-align: right;
}
.legacy .text-center {
  text-align: center;
}
.legacy .action {
  cursor: pointer;
}
.legacy .hidden {
  visibility: hidden;
}
.legacy .success {
  color: #6df56d;
}
.legacy .warning {
  color: #ffb44b;
}
.legacy .center {
  margin-left: auto;
  margin-right: auto;
}
.legacy .data-print-warning {
  padding-right: 10px;
}
.legacy .map-icon-style {
  width: 95px;
  height: 95px;
  z-index: 0;
}
.legacy .text-highligt-warning {
  background: #ffec7c none repeat scroll 0 0;
  color: #000;
}
.legacy .panel {
  background-color: #ffffff;
  border: 1px solid #dddddd;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}
.legacy .panel__error {
  background-color: #ee3e23;
  color: white;
}
.legacy .panel-heading {
  border-bottom: 1px solid #dddddd;
  padding: 10px 15px;
}
.legacy .panel-heading h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}
.legacy .panel-td__key {
  color: #999;
}
.legacy .panel-header-cursor {
  cursor: default;
}
.legacy .panel-arrow-cursor {
  cursor: pointer;
}
.legacy .preview-table {
  display: flex;
}
.legacy .preview-special-open-hours {
  font-size: 16px;
  width: 700px;
  margin-bottom: 0;
}
.legacy .preview-row-special-open-hours {
  display: flex;
  flex-direction: row;
  max-height: 22.5px;
}
.legacy .preview-row {
  display: flex;
  flex-direction: row;
}
.legacy .preview-services {
  border-bottom: 1px solid var(--color-neutral-border);
}
.legacy .preview-cell-long {
  width: 22em;
}
.legacy .preview-cell-medium {
  word-wrap: break-word;
  width: 8em;
  margin-right: 1em;
}
.legacy .preview-cell-short {
  width: fit-content;
  min-width: 9.5em;
}
.legacy .preview-cell-arrow {
  width: 3em;
  text-align: center;
}
.legacy .panel-heading.action:hover {
  background-color: #f5f5f5;
}
.legacy .panel-heading-flexbox {
  display: flex;
  justify-content: space-between;
}
.legacy .task {
  padding: 8px;
  border-bottom: 1px solid #dddddd;
}
.legacy .task.action:hover {
  background-color: #f5f5f5;
}
.legacy .task-disabled {
  background-color: #f7f8f9;
  cursor: inherit;
  color: #8c9ca3;
}
.legacy .task-icon {
  display: inline-block;
  color: #0097de;
  width: 10%;
  text-align: center;
  float: left;
}
@media screen and (max-width: 430px) {
  .legacy .task-icon {
    display: none;
  }
}
.legacy .task-disabled .task-icon {
  color: #8c9ca3;
}
.legacy .task-button {
  margin-top: 30px;
}
.legacy .task-description {
  display: inline-block;
  width: 80%;
}
.legacy .task-description h4 {
  color: #0097de;
}
.legacy .task-disabled .task-description h4 {
  color: #8c9ca3;
}
.legacy .task-status {
  float: right;
  display: inline-block;
  width: 10%;
  text-align: center;
}
@media screen and (max-width: 430px) {
  .legacy .task-status {
    display: none;
  }
}
.legacy .task-status-rounded {
  margin-top: 10px;
  border-width: 2px;
  padding: 0.3em;
  border-radius: 100%;
}
.legacy .task-data-box-value {
  display: inline-block;
  font-size: 24px;
  font-weight: 500;
  width: 100%;
}
.legacy .task-status-error {
  border-color: #ffb0ae;
  color: #ffb0ae;
  border-style: solid;
  margin-top: 10px;
  border-width: 2px;
  padding: 0.3em;
  border-radius: 100%;
}
.legacy .task-status-warning {
  border-color: #ffb44b;
  color: #ffb44b;
  border-style: solid;
  margin-top: 10px;
  border-width: 2px;
  padding: 0.3em;
  border-radius: 100%;
}
.legacy .task-status-success {
  border-color: #6df56d;
  color: #6df56d;
  border-style: solid;
  margin-top: 10px;
  border-width: 2px;
  padding: 0.3em;
  border-radius: 100%;
}
.legacy .task-status-disabled {
  border-color: #e7e8e9;
  color: #e7e8e9;
  border-style: solid;
  margin-top: 10px;
  border-width: 2px;
  padding: 0.3em;
  border-radius: 100%;
}
.legacy .task-confirm-connections-icon {
  display: inline-block;
  color: #0097de;
  text-align: center;
  width: 130px;
}
.legacy .location-header {
  color: #0097de;
}
.legacy .location-header.disabled {
  color: #8c9ca3;
}
.legacy .clame-select-page {
  border: 1px solid #dddddd;
  padding: 10px 15px;
}
.legacy .clame-select-page-select {
  float: right;
  display: inline-block;
  width: 16.66666667%;
  text-align: right;
  padding: 20px 0;
}
.legacy .clame-select-page img {
  border: 1px solid #dddddd;
  padding: 4px;
  background-color: #f7f8f9;
  border-radius: 3px;
  height: auto;
}
.legacy .claim-download-buton {
  margin: 20px 0;
}
.legacy .clame-category-select {
}
.legacy .clame-category-select select {
  width: 100%;
  margin-bottom: 15px;
  display: inline-block;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.legacy .clame-category-select-status {
  text-align: center;
}
.legacy .clame-category-selected {
  background: #eceff0;
  border-radius: 3px;
  padding: 6px;
}
.legacy .clame-category-selected img {
  height: 23px;
  vertical-align: middle;
}
.legacy .angucomplete-holder {
  position: relative;
}
.legacy .angucomplete-dropdown {
  border-color: #ececec;
  border-width: 1px;
  border-style: solid;
  border-radius: 2px;
  width: 250px;
  padding: 6px;
  cursor: pointer;
  z-index: 5;
  position: absolute;
  margin-top: -6px;
  background-color: #ffffff;
}
.legacy .categori-match-highlight {
  color: #ff0000;
}
.legacy .angucomplete-searching {
  color: #acacac;
  font-size: 14px;
}
.legacy .angucomplete-description {
  font-size: 14px;
}
.legacy .angucomplete-row {
  padding: 5px;
  color: #000000;
  margin-bottom: 4px;
  clear: both;
}
.legacy .angucomplete-selected-row {
  background-color: lightblue;
  color: #ffffff;
}
.legacy .angucomplete-image-holder {
  padding-top: 2px;
  float: left;
  margin-right: 10px;
  margin-left: 5px;
}
.legacy .angucomplete-image {
  height: 34px;
  width: 34px;
  border-radius: 50%;
  border-color: #ececec;
  border-style: solid;
  border-width: 1px;
}
.legacy .angucomplete-image-default {
  background-position: center;
  background-size: contain;
  height: 34px;
  width: 34px;
}
.legacy .publish-network-icon {
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  width: 125px;
}
.legacy .publish-network-status {
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.legacy .publish-network-text {
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-left: 10px;
  width: 384px;
}
.legacy .pmt-gmb-chains-container {
  margin: 0;
}
.legacy .pmt-gmb-chains-search-results {
  display: flex;
  flex-direction: column;
  flex-grow: 20;
}
.legacy .pmt-gmb-chains-search-item {
  display: flex;
  align-items: center;
  min-height: 40px;
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #dddddd;
  background: linear-gradient(#fff, #fdfdfd);
  box-shadow: inset 4px 0 0 #ddd;
}
.legacy .pmt-gmb-chains-search-item:hover {
  box-shadow: inset 4px 0 0 #0097de;
  border-left-color: #0097de;
}
.legacy .pmt-gmb-chains-label {
  width: 100%;
}
.legacy .pmt-gmb-chains-radio-field {
  align-self: center;
  margin-right: 10px;
}
.legacy .pmt-gmb-chain-search-btn {
  margin-top: 10px;
}
.legacy .pmt-gmb-chain-select-btn {
  visibility: hidden;
  margin-left: auto;
}
.legacy .pmt-gmb-chain-select-btn--active {
  visibility: visible;
}
.legacy .pmt-gmb-chains-sub-label {
  display: block;
  letter-spacing: 0.025rem;
  font-weight: bold;
}
.legacy .pmt-gmb-chains-website-url {
  display: block;
}
.legacy .title-bar {
  color: #fff;
  background-color: var(--color-main-navigation);
  white-space: nowrap;
  line-height: 4rem;
}
.legacy .title-bar--clickable {
  cursor: pointer;
}
.legacy .title-bar--clickable:hover {
  color: rgba(255, 255, 255, 0.9);
}
.legacy .title-bar--clickable:hover .title-bar__widget {
  padding-right: 1.5rem;
}
.legacy .title-bar--main {
  line-height: 5rem;
}
.legacy .title-bar--main:before {
  width: 5rem;
}
.legacy .title-bar--main .title-bar__widget {
  width: 5rem;
  line-height: 4rem;
  font-size: 2.4rem;
  margin-right: 1rem;
  background: green;
}
.legacy .title-bar--main .title-bar__widget:before {
  background: red;
}
.legacy .title-bar--main .title-bar__icon {
  margin-right: 0;
  width: 5rem;
}
.legacy .title-bar--main .title-bar__title {
  font-weight: 400;
}
.legacy .title-bar--facebook {
  background-color: #336699;
}
.legacy .title-bar--foursquare {
  background-color: #ff3366;
}
.legacy .title-bar--google {
  background-color: #4687f4;
}
.legacy .title-bar--apple {
  background-color: #333;
}
.legacy .title-bar--insight {
  background-color: #5c5c5c;
}
.legacy .title-bar--insight .title-bar__icon {
  font-size: 1.6rem;
}
@media screen and (min-width: 641px) {
  .legacy .title-bar--insight .title-bar__icon {
    font-size: 1.8rem;
  }
}
.legacy .title-bar--insight .title-bar__title {
  font-weight: 400;
  font-size: 1.4rem;
}
@media screen and (min-width: 641px) {
  .legacy .title-bar--insight .title-bar__title {
    font-size: 1.8rem;
  }
}
.legacy .title-bar__icon {
  display: inline-block;
  float: left;
  font-size: 2.4rem;
  width: 4rem;
  text-align: center;
}
.legacy .title-bar__icon i {
  color: inherit;
}
.legacy .title-bar__title {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: inherit;
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (min-width: 641px) {
  .legacy .title-bar__title {
    font-size: 2.4rem;
  }
}
.legacy .title-bar__aside {
  float: right;
  display: block;
  padding: 0 1rem;
}
[pmt-view] {
  outline: none;
}
[pmt-view].container {
  padding: 0;
}
[pmt-view] [ng-show*=userIsAdmin],
[pmt-view] [ng-if*=userIsAdmin],
[pmt-view] [ng-show*="user.isAdmin"],
[pmt-view] [ng-if*="user.isAdmin"] {
  box-shadow: inset 0 0 0 2px rgba(255, 38, 0, 0.3);
}
[pmt-view] [ng-show*=userIsAdmin] .task-icon:after,
[pmt-view] [ng-if*=userIsAdmin] .task-icon:after,
[pmt-view] [ng-show*="user.isAdmin"] .task-icon:after,
[pmt-view] [ng-if*="user.isAdmin"] .task-icon:after {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  content: "\f21b";
  font-size: 1.2em;
}
pmt-elm[ng-if*=isAdmin] {
  display: block;
}
[ng-if*=isAdmin]:not(pmt-elm) {
  box-shadow: 0 0 0 2px rgba(255, 38, 0, 0.3);
  border-radius: 8px;
}
[ng-if*=isAdmin]:not(pmt-elm) [ng-if*=isAdmin] {
  border: none;
}
.pmt-admin-box {
  box-shadow: 0 0 0 2px rgba(255, 38, 0, 0.3) !important;
}
.pmt-admin-box__success {
  box-shadow: 0 0 0 2px rgba(5, 106, 0, 0.3) !important;
}
.google-review-create .pmt-ui-selector__filters {
  top: 0;
  margin-top: 0.5em;
}
.table__div-scroll {
  overflow-x: scroll;
  max-height: 65vh;
}
.table__div-scroll-networks {
  overflow-x: scroll;
  max-height: 40vh;
}
.table__div-header {
  background: white;
  position: sticky;
  top: 0;
}
.network-table-text {
  overflow-wrap: break-word;
}
.network-table-span {
  padding: 5px;
  margin-right: 10px;
}
.network-table-button-link:hover {
  box-shadow: inset 0 0 0 2px var(--color-main-navigation);
}
.network-status-info {
  padding-left: 4.5rem;
  padding-top: 1rem;
  padding-bottom: 1.5rem;
}
.pmt-ui-table__table-container {
  width: 100%;
  overflow-x: auto;
  display: block;
}
.network-bing-details {
  display: flex;
  flex-flow: column nowrap;
  overflow-wrap: break-word;
}
.network-bing-details > * {
  font-size: 1.4rem;
}
.wrap-text {
  text-wrap: wrap;
}
.success-note {
  font-size: 1.4rem;
  color: rgba(51, 51, 51, 0.8);
  display: block;
  padding-left: 0.75em;
}
.success-note:before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  margin-right: 0.3em;
  content: "\f058";
  color: #16c90e;
}
.pending-note {
  font-size: 1.4rem;
  color: rgba(51, 51, 51, 0.8);
  display: block;
  padding-left: 0.75em;
}
.pending-note:before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  margin-right: 0.3em;
  content: "\f017";
  color: var(--color-main-brand);
}
.duplicate-note {
  font-size: 1.4rem;
  color: rgba(51, 51, 51, 0.8);
  padding-left: 0.75em;
}
.duplicate-note:before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  margin-right: 0.3em;
  content: "\f06a";
  color: var(--color-secondary-warning);
}
.posts-note {
  margin-left: 3.6rem;
}
.posts-note .pmt-ui-alert--note {
  background-color: #f3f8fd;
}
.posts-note a {
  color: var(--color-main-navigation);
}
.posts-note span {
  color: var(--color-neutral-foreground-1);
}
.posts-note .fa-lightbulb-on {
  color: #f6891e;
  position: relative;
  top: -1px;
  width: 16px;
  height: 16px;
  font-size: 16px;
  line-height: 16px;
}
.posts-note .fa-arrow-up-right-from-square {
  position: relative;
  top: -2px;
  font-size: 8px;
  width: 8px;
  height: 8px;
  line-height: 8px;
  margin-left: 8px;
  color: var(--color-main-navigation);
}
/*# sourceMappingURL=places.css.map */
