/*.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,
.editorButton {
    display: inline-block !important;
    cursor: pointer;
    text-align: center !important;
    line-height: normal !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;

    margin: 10px 0px 0px 0px !important;

    padding: 11px;
    border-radius: 0px;
    min-width: 260px;

    border: 1px solid var(--button-bg-color);
    background-color: var(--button-bg-color);
    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;

    position: relative;
    z-index: 2;
}

.site-btn:after,
.editorButton:after {
    content: "";
    position: absolute;
    left: -10px;
    right: -10px;
    top: -10px;
    bottom: -10px;
    border: 1px solid var(--button-bg-color);

    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.has-white-btn .site-btn:after,
.has-white-btn .editorButton:after {
    content: none;
}

.has-white-btn .site-btn,
.has-white-btn .editorButton {
    border: 1px solid var(--button-white-bg-color);
    background-color: var(--button-white-bg-color);
    color: var(--button-white-color) !important;
}


.has-small-button .site-btn,
.has-small-button .editorButton,
.site-btn.site-btn-small {
    font-size: 17px !important;
    padding: 8px 8px !important;
    min-width: 200px !important;
}
.has-big-button .site-btn,
.has-big-button .editorButton,
.site-btn.site-btn-big {
    font-size: 22px !important;
    padding: 14px 14px !important;
    min-width: 330px !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;
    background-color: var(--button-hover-bg-color) !important;
}
.site-btn:hover:after,
.editorButton:hover:after {
    opacity: 0.1;
}


.has-white-btn .site-btn:hover,
.has-white-btn .editorButton:hover {
    text-decoration: none !important;
    color: var(--button-white-hover-color) !important;
    background-color: var(--button-white-hover-bg-color) !important;
}













