/* 
* Global CSS
* -----------------------------------------------------
*/
body {
    background-color: var(--background-color) !important;
}

button,
input {
    outline: none;
    border: none;
    background: none;
}

a {
    text-decoration: none;
}

input[type="checkbox"] {
    appearance: none;
    background-color: none;
    cursor: pointer;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 1em;
    height: 1em;
    border: 1px solid var(--secondary-color);
    border-radius: 0.05em;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
}

input[type="checkbox"]::before {
    content: "";
    width: 8px;
    height: 8px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--secondary-color);
}

input[type="checkbox"]:checked::before {
    transform: scale(1);
}

@media(min-width: 1400px) {
    .container {
        max-width: 1400px !important;
    }
}