/** === Button Block === */
.wp-block-button__link{
    font-size: 16px;
    padding: 10px 20px;
	transition: all 0.25s linear;
	font-weight: bold;
}
.wp-block-button__link:hover{
    box-shadow: inset 0 0 0px 0.3em rgba(255, 255, 255, 0.5);
}
.is-style-outline .wp-block-button__link {
    background: 0 0;
    border: 1px solid currentcolor;
}
.is-style-outline .wp-block-button__link:hover{
    opacity: .7;
    background-color: transparent !important;
}
.is-style-squared .wp-block-button__link {
    border-radius: 0;
}
.entry-content .wp-block-button__link:hover,
.wp-block-button .wp-block-button__link{
    text-decoration: none;
}