/** === Button Block === */

.wp-block-button__link,
.wp-block-search__button{
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    display: inline-block;
    width: auto;
    padding: 5px 20px;
    text-decoration: none;
    border: none;
    min-width: 90px;
    background-position: center center;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    -webkit-appearance: none;
}

.wp-block-button__link,
.wp-block-search__button{
    border-radius: 4px;
}
.is-style-outline .wp-block-button__link:hover{
	border-color: inherit;
	background: transparent;
	opacity: .7;
}
.wp-block-button__link:hover{
    background-image: -moz-linear-gradient(left,rgba(0,0,0,.1) 0,rgba(0,0,0,.1) 100%);
    background-image: -webkit-gradient(linear,left top,right top,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(0,0,0,.1)));
    background-image: -webkit-linear-gradient(left,rgba(0,0,0,.1) 0,rgba(0,0,0,.1) 100%);
    background-image: -o-linear-gradient(left,rgba(0,0,0,.1) 0,rgba(0,0,0,.1) 100%);
    background-image: -ms-linear-gradient(left,rgba(0,0,0,.1) 0,rgba(0,0,0,.1) 100%);
    background-image: linear-gradient(to right,rgba(0,0,0,.1) 0,rgba(0,0,0,.1) 100%);
}
.is-style-outline .wp-block-button__link{
	border: 1px solid;
}
.entry-content .wp-block-button__link:hover{
	text-decoration: none;
}
.wp-block-button.is-style-squared .wp-block-button__link{
    border-radius: 0;
}