.button, button {
    -moz-user-select: none;
    align-items: center;
    background-color: var(--sec);
    border: 0 none;
    border-radius: 24px;
    box-sizing: border-box;
    color: var(--white);
    cursor: pointer;
    display: inline-flex;
    fill: currentcolor;
    font-size: 14px;
    font-weight: 600;
    justify-content: center;
    letter-spacing: 0.25px;
    line-height: normal;
    margin: 7px 0;
    max-width: 100%;
    overflow: visible;
    padding: 7px 24px;
    position: relative;
    text-align: center;
    text-transform: none;
    touch-action: manipulation;
    transition: background-color 0.3s ease 0s;
    width: auto;
    will-change: transform, opacity;
    z-index: 0;
}

.button:active:not(:disabled),
button:active:not(:disabled) {
    box-shadow: 0 4px 4px 0 rgba(60, 64, 67, 0.3), 0 8px 12px 6px rgba(60, 64, 67, 0.15);
}
.button:hover,
button:hover,
.button:focus,
button:focus {
    border: 0 none;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    background-color: var(--tri);
    border-radius: 24px;
    -moz-border-radius: 24px;
    -webkit-border-radius: 24px;
    -o-border-radius: 24px;
    color: var(--white);
    outline: medium none;
}
.button::after,
button::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: 12px;
    font-weight: 600;
    margin-left: 7px;
    transition: margin 0.2s ease 0s;
    -moz-transition: margin 0.2s ease 0s;
    -webkit-transition: margin 0.2s ease 0s;
    -o-transition: margin 0.2s ease 0s;
}
.button:hover::after,
button:hover::after {
    margin-left: 12px;
}
button.button--ultimenu::after {
    content: "";
}

/* COLORBOX CLOSE BUTTON */
#cboxClose {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    -o-box-shadow: none;
}
