/*
    Copyright (c) 2021 - Marcos Rodríguez Yélamo.
    Licencia GPLv3.
*/
:root {
    --background: #FFFFFF;
    --backgroundRGB: 255, 255, 255;
    --text: #000000;
    --textRGB: 0, 0, 0;
    --accent: #0080FF;
    --accent-fg: white;
}

* {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--text);
}

body {
    background: var(--background);
    margin: 0px 25px;
}

a {
    text-decoration: none;
    color: inherit;
}

hr {
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-bottom-color: var(--text);
}

select, input, button {
    background: transparent;
    color: var(--text);
    padding: 2px;
    border-radius: 5px;
    border: 1px solid var(--text);
    outline: none;
}

input, button {
    padding: 3px 10px;
}

input:focus {
    background: var(--text);
    color: var(--background);
}

.dimmed {
    color: rgba(var(--textRGB), .4);
}

.ease-in {
    opacity: 0;
    animation-name: easein;
    animation-fill-mode: forwards;
    animation-duration: 0.2s;
    animation-timing-function: ease-in;
}

.to-bottom {
    animation-name: tobottom;
    animation-fill-mode: forwards;
    animation-duration: 0.8s;
    animation-timing-function: ease-out;
}

.to-right {
    animation-name: toright;
    animation-fill-mode: forwards;
    animation-duration: 0.8s;
    animation-timing-function: ease-out;
}

.icon {
    font-family: 'Material Icons Outlined';
    color: inherit;
    -webkit-font-smoothing: antialiased;
}

.h-align {
    display: flex;
    align-items: center;
    flex-direction: row;
}

@media (prefers-color-scheme: dark) {
    :root {
        --background: #000000;
        --backgroundRGB: 0, 0, 0;
        --text: #FFFFFF;
        --textRGB: 255, 255, 255;
    }
}

@keyframes easein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes tobottom {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes toright {
    0% {
        transform: translateX(-20px);
        opacity: 0;
    }
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

/* fallback */
@font-face {
    font-family: 'Material Icons Outlined';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/materialiconsoutlined/v90/gok-H7zzDkdnRel8-DQ6KAXJ69wP1tGnf4ZGhUcel5euIg.woff2) format('woff2');
  }
  
  .material-icons-outlined {
    font-family: 'Material Icons Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
  }
  