.site-btn,
.editorButton {
    display: inline-block !important;
    cursor: pointer;
    text-align: center !important;
    line-height: normal !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    text-decoration: none !important;
    letter-spacing: 3px;

    margin: 0px !important;
    padding: 0px !important;

    color: var(--button-color) !important;

    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;

    text-shadow: none !important;

    font-family: var(--button-font-family) !important;

    background-color: transparent !important;
    border: 0px !important;
    background-size: 18px;

    background-repeat: no-repeat;
    background-position: right center;
}


.site-btn:before,
.editorButton:before {
    content: "...";
    padding-right: 3px;
}
.site-btn:after,
.editorButton:after {
    content: "...";
    padding-left: 3px;
}


.has-small-button .site-btn,
.has-small-button .editorButton,
.site-btn.site-btn-small {
    font-size: 16px !important;
}
.has-medium-button .site-btn,
.has-medium-button .editorButton,
.site-btn.site-btn-medium {
    font-size: 20px !important;
}
.has-big-button .site-btn,
.has-big-button .editorButton,
.site-btn.site-btn-big {
    font-size: 24px !important;
}


button.site-btn:focus,
button.editorButton:focus {
    outline: 0 !important;
    border: 0px !important;
    box-shadow: none !important;
}
.site-btn:hover,
.editorButton:hover {
    text-decoration: none !important;
    color: var(--button-hover-color) !important;
}














