/* 
* Global CSS
* -----------------------------------------------------
*/
button,
input {
    outline: none;
    border: none;
    background: none;
}
a{
    color: inherit !important;
    text-decoration: none !important;
}

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

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

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

select{
    border: none;
    width: 100%;
    background: none;
}
