/*
* 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/
*/
/*
* TEXT TRUNCATE
* An easy way to truncate text with an ellipsis. Requires the element to be block or inline-block.
* Usage: @include text-truncate;
* Source: http://web-design-weekly.com/2013/05/12/handy-sass-mixins/
*/
/*
* DON'T BREAK
* Useful mixing so links don't overrun their container
* Usage: @include dontbreak();
* Source: https://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container/
*/
/*
* Dynamic Spacing
* A nice easy way to create a vertical rhythm for section of content
*/
.block-operations {
  padding: 0 0 60px 0;
}
@media (min-width: 1025px) {
  .block-operations {
    padding: 0 1rem 0 0;
  }
  .block-operations.right {
    padding: 0 0 0 1rem;
  }
}
@media (min-width: 1441px) {
  .block-operations {
    padding: 0 4rem 0 0;
  }
  .block-operations.right {
    padding: 0 0 0 4rem;
  }
}
.block-operations .btn {
  overflow: hidden;
  text-align: center;
  padding: 1.5rem 4rem 1.4rem 1.5rem;
  color: var(--wp--preset--color--primary);
  background: white;
  border: 1px solid var(--wp--preset--color--primary);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.4rem;
  line-height: 2.4rem;
  font-family: Inter, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  line-height: normal;
  position: relative;
  align-items: flex-start;
  display: inline-flex;
  justify-content: flex-start;
  gap: 1.5rem;
  font-weight: 700;
  min-width: 19rem;
  border-radius: 0;
  box-shadow: none;
  transition: all 0.2s ease-in-out;
  margin-top: 3rem;
  cursor: pointer;
}
.block-operations .btn:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 0.8rem solid transparent;
  border-bottom: 0.8rem solid transparent;
  border-left: 1.5rem solid var(--wp--preset--color--primary);
  position: absolute;
  right: 1.5rem;
  transition: all 250ms ease-out;
}
.block-operations .btn svg,
.block-operations .btn span {
  z-index: 2;
  position: relative;
}
.block-operations .btn svg path,
.block-operations .btn span path {
  fill: #fff;
}
.block-operations .btn svg {
  width: 25px;
  height: 25px;
  fill: #fff;
}
.block-operations .btn:hover, .block-operations .btn:active, .block-operations .btn:focus {
  text-decoration: none;
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--background);
}
.block-operations .btn:hover:after, .block-operations .btn:active:after, .block-operations .btn:focus:after {
  border-left-color: var(--wp--preset--color--background);
}
.block-operations .btn:hover svg,
.block-operations .btn:hover span, .block-operations .btn:active svg,
.block-operations .btn:active span, .block-operations .btn:focus svg,
.block-operations .btn:focus span {
  color: var(--wp--preset--color--primary);
}
.block-operations .btn:hover svg path,
.block-operations .btn:hover span path, .block-operations .btn:active svg path,
.block-operations .btn:active span path, .block-operations .btn:focus svg path,
.block-operations .btn:focus span path {
  fill: var(--wp--preset--color--primary);
}
.block-operations .btn.btn-primary, .block-operations .btn.is-style-btn-primary {
  color: var(--wp--preset--color--background);
  background: var(--wp--preset--color--primary);
}
.block-operations .btn.btn-primary path, .block-operations .btn.is-style-btn-primary path {
  fill: var(--wp--preset--color--background);
}
.block-operations .btn.btn-primary:after, .block-operations .btn.is-style-btn-primary:after {
  border-left-color: var(--wp--preset--color--background);
}
.block-operations .btn.btn-primary:hover, .block-operations .btn.btn-primary:active, .block-operations .btn.btn-primary:focus, .block-operations .btn.is-style-btn-primary:hover, .block-operations .btn.is-style-btn-primary:active, .block-operations .btn.is-style-btn-primary:focus {
  background: var(--wp--preset--color--background);
  color: var(--wp--preset--color--primary);
}
.block-operations .btn.btn-primary:hover:after, .block-operations .btn.btn-primary:active:after, .block-operations .btn.btn-primary:focus:after, .block-operations .btn.is-style-btn-primary:hover:after, .block-operations .btn.is-style-btn-primary:active:after, .block-operations .btn.is-style-btn-primary:focus:after {
  border-left-color: var(--wp--preset--color--primary);
}
.block-operations .btn.btn-primary:hover svg,
.block-operations .btn.btn-primary:hover span, .block-operations .btn.btn-primary:active svg,
.block-operations .btn.btn-primary:active span, .block-operations .btn.btn-primary:focus svg,
.block-operations .btn.btn-primary:focus span, .block-operations .btn.is-style-btn-primary:hover svg,
.block-operations .btn.is-style-btn-primary:hover span, .block-operations .btn.is-style-btn-primary:active svg,
.block-operations .btn.is-style-btn-primary:active span, .block-operations .btn.is-style-btn-primary:focus svg,
.block-operations .btn.is-style-btn-primary:focus span {
  color: var(--wp--preset--color--primary);
}
.block-operations .btn.btn-primary:hover svg path,
.block-operations .btn.btn-primary:hover span path, .block-operations .btn.btn-primary:active svg path,
.block-operations .btn.btn-primary:active span path, .block-operations .btn.btn-primary:focus svg path,
.block-operations .btn.btn-primary:focus span path, .block-operations .btn.is-style-btn-primary:hover svg path,
.block-operations .btn.is-style-btn-primary:hover span path, .block-operations .btn.is-style-btn-primary:active svg path,
.block-operations .btn.is-style-btn-primary:active span path, .block-operations .btn.is-style-btn-primary:focus svg path,
.block-operations .btn.is-style-btn-primary:focus span path {
  fill: var(--wp--preset--color--primary);
}
.block-operations .btn.btn-secondary, .block-operations .btn.is-style-btn-secondary {
  background: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--background);
}
.block-operations .btn.btn-secondary path, .block-operations .btn.is-style-btn-secondary path {
  fill: color;
}
.block-operations .btn.btn-secondary:hover, .block-operations .btn.btn-secondary:active, .block-operations .btn.btn-secondary:focus, .block-operations .btn.is-style-btn-secondary:hover, .block-operations .btn.is-style-btn-secondary:active, .block-operations .btn.is-style-btn-secondary:focus {
  background: var(--wp--preset--color--background);
  color: var(--wp--preset--color--secondary);
}
.block-operations .btn.btn-secondary:hover svg,
.block-operations .btn.btn-secondary:hover span, .block-operations .btn.btn-secondary:active svg,
.block-operations .btn.btn-secondary:active span, .block-operations .btn.btn-secondary:focus svg,
.block-operations .btn.btn-secondary:focus span, .block-operations .btn.is-style-btn-secondary:hover svg,
.block-operations .btn.is-style-btn-secondary:hover span, .block-operations .btn.is-style-btn-secondary:active svg,
.block-operations .btn.is-style-btn-secondary:active span, .block-operations .btn.is-style-btn-secondary:focus svg,
.block-operations .btn.is-style-btn-secondary:focus span {
  color: var(--wp--preset--color--secondary);
}
.block-operations .btn.btn-secondary:hover svg path,
.block-operations .btn.btn-secondary:hover span path, .block-operations .btn.btn-secondary:active svg path,
.block-operations .btn.btn-secondary:active span path, .block-operations .btn.btn-secondary:focus svg path,
.block-operations .btn.btn-secondary:focus span path, .block-operations .btn.is-style-btn-secondary:hover svg path,
.block-operations .btn.is-style-btn-secondary:hover span path, .block-operations .btn.is-style-btn-secondary:active svg path,
.block-operations .btn.is-style-btn-secondary:active span path, .block-operations .btn.is-style-btn-secondary:focus svg path,
.block-operations .btn.is-style-btn-secondary:focus span path {
  fill: var(--wp--preset--color--secondary);
}
.block-operations .btn.btn-white, .block-operations .btn.is-style-btn-white {
  background: #fff;
  color: var(--wp--preset--color--secondary);
}
.block-operations .btn.btn-white path, .block-operations .btn.is-style-btn-white path {
  fill: var(--wp--preset--color--secondary);
}
.block-operations .btn.btn-white:hover, .block-operations .btn.btn-white:active, .block-operations .btn.btn-white:focus, .block-operations .btn.is-style-btn-white:hover, .block-operations .btn.is-style-btn-white:active, .block-operations .btn.is-style-btn-white:focus {
  background: var(--wp--preset--color--secondary);
}
.block-operations .btn.btn-white:hover svg,
.block-operations .btn.btn-white:hover span, .block-operations .btn.btn-white:active svg,
.block-operations .btn.btn-white:active span, .block-operations .btn.btn-white:focus svg,
.block-operations .btn.btn-white:focus span, .block-operations .btn.is-style-btn-white:hover svg,
.block-operations .btn.is-style-btn-white:hover span, .block-operations .btn.is-style-btn-white:active svg,
.block-operations .btn.is-style-btn-white:active span, .block-operations .btn.is-style-btn-white:focus svg,
.block-operations .btn.is-style-btn-white:focus span {
  color: #fff;
}
.block-operations .btn.btn-white:hover svg path,
.block-operations .btn.btn-white:hover span path, .block-operations .btn.btn-white:active svg path,
.block-operations .btn.btn-white:active span path, .block-operations .btn.btn-white:focus svg path,
.block-operations .btn.btn-white:focus span path, .block-operations .btn.is-style-btn-white:hover svg path,
.block-operations .btn.is-style-btn-white:hover span path, .block-operations .btn.is-style-btn-white:active svg path,
.block-operations .btn.is-style-btn-white:active span path, .block-operations .btn.is-style-btn-white:focus svg path,
.block-operations .btn.is-style-btn-white:focus span path {
  fill: #fff;
}
.block-operations .btn.btn-default-no-icon, .block-operations .btn.is-style-btn-default-no-icon {
  padding: 1.5rem;
}
.block-operations .btn.btn-default-no-icon:hover span, .block-operations .btn.is-style-btn-default-no-icon:hover span {
  color: #fff;
}
.block-operations .btn.btn-default-no-icon:after, .block-operations .btn.is-style-btn-default-no-icon:after {
  display: none;
}
.block-operations .btn.btn-green-no-icon, .block-operations .btn.is-style-green-no-icon {
  padding: 1.5rem;
  color: var(--wp--preset--color--forestgreen);
  border: 1px solid var(--wp--preset--color--forestgreen);
}
.block-operations .btn.btn-green-no-icon:hover, .block-operations .btn.is-style-green-no-icon:hover {
  background-color: var(--wp--preset--color--forestgreen);
}
.block-operations .btn.btn-green-no-icon:hover span, .block-operations .btn.is-style-green-no-icon:hover span {
  color: #fff;
}
.block-operations .btn.btn-green-no-icon:after, .block-operations .btn.is-style-green-no-icon:after {
  display: none;
}
.block-operations .btn.full-width {
  display: block;
}
.block-operations .btn.aligncenter, .block-operations .btn.center {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.2s ease-in-out;
}
.block-operations .btn.btn-outline {
  background: transparent;
  border-color: var(--wp--preset--color--background);
  color: var(--wp--preset--color--background);
}
.block-operations .opeartions-heading {
  border-bottom: 2px solid var(--wp--preset--color--primary);
  padding-bottom: 1.85rem;
  margin-bottom: 3rem;
}
.block-operations .operations-intro {
  font-size: 2rem;
  line-height: 3rem;
}
@media only screen and (min-width: 781px) {
  .block-operations .operations-intro {
    min-height: 18rem;
  }
}
.block-operations .block-counter {
  text-align: center;
  padding: 20px 0;
}
.block-operations .block-counter .number-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.block-operations .block-counter span {
  font-size: 8rem;
  line-height: 8rem;
  font-weight: 800;
  color: var(--wp--preset--color--background);
  display: inline-block;
}
.block-operations .block-counter span.suffix {
  font-size: 3rem;
  line-height: 3rem;
  padding-top: 1rem;
  vertical-align: text-top;
}
.block-operations .block-counter span.countersize_m {
  font-size: 4.5rem;
}
.block-operations .block-counter span.countersize_l {
  font-size: 5.5rem;
}
.block-operations .block-counter p {
  color: var(--wp--preset--color--primary);
  padding-left: 10px;
  font-size: 2rem;
  margin: 1rem auto 0;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.1;
  max-width: 50%;
  text-align: left;
}
@media (min-width: 501px) {
  .block-operations .block-counter p {
    font-size: 2.4rem;
  }
}
@media (min-width: 781px) {
  .block-operations .block-counter p {
    font-size: 1.8rem;
    max-width: 28rem;
  }
}
@media only screen and (min-width: 781px) {
  .block-operations .block-counter p {
    text-align: center;
    padding-left: 0;
  }
}
@media (min-width: 1441px) {
  .block-operations .block-counter p {
    text-align: left;
    padding-left: 10;
  }
}
.block-operations .caml-triangle {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media only screen and (min-width: 781px) {
  .block-operations .caml-triangle {
    flex-direction: column;
  }
}
@media (min-width: 1441px) {
  .block-operations .caml-triangle {
    flex-direction: row;
  }
}

.block-operations.is-style-primary .opeartions-heading,
.operations-content.is-style-primary .opeartions-heading {
  color: var(--wp--preset--color--primary);
  border-color: var(--wp--preset--color--primary);
}
.block-operations.is-style-primary .btn,
.operations-content.is-style-primary .btn {
  border-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--primary);
  background-color: var(--wp--preset--color--background);
}
.block-operations.is-style-primary .btn:hover, .block-operations.is-style-primary .btn.active,
.operations-content.is-style-primary .btn:hover,
.operations-content.is-style-primary .btn.active {
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--background);
}
.block-operations.is-style-primary .btn:hover:after, .block-operations.is-style-primary .btn.active:after,
.operations-content.is-style-primary .btn:hover:after,
.operations-content.is-style-primary .btn.active:after {
  border-left-color: var(--wp--preset--color--background);
  transform: rotate(90deg);
}
.block-operations.is-style-primary .btn:after,
.operations-content.is-style-primary .btn:after {
  border-left-color: var(--wp--preset--color--primary);
}
.block-operations.is-style-primary .number-title,
.operations-content.is-style-primary .number-title {
  color: var(--wp--preset--color--primary);
}

.operations-content.is-style-primary {
  border-top: 6px solid var(--wp--preset--color--primary);
}
.operations-content.is-style-primary ul.is-style-branded li:before {
  border-left-color: var(--wp--preset--color--primary);
}

.block-operations.is-style-secondary .opeartions-heading,
.operations-content.is-style-secondary .opeartions-heading {
  color: var(--wp--preset--color--secondary);
  border-color: var(--wp--preset--color--secondary);
}
.block-operations.is-style-secondary .btn,
.operations-content.is-style-secondary .btn {
  border-color: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--secondary);
  background-color: var(--wp--preset--color--background);
}
.block-operations.is-style-secondary .btn:hover, .block-operations.is-style-secondary .btn.active,
.operations-content.is-style-secondary .btn:hover,
.operations-content.is-style-secondary .btn.active {
  background-color: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--background);
}
.block-operations.is-style-secondary .btn:hover:after, .block-operations.is-style-secondary .btn.active:after,
.operations-content.is-style-secondary .btn:hover:after,
.operations-content.is-style-secondary .btn.active:after {
  border-left-color: var(--wp--preset--color--background);
  transform: rotate(90deg);
}
.block-operations.is-style-secondary .btn:after,
.operations-content.is-style-secondary .btn:after {
  border-left-color: var(--wp--preset--color--secondary);
}
.block-operations.is-style-secondary .number-title,
.operations-content.is-style-secondary .number-title {
  color: var(--wp--preset--color--secondary);
}

.operations-content.is-style-secondary {
  border-top: 6px solid var(--wp--preset--color--secondary);
}
.operations-content.is-style-secondary ul.is-style-branded li:before {
  border-left-color: var(--wp--preset--color--secondary);
}

.block-operations.is-style-copper .opeartions-heading,
.operations-content.is-style-copper .opeartions-heading {
  color: var(--wp--preset--color--copper);
  border-color: var(--wp--preset--color--copper);
}
.block-operations.is-style-copper .btn,
.operations-content.is-style-copper .btn {
  border-color: var(--wp--preset--color--copper);
  color: var(--wp--preset--color--copper);
  background-color: var(--wp--preset--color--background);
}
.block-operations.is-style-copper .btn:hover, .block-operations.is-style-copper .btn.active,
.operations-content.is-style-copper .btn:hover,
.operations-content.is-style-copper .btn.active {
  background-color: var(--wp--preset--color--copper);
  color: var(--wp--preset--color--background);
}
.block-operations.is-style-copper .btn:hover:after, .block-operations.is-style-copper .btn.active:after,
.operations-content.is-style-copper .btn:hover:after,
.operations-content.is-style-copper .btn.active:after {
  border-left-color: var(--wp--preset--color--background);
  transform: rotate(90deg);
}
.block-operations.is-style-copper .btn:after,
.operations-content.is-style-copper .btn:after {
  border-left-color: var(--wp--preset--color--copper);
}
.block-operations.is-style-copper .number-title,
.operations-content.is-style-copper .number-title {
  color: var(--wp--preset--color--copper);
}

.operations-content.is-style-copper {
  border-top: 6px solid var(--wp--preset--color--copper);
}
.operations-content.is-style-copper ul.is-style-branded li:before {
  border-left-color: var(--wp--preset--color--copper);
}

.block-operations.is-style-green .opeartions-heading,
.operations-content.is-style-green .opeartions-heading {
  color: var(--wp--preset--color--green);
  border-color: var(--wp--preset--color--green);
}
.block-operations.is-style-green .btn,
.operations-content.is-style-green .btn {
  border-color: var(--wp--preset--color--green);
  color: var(--wp--preset--color--green);
  background-color: var(--wp--preset--color--background);
}
.block-operations.is-style-green .btn:hover, .block-operations.is-style-green .btn.active,
.operations-content.is-style-green .btn:hover,
.operations-content.is-style-green .btn.active {
  background-color: var(--wp--preset--color--green);
  color: var(--wp--preset--color--background);
}
.block-operations.is-style-green .btn:hover:after, .block-operations.is-style-green .btn.active:after,
.operations-content.is-style-green .btn:hover:after,
.operations-content.is-style-green .btn.active:after {
  border-left-color: var(--wp--preset--color--background);
  transform: rotate(90deg);
}
.block-operations.is-style-green .btn:after,
.operations-content.is-style-green .btn:after {
  border-left-color: var(--wp--preset--color--green);
}
.block-operations.is-style-green .number-title,
.operations-content.is-style-green .number-title {
  color: var(--wp--preset--color--green);
}

.operations-content.is-style-green {
  border-top: 6px solid var(--wp--preset--color--green);
}
.operations-content.is-style-green ul.is-style-branded li:before {
  border-left-color: var(--wp--preset--color--green);
}

.block-operations.is-style-lightblue .opeartions-heading,
.operations-content.is-style-lightblue .opeartions-heading {
  color: var(--wp--preset--color--lightblue);
  border-color: var(--wp--preset--color--lightblue);
}
.block-operations.is-style-lightblue .btn,
.operations-content.is-style-lightblue .btn {
  border-color: var(--wp--preset--color--lightblue);
  color: var(--wp--preset--color--lightblue);
  background-color: var(--wp--preset--color--background);
}
.block-operations.is-style-lightblue .btn:hover, .block-operations.is-style-lightblue .btn.active,
.operations-content.is-style-lightblue .btn:hover,
.operations-content.is-style-lightblue .btn.active {
  background-color: var(--wp--preset--color--lightblue);
  color: var(--wp--preset--color--background);
}
.block-operations.is-style-lightblue .btn:hover:after, .block-operations.is-style-lightblue .btn.active:after,
.operations-content.is-style-lightblue .btn:hover:after,
.operations-content.is-style-lightblue .btn.active:after {
  border-left-color: var(--wp--preset--color--background);
  transform: rotate(90deg);
}
.block-operations.is-style-lightblue .btn:after,
.operations-content.is-style-lightblue .btn:after {
  border-left-color: var(--wp--preset--color--lightblue);
}
.block-operations.is-style-lightblue .number-title,
.operations-content.is-style-lightblue .number-title {
  color: var(--wp--preset--color--lightblue);
}

.operations-content.is-style-lightblue {
  border-top: 6px solid var(--wp--preset--color--lightblue);
}
.operations-content.is-style-lightblue ul.is-style-branded li:before {
  border-left-color: var(--wp--preset--color--lightblue);
}

.block-operations.is-style-paleteal .opeartions-heading,
.operations-content.is-style-paleteal .opeartions-heading {
  color: var(--wp--preset--color--paleteal);
  border-color: var(--wp--preset--color--paleteal);
}
.block-operations.is-style-paleteal .btn,
.operations-content.is-style-paleteal .btn {
  border-color: var(--wp--preset--color--paleteal);
  color: var(--wp--preset--color--paleteal);
  background-color: var(--wp--preset--color--background);
}
.block-operations.is-style-paleteal .btn:hover, .block-operations.is-style-paleteal .btn.active,
.operations-content.is-style-paleteal .btn:hover,
.operations-content.is-style-paleteal .btn.active {
  background-color: var(--wp--preset--color--paleteal);
  color: var(--wp--preset--color--background);
}
.block-operations.is-style-paleteal .btn:hover:after, .block-operations.is-style-paleteal .btn.active:after,
.operations-content.is-style-paleteal .btn:hover:after,
.operations-content.is-style-paleteal .btn.active:after {
  border-left-color: var(--wp--preset--color--background);
  transform: rotate(90deg);
}
.block-operations.is-style-paleteal .btn:after,
.operations-content.is-style-paleteal .btn:after {
  border-left-color: var(--wp--preset--color--paleteal);
}
.block-operations.is-style-paleteal .number-title,
.operations-content.is-style-paleteal .number-title {
  color: var(--wp--preset--color--paleteal);
}

.operations-content.is-style-paleteal {
  border-top: 6px solid var(--wp--preset--color--paleteal);
}
.operations-content.is-style-paleteal ul.is-style-branded li:before {
  border-left-color: var(--wp--preset--color--paleteal);
}

.block-operations.is-style-forestgreen .opeartions-heading,
.operations-content.is-style-forestgreen .opeartions-heading {
  color: var(--wp--preset--color--forestgreen);
  border-color: var(--wp--preset--color--forestgreen);
}
.block-operations.is-style-forestgreen .btn,
.operations-content.is-style-forestgreen .btn {
  border-color: var(--wp--preset--color--forestgreen);
  color: var(--wp--preset--color--forestgreen);
  background-color: var(--wp--preset--color--background);
}
.block-operations.is-style-forestgreen .btn:hover, .block-operations.is-style-forestgreen .btn.active,
.operations-content.is-style-forestgreen .btn:hover,
.operations-content.is-style-forestgreen .btn.active {
  background-color: var(--wp--preset--color--forestgreen);
  color: var(--wp--preset--color--background);
}
.block-operations.is-style-forestgreen .btn:hover:after, .block-operations.is-style-forestgreen .btn.active:after,
.operations-content.is-style-forestgreen .btn:hover:after,
.operations-content.is-style-forestgreen .btn.active:after {
  border-left-color: var(--wp--preset--color--background);
  transform: rotate(90deg);
}
.block-operations.is-style-forestgreen .btn:after,
.operations-content.is-style-forestgreen .btn:after {
  border-left-color: var(--wp--preset--color--forestgreen);
}
.block-operations.is-style-forestgreen .number-title,
.operations-content.is-style-forestgreen .number-title {
  color: var(--wp--preset--color--forestgreen);
}

.operations-content.is-style-forestgreen {
  border-top: 6px solid var(--wp--preset--color--forestgreen);
}
.operations-content.is-style-forestgreen ul.is-style-branded li:before {
  border-left-color: var(--wp--preset--color--forestgreen);
}

.block-operations.is-style-kounradblue .opeartions-heading,
.operations-content.is-style-kounradblue .opeartions-heading {
  color: var(--wp--preset--color--kounradblue);
  border-color: var(--wp--preset--color--kounradblue);
}
.block-operations.is-style-kounradblue .btn,
.operations-content.is-style-kounradblue .btn {
  border-color: var(--wp--preset--color--kounradblue);
  color: var(--wp--preset--color--kounradblue);
  background-color: var(--wp--preset--color--background);
}
.block-operations.is-style-kounradblue .btn:hover, .block-operations.is-style-kounradblue .btn.active,
.operations-content.is-style-kounradblue .btn:hover,
.operations-content.is-style-kounradblue .btn.active {
  background-color: var(--wp--preset--color--kounradblue);
  color: var(--wp--preset--color--background);
}
.block-operations.is-style-kounradblue .btn:hover:after, .block-operations.is-style-kounradblue .btn.active:after,
.operations-content.is-style-kounradblue .btn:hover:after,
.operations-content.is-style-kounradblue .btn.active:after {
  border-left-color: var(--wp--preset--color--background);
  transform: rotate(90deg);
}
.block-operations.is-style-kounradblue .btn:after,
.operations-content.is-style-kounradblue .btn:after {
  border-left-color: var(--wp--preset--color--kounradblue);
}
.block-operations.is-style-kounradblue .number-title,
.operations-content.is-style-kounradblue .number-title {
  color: var(--wp--preset--color--kounradblue);
}

.operations-content.is-style-kounradblue {
  border-top: 6px solid var(--wp--preset--color--kounradblue);
}
.operations-content.is-style-kounradblue ul.is-style-branded li:before {
  border-left-color: var(--wp--preset--color--kounradblue);
}

.operations-content {
  position: relative;
  background: var(--wp--preset--color--background);
  padding: 2rem 0 4rem;
}

.page .operations-content {
  display: none;
  width: calc(200% + 2rem);
}
.page .operations-content.right {
  margin-left: calc(-100% - 2rem);
}
@media only screen and (max-width: 780px) {
  .page .operations-content {
    width: 100%;
  }
  .page .operations-content.right {
    margin-left: 0;
  }
}/*# sourceMappingURL=block-operations.css.map */