﻿@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;1,500&display=swap');

/* SITE WIDE CLASSES */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    color: #3c4043;
    outline: none;
    letter-spacing: 0.025rem;
}
html {
    background-color: #f2f3f3;
}

.material-symbols-outlined {
    margin-right: 10px;
    font-size: inherit;
    line-height: unset;
    color: inherit;
}

.text-align-center {
    text-align: center;
}
.text-align-right {
    text-align: right;
}
.text-align-left {
    text-align: left;
}



/* ANIMATIONS */
.spin {
    animation: spin 2s linear 0s infinite;
}
@keyframes spin {
    0% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
@-moz-keyframes spin {
    0% {
        -moz-transform: rotate(360deg);
    }
    100% {
        -moz-transform: rotate(0deg);
    }
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(360deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
    }
}
@-o-keyframes spin {
    0% {
        -o-transform: rotate(360deg);
    }
    100% {
        -o-transform: rotate(0deg);
    }
}


.fadeIn {
    animation-name: fadeIn;
    animation-duration: 0.3s;
    animation-direction: normal;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.fadeOut {
    animation-name: fadeOut;
    animation-duration: 0.3s;
    animation-direction: normal;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
}
@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.highlight {
    background-color: #1398D9;
}

@keyframes highlight {
    0% {
        background-color: white;
        outline: 0px solid #1398D9;
    }

    50% {
        background-color: lightgreen;
        outline: 15px solid #1398D9;
    }

    100% {
        background-color: white;
        outline: 0px solid #1398D9;
    }
}