
/* --------------- SITE BUTTON [STANDART] --------------- */

.site-btn,
.editorButton {
    display: inline-block;
    cursor: pointer;
    font-size: 22px !important;
    font-weight: 400 !important;
    margin: 0px;
    padding: 12px 20px;
    position: relative;
    text-decoration: none !important;
    text-transform: uppercase;
    color: #222 !important;
    background-color: #e3daca;
    border: 1px solid #cec8ba;
    min-width: 260px;
    text-align: center !important;
    border-radius: 3px;
    text-shadow: none !important;
    line-height: normal !important;

    font-family: var(--button-font-family) !important;

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}
.site-btn:hover,
.editorButton:hover {
    text-decoration: none !important;
    color: #fff !important;
    background-color: #85303c;
    border-color: #71232e;
}

/* --------------- SITE BUTTON [WHITE] --------------- */
.site-btn.site-btn-alt,
.has-site-btn-alt .site-btn,
.has-site-btn-alt .editorButton {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff !important;
    background-color: rgba(34, 34, 34, 0.7);
}
.site-btn.site-btn-alt:hover,
.has-site-btn-alt .site-btn:hover,
.has-site-btn-alt .editorButton:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff !important;
    background-color: #71232e;
}

.slideText p:has(.editorButton) {
    text-shadow: none !important;
}

/* --------------- SITE BUTTON [SMALL MODIFIER] --------------- */


.has-small-button .site-btn,
.has-small-button .editorButton,
.site-btn.site-btn-small {
    font-size:16px !important;
    padding: 10px 15px;
    min-width: 130px;
}
.has-medium-button .site-btn,
.has-medium-button .editorButton,
.site-btn.site-btn-medium {
    font-size: 19px !important;
    padding: 18px 20px;
}
.has-big-button .site-btn,
.has-big-button .editorButton,
.site-btn.site-btn-big {
    font-size: 22px !important;
    padding: 25px 25px;
}



/* --------------- SITE BUTTON SETTINGS --------------- */

button.site-btn:focus,
button.editorButton:focus {
    outline: 0 !important;
    border: 0px !important;
    box-shadow: none !important;
}





a.custom-site-btn {
    display: inline-block;
    padding:  0px 10px;
    font-size: 24px;
    line-height: 24px !important;
    font-weight: 400;
    color: var(--text-main-color);
    border-left: 2px solid #222;
    border-right: 2px solid #222;
    text-decoration: none;
    text-align: center;

    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}
a.custom-site-btn:hover {
    color: #bcc3ad;
    border-color: #bcc3ad;
    padding:  0px 20px;
    text-decoration: none;
}












