* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

:root {
    --gold: #b67929;
    --dark-blue: #104911;
    --light-blue: #3ea089;
    --light-gray: #b5b8b9;
    --dark-gray: #2f475a;
    --white: #fff;
    --black: #000;
    --success: #28a745;
    --warning: #e9b004;
    --error: #dc3545;

    --header-width: 280px;

    --motion-ease: cubic-bezier(0.68, -0.6, 0.32, 1.6);
    --motion-duration: 0.3s;
}

.color-gold {
    color: var(--gold);
}

.color-dark-blue {
    color: var(--dark-blue);
}

.color-light-blue {
    color: var(--light-blue);
}

.color-light-gray {
    color: var(--light-gray);
}

.color-dark-gray {
    color: var(--dark-gray);
}

.color-success {
    color: var(--success);
}

.color-warning {
    color: var(--warning);
}

.color-error {
    color: var(--error);
}

textarea:hover, input:hover, 
textarea:active, input:active, 
textarea:focus, input:focus,
button:focus, button:active,
button:hover, label:focus,
select:focus, .btn:active, .btn.active,
a.page-link:focus {
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
}

a {
    text-decoration: none;
    color: #000;
}

body {
    position: relative;
    min-height: 100vh;
}

.header-title {
    height: 65px;
    font-family: 'Dancing Script', cursive;
    padding: 10px 16px;
}

button.wave-btn {
    appearance: none;
    background: transparent;
    border: 0;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 500;
    line-height: 1;
    padding: 1em 1.5em;
    position: relative;
    transition: filter var(--motion-duration);
}

button.wave-btn:hover {
    filter: brightness(1.1);
}

button.wave-btn a {
    color: var(--white);
}

button.wave-btn:active {
    filter: brightness(0.9);
}

button.wave-btn > span {
    display: block;
    position: relative;
    transition: transform var(--motion-duration) var(--motion-ease);
    z-index: 1;
}

button.wave-btn:hover > span {
    transform: scale(1.05);
}

button.wave-btn:active > span {
    transform: scale(0.95);
}

button.wave-btn > svg {
    fill: var(--light-blue);
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
}

button.wave-btn > svg > path {
    transition: var(--motion-duration) var(--motion-ease);
}

button.wave-btn:hover > svg > path {
    d: path("M0,0 C0,-5 100,-5 100,0 C105,0 105,100 100,100 C100,105 0,105 0,100 C-5,100 -5,0 0,0");
}

button.wave-btn:active > svg > path {
    d: path("M0,0 C30,10 70,10 100,0 C95,30 95,70 100,100 C70,90 30,90 0,100 C5,70 5,30 0,0");
}

form {
    position: absolute;
    top: 35% !important;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 550px;
    border: 3px solid var(--light-blue);
    padding: 20px 50px;
}

form label, table th,
.dataTables_filter label,
.dataTables_length label,
.calypso-label,
fieldset legend,
.cb-container + span {
    font-family: 'Quicksand', cursive !important;
    font-weight: 700 !important;
    color: var(--light-blue);
    font-size: .9rem !important;
}

.app-version-wrapper {
    position: absolute;
    bottom: 15px;
    right: 15px;
    text-align: center;
    padding: 10px 0;
    color: var(--light-gray);
}