/*
@include max($tablet) {
	height: 60px;
}
*/
#editor [data-type="core/button"] .wp-element-button,
article#wrapper .wp-block-button .wp-element-button {
  z-index: 10;
  position: relative;
  border-radius: 0;
  border: none;
  background-color: transparent;
  color: #fff;
}
#editor [data-type="core/button"] .wp-element-button:before,
article#wrapper .wp-block-button .wp-element-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color-dark);
  z-index: -1;
  -webkit-clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
          clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
}