/* /BODY/ */

html {
    background-color: var(--fw-white-000);
    -webkit-tap-highlight-color: transparent;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    height: 100dvh;
    overscroll-behavior-y: none;
    scrollbar-gutter: stable;
}

body {
    font-family: 'Montserrat', sans-serif;
    /* font-family: 'Lato', sans-serif; */
    background-color: var(--fw-white-000);
    color: var(--fw-black-100);
    height: 100dvh;
    overscroll-behavior-y: none;
    scrollbar-gutter: stable;
}

#app {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
    background-color: var(--fw-white-000);
    isolation: isolate;
    overscroll-behavior-y: contain;
    overscroll-behavior-x: none;
}


/*==================================================*/
/* /LINKS/ */
/*==================================================*/

a {
    color: var(--color-red-700) !important;
    text-decoration: none;
    background-color: transparent;
    transition: 0.25s;
    /* font-weight: 600; */
}

a:hover {
    color: var(--color-red-400) !important;
    text-decoration: none;
    background-color: transparent;
    cursor: pointer;
}




h5,
h4,
h3,
h2,
h1 {
    margin-bottom: 15px;
    color: var(--fw-black-200);
    text-transform: uppercase;
}



/*==================================================*/
/* BUTTONS
/*==================================================*/

/*--------------------------------------------------*/
/* BUTTONS > MAIN MENU UI */
/*--------------------------------------------------*/











@keyframes shine-type-1 {
    10% {
        left: -40%;
        opacity: 1;
        top: -30%;
    }

    25% {
        opacity: 0.25;
    }

    100% {
        left: -40%;
        opacity: 0;
        top: -30%;
    }
}

.shine-effect {
    overflow: hidden;
    position: relative;
}

.shine-effect::after {
    animation: shine-type-1 5s ease-in-out infinite;
    background: linear-gradient(90deg, #ffffff21 0, #ffffff21 77%, #ffffff80 92%, #fff0);
    content: "";
    height: 200%;
    left: -210%;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: -110%;
    transform: rotate(30deg);
    width: 200%;
}