<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Button Blocks
 */
.is-style-big-green-button .wp-block-button__link,
.wp-block-button.is-style-big-green-button .wp-block-button__link {
    font-family: "Roboto", Sans-serif;
    font-size: 44px;
    font-weight: 500;
    background-color: #09C623;
    border-radius: 0;
    padding: 25px 50px;
    color: #fff;
    width: auto;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    display: inline-block;
    line-height: 1;
}

.is-style-big-green-button .wp-block-button__link:hover,
.wp-block-button.is-style-big-green-button .wp-block-button__link:hover ,
.is-style-big-green-button .wp-block-button__link:active,
.wp-block-button.is-style-big-green-button .wp-block-button__link:active {
    background-color: #199200;
}
@media (max-width: 768px) {
    .is-style-big-green-button .wp-block-button__link,
    .wp-block-button.is-style-big-green-button .wp-block-button__link {
        font-size: 28px;
    }
}

/* Small Green Button */
.is-style-small-green-button .wp-block-button__link,
.wp-block-button.is-style-small-green-button .wp-block-button__link {
    font-family: "Roboto", Sans-serif;
    font-weight: bold;
    fill: #FFFFFF;
    color: #FFFFFF;
    background-color: #23A455;
    display: inline-block;
    line-height: 1;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 3px;
    text-align: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.is-style-small-green-button .wp-block-button__link:hover,
.wp-block-button.is-style-small-green-button .wp-block-button__link:hover ,
.is-style-small-green-button .wp-block-button__link:active,
.wp-block-button.is-style-small-green-button .wp-block-button__link:active {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
/* END Small Green Button */

/* Small Green Button */
.is-style-small-outline-button .wp-block-button__link,
.wp-block-button.is-style-small-outline-button .wp-block-button__link {
    font-family: "Roboto", Sans-serif;
    font-weight: bold;
    fill: #54595F;
    color: #54595F;
    background-color: transparent;
    display: inline-block;
    line-height: 1;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 3px;
    text-align: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.is-style-small-outline-button .wp-block-button__link:hover,
.wp-block-button.is-style-small-outline-button .wp-block-button__link:hover ,
.is-style-small-outline-button .wp-block-button__link:active,
.wp-block-button.is-style-small-outline-button .wp-block-button__link:active {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    color: #23A455;
}
/* END Small Green Button */</pre></body></html>