/*
* Global button styling
*/
/*
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
/*
* Breakpoint debugging
*/
/*
* SASS Parent append
* Useful if you want to add an append to the parent without writing it out again
* Usage: @include parent-append(":hover")
* Source: https://codepen.io/imkremen/pen/RMVBvq
*/
/*
* Skew
* Useful mixing to create skewed edges
* Usage: @include angle-edge(bottomright, 3deg, topleft, 3deg, #fff);
* Source: http://www.hongkiat.com/blog/skewed-edges-css/
*/
.block-share-price {
  position: relative;
  margin-bottom: 3.5rem;
}
.block-share-price.no-data::before {
  content: "No data";
  position: absolute;
  inset: 0;
  height: calc(100% + 3.5rem);
  width: 100%;
  display: grid;
  place-items: center;
  background: var(--wp--preset--color--light-grey);
  font-size: var(--wp--preset--font-size--small);
  color: var(--wp--preset--color--foreground);
  z-index: 10;
  opacity: 0.8;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
.block-share-price .share-price__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.2em var(--wp--preset--spacing--small);
}
.block-share-price .share-price__title h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}
.block-share-price .share-price__title h2 [data-field=exchange] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.block-share-price .share-price__title h2 [data-field=exchange] span {
  min-width: 4ch;
}
.block-share-price .share-price__title h2 [data-field=exchange]::after {
  content: ":";
  margin: 0 0.1em;
}
.block-share-price .share-price__title h2 [data-field=symbol] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.block-share-price .share-price__title h2 [data-field=symbol] span {
  min-width: 3ch;
}
.block-share-price .share-price__title .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: var(--wp--preset--font-size--heading-2);
  color: var(--wp--preset--color--primary);
  font-weight: 500;
  line-height: 1;
  gap: 0.2em;
}
.block-share-price .share-price__title .price [data-field=current] {
  min-width: 3ch;
}
.block-share-price .share-price__title .price [data-field=currency] {
  min-width: 2ch;
}
.block-share-price .change {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: calc(100% + 0.2em);
  left: 0;
  font-size: var(--wp--preset--font-size--x-small);
  font-weight: 500;
  color: #000;
}
.block-share-price .change__value span {
  min-width: 4ch;
}
.block-share-price .change__percent span {
  min-width: 4ch;
}
.block-share-price .change__percent::before {
  content: "(";
}
.block-share-price .change__percent::after {
  content: "%)";
}
.block-share-price .skeleton {
  opacity: 0.4;
  -webkit-animation: skeleton-loading 1.5s infinite linear alternate;
          animation: skeleton-loading 1.5s infinite linear alternate;
}
.block-share-price .skeleton-text {
  display: inline-block;
  width: 100%;
  height: 100%;
  min-height: 1em;
  border-radius: 3px;
}
@-webkit-keyframes skeleton-loading {
  0% {
    background-color: hsl(200, 20%, 70%);
  }
  100% {
    background-color: hsl(200, 20%, 95%);
  }
}
@keyframes skeleton-loading {
  0% {
    background-color: hsl(200, 20%, 70%);
  }
  100% {
    background-color: hsl(200, 20%, 95%);
  }
}