/*
* Global button styling
*/
/*
* Breakpoint debugging
*/
/*
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
/*
* 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 {
  height: 100%;
  border: 1px solid var(--wp--preset--color--off-white);
  background-color: rgba(37, 38, 38, 0.65);
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.block-share-price h5 {
  color: inherit;
  margin: 0;
}
.block-share-price .meta a {
  position: relative;
}
.block-share-price .meta a svg {
  height: 1em;
  width: 1em;
  position: relative;
  top: 3px;
  left: 3px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: 0;
}
.block-share-price .meta a svg path {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.block-share-price .meta a:hover {
  text-decoration: none;
}
.block-share-price .meta a:hover svg path {
  stroke: var(--wp--preset--color--secondary);
}
.block-share-price table {
  margin: 2rem 0;
}
.block-share-price table tbody {
  border-bottom: 0;
}
.block-share-price table tbody tr {
  background: transparent !important;
}
.block-share-price table tbody td {
  font-weight: 300;
  padding: 0.5rem 1.5rem 0.5rem 0;
}
.block-share-price__data {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (min-width: 783px) {
  .block-share-price__data {
    flex-direction: column;
  }
}
.block-share-price__data p {
  font-size: var(--wp--preset--font-size--large-heading);
  font-weight: 400;
  line-height: 1;
}
.block-share-price__data_price {
  color: var(--wp--preset--color--primary);
  font-size: var(--wp--preset--font-size--huge-heading);
  font-family: var(--wp--preset--font-family--primary);
  font-weight: 600;
}
.block-share-price__list {
  padding: 0;
  margin: 0 0 4rem;
  font-size: var(--wp--preset--font-size--size-26);
  line-height: 3rem;
}
@media (min-width: 783px) {
  .block-share-price__list {
    font-size: var(--wp--preset--font-size--small-heading);
  }
}
@media (min-width: 1441px) {
  .block-share-price__list {
    font-size: var(--wp--preset--font-size--size-26);
  }
}
.block-share-price__list li {
  margin-bottom: 0;
}
