@import 'https://fonts.googleapis.com/css?family=Exo+2';
@import 'https://fonts.googleapis.com/css?family=Share+Tech+Mono';

:root {

    /* COLOR VALUES */

    --bg-color-gradient-primary: rgb(48, 9, 25); /*48, 9, 25*/
    --bg-color-gradient-secondary: rgb(7, 15, 31); /*7, 15, 31*/

    --neon-color-100: rgb(255, 29, 136);
    --neon-color-80: rgba(255, 29, 136, 0.8);
    --neon-color-60: rgba(255, 29, 136, 0.6);
    --neon-color-40: rgba(255, 29, 136, 0.4);
    --neon-color-20: rgba(255, 29, 136, 0.2);
    --neon-color-10: rgba(255, 29, 136, 0.1);
    --neon-color-05: rgba(255, 29, 136, 0.05);
    --neon-color-02: rgba(255, 29, 136, 0.02);

    --hue-rotate-deg: -30deg;

    /* ANIMATION VALUES */

    --fade-in-blink-duration: 1s;
    --turn-on-button-duration: 3s;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Exo 2', sans-serif;
    color: var(--neon-color-100);
    font-weight: 500;
    font-size: 1em;
    line-height: 28px;
    text-decoration: none;
}

body {
    background-color: var(--bg-color-gradient-primary);
    background-image: -webkit-gradient(linear, left top, left bottom, from(var(--bg-color-gradient-primary)), to(var(--bg-color-gradient-secondary)));
    background-image: -webkit-linear-gradient(var(--bg-color-gradient-primary), var(--bg-color-gradient-secondary));
    background-image: -o-linear-gradient(var(--bg-color-gradient-primary), var(--bg-color-gradient-secondary));
    background-image: linear-gradient(var(--bg-color-gradient-primary), var(--bg-color-gradient-secondary));
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
}

.screen-container {
    min-height: 100%;
    display: grid;
    grid-row-gap: 5px;
    /* column-gap: 5px; */
    column-gap: 3px;
        /* grid-template-columns: auto minmax(auto, 1160px) auto; */
        grid-template-columns: minmax(5px, auto) minmax(auto, 1160px) minmax(5px, auto);
        grid-template-rows: 84px 1fr 56px;
        grid-template-areas:
        ". header ."
        ". main-screen ."
        ". footer .";
    transition: all 0.5s;
}

@media only screen and (min-width: 590px) {
    .screen-container {
        min-height: 100%;
        display: grid;
        grid-row-gap: 40px;
        column-gap: 10px;
            grid-template-columns: minmax(10px, auto) minmax(auto, 1160px) minmax(10px, auto);
            grid-template-rows: 84px 1fr 56px;
            grid-template-areas:
            ". header ."
            ". main-screen ."
            ". footer .";
        transition: all 0.5s;
    }
}

/* ============================================================================================================================= */
/* ============================================================================================================================= */
/*                                                         MAIN SCREEN                                                           */
/* ============================================================================================================================= */
/* ============================================================================================================================= */

.main-screen, .main-screen-bg {
    grid-area: main-screen;
    min-height: 100%;
    display: grid;
    grid-gap: 0;
    grid-template-columns: 28px auto 28px;
    grid-template-rows: 28px auto 28px;
    grid-template-areas: 
    "ms-top-left       ms-top-center      ms-top-right"
    "ms-center-left    ms-center-center   ms-center-right"
    "ms-bottom-left    ms-bottom-center   ms-bottom-right";
}

.bg-ms-top-left-corner {
    grid-area: ms-top-left;
}
.bg-ms-top-center {
    grid-area: ms-top-center;
}
.bg-ms-top-right-corner {
    grid-area: ms-top-right;
}
.bg-ms-center-left {
    grid-area: ms-center-left;
}
.bg-ms-center-center {
    grid-area: ms-center-center;
}
.bg-ms-center-right {
    grid-area: ms-center-right;
}
.bg-ms-bottom-left-corner {
    grid-area: ms-bottom-left;
}
.bg-ms-bottom-center {
    grid-area: ms-bottom-center;
}
.bg-ms-bottom-right-corner {
    grid-area: ms-bottom-right;
}

/* ============================================================================================================================= */
/* ============================================================================================================================= */
/*                                                              HEADER                                                           */
/* ============================================================================================================================= */
/* ============================================================================================================================= */

header, .header-bg {
    grid-area: header;
    min-height: 100%;
    display: grid;
    grid-gap: 0;
    grid-template-rows: 0px 28px 28px;
    grid-template-columns: 28px 1fr 50px 1fr 28px;
    grid-template-areas: 
    "h-top-left-corner      h-top-center-l     h-logo      h-top-center-r       h-top-right-corner"
    "h-bottom-left-corner   h-bottom-left-1    .           h-bottom-right-1    h-bottom-right-corner"
    ".                      h-bottom-left-2    .           h-bottom-right-2    .";
}

@media only screen and (min-width: 590px) {
    header, .header-bg {
    grid-template-rows: 28px 28px 28px;
    grid-template-columns: 28px 1fr 28px 180px 75px 180px 28px 1fr 28px;
    grid-template-areas: 
    "h-top-left-corner  h-top-left  h-top-center-l       h-top-center-l     h-logo      h-top-center-r      h-top-center-r          h-top-right     h-top-right-corner"
    ".                  .           h-bottom-left-corner h-bottom-left-1    .           h-bottom-right-1    h-bottom-right-corner   .               ."
    ".                  .           .                    h-bottom-left-2    .           h-bottom-right-2    .                       .               .";
    }
}

.bg-h-top-left-corner {
    grid-area: h-top-left-corner;
}
.bg-h-top-left {
    grid-area: h-top-left;
}
.bg-h-top-center {
    grid-row-start: 1;
    grid-column-start: h-top-center-l;
    grid-column-end: h-top-center-r;
}
.bg-h-bottom-left-corner {
    grid-area: h-bottom-left-corner;
}
.bg-h-bottom-center {
    grid-row-start: 2;
    grid-column-start: h-bottom-left-1;
    grid-column-end: h-bottom-right-2;
}
.bg-h-bottom-right-corner {
    grid-area: h-bottom-right-corner;
}
.bg-h-top-right {
    grid-area: h-top-right;
}
.bg-h-top-right-corner {
    grid-area: h-top-right-corner;
}
.bg-h-logo-container {
    grid-area: h-logo;
}

.h-on-off-logo {
    grid-area: h-logo;
}

a[class^="h-button"] {
    text-align: center;
    position: relative;
    color: var(--neon-color-80);
    transition: all 0.1s;
    opacity: 0;
}

a[class^="h-button"]:hover {
    text-align: center;
    position: relative;
    color: var(--neon-color-100);
    background: linear-gradient(90deg, transparent, var(--neon-color-20), transparent);
    transition: all 0.2s;
}

div[class^="h-button"][class$="-lite"], div[class^="h-button"][class$="-extended"] {
    height: 28px;
    width: 100%;
    text-align: center;
    position: absolute;
    transition: all 0.2s;
}

div[class^="h-button"][class$="-lite"] {
    bottom: 0px;
    opacity: 1;
}

a[class^="h-button"]:hover div[class^="h-button"][class$="-lite"] {
    bottom: 0px;
    opacity: 1;
}

div[class^="h-button"][class$="-extended"] {
    bottom: -10px;
    opacity: 0;
}

a[class^="h-button"]:hover div[class^="h-button"][class$="-extended"] {
    bottom: -10px;
    opacity: 0;
}

@media only screen and (min-width: 590px) {
    
    div[class^="h-button"][class$="-lite"] {
        bottom: 0px;
        opacity: 1;
    }
    
    a[class^="h-button"]:hover div[class^="h-button"][class$="-lite"] {
        bottom: 10px;
        opacity: 0;
    }
    
    div[class^="h-button"][class$="-extended"] {
        bottom: -10px;
        opacity: 0;
    }
    
    a[class^="h-button"]:hover div[class^="h-button"][class$="-extended"] {
        bottom: 0px;
        opacity: 1;
    }
}

.h-button-border-top {
    width: 200px;
    height: 30px;
    position: absolute;
    fill: none;
    stroke: none;
    stroke-width: 1.5px;
    display: none;
    transition: all 0.1s, transform 0s;
}

a[id^="h-button"]:hover > .h-button-border-top {
    stroke: none;
    transition: all 0.2s, transform 0s;
}

@media only screen and (min-width: 590px) {

    a[id^="h-button"][id$="-store"], a[id^="h-button"][id$="-mizugames"] {
        bottom: 0px;
    }
    a[id^="h-button"][id$="-store"]:hover, a[id^="h-button"][id$="-mizugames"]:hover {
        bottom: 3px;
    }

    a[id^="h-button"][id$="-store"] > .h-button-border-top, a[id^="h-button"][id$="-mizugames"] > .h-button-border-top {
        display: block;
        bottom: 10px;
        left: -17px;
        transform: rotate(0deg);
        stroke: var(--neon-color-80);
    }
    
    a[id^="h-button"][id$="-store"]:hover > .h-button-border-top, a[id^="h-button"][id$="-mizugames"]:hover > .h-button-border-top {
        display: block;
        bottom: 1px;
        stroke: var(--neon-color-100);
    }
    
    a[id^="h-button"][id$="-market"], a[id^="h-button"][id$="-support"] {
        bottom: 0px;
    }
    a[id^="h-button"][id$="-market"]:hover, a[id^="h-button"][id$="-support"]:hover {
        bottom: -2px;
    }

    a[id^="h-button"][id$="-market"] > .h-button-border-top, a[id^="h-button"][id$="-support"] > .h-button-border-top {
        display: block;
        bottom: -10px;
        left: -2px;
        transform: rotate(180deg);
        stroke: var(--neon-color-80);
    }
    
    a[id^="h-button"][id$="-market"]:hover > .h-button-border-top, a[id^="h-button"][id$="-support"]:hover > .h-button-border-top {
        display: block;
        bottom: -4px;
        stroke: var(--neon-color-100);
    }

}

.h-button-store {
    grid-area: h-bottom-left-1;
}
.h-button-market {
    grid-area: h-bottom-left-2;
}
.h-button-mizugames {
    grid-area: h-bottom-right-1;
}
.h-button-support {
    grid-area: h-bottom-right-2;
}

.bg-h-logo-container {
    width: 50px;
    height: 50px;
    position: relative;
    margin-top: 3px;
    text-align: center;
    justify-self: center;
}

.bg-h-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--bg-color-gradient-primary);
    border: 1px solid var(--neon-color-100);
    transition: all 0.5s;
}

.bg-h-logo-container:hover .bg-h-logo {
    animation: 2s logo-spin ease infinite;
}


@keyframes logo-spin {
    0% {
        transform: rotate(0deg);
        border-left: 1px solid var(--neon-color-100);
        border-right: 1px solid var(--neon-color-100);
        border-top: 1px solid var(--neon-color-100);
        border-bottom: 1px solid var(--neon-color-100);
    }
    50% {
        transform: rotate(360deg);
        border-left: 1px solid var(--neon-color-100);
        border-right: 1px solid var(--neon-color-100);
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
    }
    100% {
        transform: rotate(720deg);
        border-left: 1px solid var(--neon-color-100);
        border-right: 1px solid var(--neon-color-100);
        border-top: 1px solid var(--neon-color-100);
        border-bottom: 1px solid var(--neon-color-100);
    }
}

.h-img-logo {
    width: 90%;
    height: 90%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -48%);
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/web/LogoRed512px.png);
    opacity: 0;
    filter: hue-rotate(var(--hue-rotate-deg));
}

.h-on-off-logo {
    width: 32px;
    height: 32px;
    justify-self: center;
    padding-top: 11px;
    fill: var(--neon-color-100);
    stroke: var(--neon-color-100);
    filter: drop-shadow(0 0 5px var(--neon-color-100));
    opacity: 0.4;
    pointer-events: none;
}

@media only screen and (min-width: 590px) {
    .bg-h-logo-container {
        width: 75px;
        height: 75px;
        margin-top: 16px;
    }

    .h-on-off-logo {
        width: 45px;
        height: 45px;
        padding-top: 30px;
    }
}

header {
    /* z-index: 10; */
}


/* ============================================================================================================================= */
/* ============================================================================================================================= */
/*                                                              FOOTER                                                           */
/* ============================================================================================================================= */
/* ============================================================================================================================= */


footer, .footer-bg {
    grid-area: footer;
    min-height: 100%;
    display: grid;
    grid-gap: 0;
    grid-template-rows: 28px 28px;
    grid-template-columns: 28px 1fr 28px;
    grid-template-areas: 
    ".                  .               ."
    "f-top-left-corner  f-top-center    f-top-right-corner";
}

@media only screen and (min-width: 590px) {
    footer, .footer-bg {
        grid-area: footer;
        min-height: 100%;
        display: grid;
        grid-gap: 0;
        grid-template-rows: 28px 28px;
        grid-template-columns: 28px 1fr 28px 435px 28px 1fr 28px;
        grid-template-areas: 
        ".                      .                   f-top-left-corner   f-top-center        f-top-right-corner      .               ."
        "f-bottom-left-corner   f-bottom-left       f-bottom-center     f-bottom-center     f-bottom-center         f-bottom-right  f-bottom-right-corner";
    }
}

.bg-f-top-left-corner {
    grid-area: f-top-left-corner;
}
.bg-f-top-center {
    grid-area: f-top-center;    
}
.bg-f-top-right-corner {
    grid-area: f-top-right-corner;    
}
.bg-f-bottom-left-corner {
    grid-area: f-bottom-left-corner;    
}
.bg-f-bottom-left {
    grid-area: f-bottom-left;    
}
.bg-f-bottom-center {
    grid-area: f-bottom-center;    
}
.bg-f-bottom-right {
    grid-area: f-bottom-right;    
}
.bg-f-bottom-right-corner {
    grid-area: f-bottom-right-corner;    
}

.copyright {
    grid-area: f-top-center;
    text-align: center;
    font-size: 0.8em;
    color: var(--neon-color-80);
}
.footer-text-left {
    grid-area: f-bottom-left;
    text-align: center;
}
.footer-text-right {
    grid-area: f-bottom-right;
    text-align: center;
}


/* ============================================================================================================================= */
/* ============================================================================================================================= */
/*                                                              BORDER                                                           */
/* ============================================================================================================================= */
/* ============================================================================================================================= */


.header-bg, .main-screen-bg, .footer-bg {
    opacity: 0.2;
    filter: drop-shadow(0 0 6px var(--neon-color-100));
}


/* SAFARI ONLY */
@media not all and (min-resolution:.001dpcm) { 
    .header-bg, .main-screen-bg, .footer-bg {
        filter: none;
    }
}


div[class^="bg-h"]:not([class*="corner"]):not([class*="logo"]), div[class^="bg-ms-"]:not([class*="corner"]), div[class^="bg-f-"]:not([class*="corner"]) {
    background-color: var(--neon-color-05);
    border: 1px solid var(--neon-color-100);
    /* transition: all 0.5s; */
    position: relative;
}

div[class^="bg-"][class$="-corner"]:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: var(--neon-color-05);
    border: 1px solid var(--neon-color-100);
    transform: rotate(45deg);
}

.bg-ms-top-center, .bg-f-top-center, .bg-f-bottom-left, .bg-f-bottom-right {
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
}
.bg-ms-bottom-center, .bg-h-top-left, .bg-h-bottom-center, .bg-h-top-right {
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
}
.bg-ms-center-left {
    border-top: none !important;
    border-bottom: none !important;
    border-right: none !important;
}
.bg-ms-center-right {
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
}

.bg-ms-center-center, .bg-h-top-center, .bg-f-bottom-center {
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
}

div[class^="bg-"][class$="-corner"] {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.bg-ms-top-left-corner:after, .bg-f-top-left-corner:after, .bg-f-bottom-left-corner:after {
    bottom: -21.5px;
    right: -21.5px;
}
.bg-ms-top-right-corner:after, .bg-f-top-right-corner:after, .bg-f-bottom-right-corner:after {
    bottom: -21.5px;
    left: -21.5px;
}
.bg-ms-bottom-left-corner:after, .bg-h-top-left-corner:after, .bg-h-bottom-left-corner:after {
    top: -21px;
    right: -22px;
}
.bg-ms-bottom-right-corner:after, .bg-h-top-right-corner:after, .bg-h-bottom-right-corner:after {
    top: -22px;
    left: -21px;
}


main {
    grid-area: ms-center-center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    /* z-index: 10; */
}


/* ============================================================================================================================= */
/* ============================================================================================================================= */
/*                                                              ASSET                                                            */
/* ============================================================================================================================= */
/* ============================================================================================================================= */


.asset {
    height: 340px;
    width: 240px;
    margin-top: 18px;
    margin-bottom: 50px;
    margin-left: 5px;
    margin-right: 5px;

    transition: all 1s;
    position: relative;
    box-sizing: border-box;
    display: none;
    transition: all 1s;
    opacity: 0;
}

.asset-image {
    height: 340px;
    width: 240px;
    position: relative;
}
.asset-image image {
    mask: url(#asset-img-mask);
}

.asset-svg-border {
    height: 350px;
    width: 250px;
    position: absolute;
    top: -5px;
    left: -5px;
    fill: none;
    stroke: var(--neon-color-40);
    stroke-width: 1.5px;
    transition: all 0.2s;
    opacity: 1;
    pointer-events: none;
}

.asset:hover .asset-svg-border {
    height: 344px;
    width: 244px;
    top: -2px;
    left: -2px;
    stroke: var(--neon-color-100);
    transition: all 0.2s;
    opacity: 1;
}

.asset-name {
    margin-top: 8px;
    text-align: center;
    position: relative;
    box-sizing: border-box;
    width: auto;
    top: -2px;
    transition: all 0.2s;
}

.asset:hover > .asset-name {
    top: 2px;
    transition: all 0.2s;
}

.asset-name p {
    color: var(--neon-color-60);
    transition: all 0.2s;
}

.asset:hover > .asset-name p {
    color: var(--neon-color-100);
    transition: all 0.2s;
}

.asset-name-border-top {
    width: 240px;
    height: 30px;
    position: absolute;
    bottom: 3px;
    left: 0;
    fill: none;
    stroke: transparent;
    stroke-width: 1.5px;
    transition: all 0.2s;
}

.asset:hover > .asset-name > .asset-name-border-top {
    transition: all 0.2s;
    bottom: -2px;
    stroke: var(--neon-color-80);
}

.asset-buttons-container {
    height: inherit;
    width: inherit;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

div[class^="asset-slider"]:not([class*="bg-"]) {
    width: 188px;
    height: 55px;
    position: absolute;
    left: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s;
}

div[class^="asset-slider"] > p {
    text-transform: uppercase;
    position: absolute;
}

div[class^="asset-slider"]:hover > p {
    background: linear-gradient(90deg, transparent, var(--neon-color-10), transparent);
    border-top: 1px solid var(--neon-color-100);
    border-bottom: 1px solid var(--neon-color-100);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}


.asset-slider-top {
    top: -56px;
}

.asset:hover .asset-slider-top{
    top: -1px;
}

.asset-slider-bottom {
    bottom: -56px;
}

.asset:hover .asset-slider-bottom{
    bottom: -1px;
}

svg[class^="asset-slider-bg"] {
    fill: rgb(29, 29, 29);
    stroke: var(--neon-color-100);
    stroke-width: 1.5px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.asset-slider-bg-top {
    transform: rotate(180deg);
}

.scanline-overlay {
    min-height: 100%;
    min-width: 100%;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../img/web/scanline.png);
    z-index: 9999;
}

.top-button-container {
    min-width: 100%;
    position: fixed;
    height: 50px;
    bottom: 140px;
    display: grid;
    column-gap: 3px;
        grid-template-columns: minmax(5px, auto) minmax(auto, 1160px) minmax(5px, auto);
    transition: all 0.5s;
}

@media only screen and (min-width: 590px) {
    .top-button-container {
        display: grid;
        column-gap: 10px;
            grid-template-columns: minmax(10px, auto) minmax(auto, 1160px) minmax(10px, auto);
    }
}

.top-button {
    height: 56px;
    width: 30px;
    grid-column-start: 2;
    justify-self: end;
    text-align: center;
    
    padding-bottom: 5px;
    position: relative;

    transition: all 0.2s;
    opacity: 0;
    pointer-events: none;
}

.top-button-text {
    height: 100%;
    width: 100%;
    position: absolute;
    font-weight: 800;
    font-size: 2em;
}
.top-button:hover .top-button-text {
    background: linear-gradient(90deg, transparent, var(--neon-color-20), transparent);
    transition: all 0.2s;
}

.top-button-text p {
    font-size: 0.4em;
}

.bg-top-button {
    fill: rgb(29, 29, 29);
    stroke: var(--neon-color-100);
    stroke-width: 1px;
    position: absolute;
    top: 0;
    left: -1;
    width: 100%;
    height: 100%;
}

.console-permanent {
    grid-area: ms-top-center;
    padding-left: 13px;
}

.console-top {
    grid-area: ms-center-center;
}

.main-console {
    position: relative;
    display:inline-block;
}

.footer-console {
    position: relative;
    display:block;
    align-self: flex-end;
    width: 100%;
    text-align: left;
    margin-top: 15px;
}

.console-cursor {
    margin-left: 2px;
    font-weight: 800;
    animation: blink-cursor 1s infinite;
    height: 14px;
    width: 10px;
    background-color: var(--neon-color-100);
}

/* ============================================================================================================================= */
/* ============================================================================================================================= */
/*                                                         ANIMATIONS                                                            */
/* ============================================================================================================================= */
/* ============================================================================================================================= */

@keyframes blink-cursor {
    to {
        opacity: 0.1;
    }
}

.turn-on-button-animation {
    animation: var(--turn-on-button-duration) turn-on-button ease-in-out forwards;
}

@keyframes turn-on-button {
    0% {
        opacity: 0.4;
    }
    1% {
        opacity: 1;
    }
    20% {
        opacity: 0.8;
    }
    40% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
    }
}

.fade-in-blink {
    animation: var(--fade-in-blink-duration) fade-in-blink ease-in-out forwards;
}

@keyframes fade-in-blink {
    0% {
       opacity: 0.2;
    }
    25% {
       opacity: 0.2;
    }
    26% {
        opacity: 1;
    }
    27% {
       opacity: 0.2;
    }
    35% {
        opacity: 1;
    }
    40% {
       opacity: 0.2;
    }
    42% {
        opacity: 1;
    }
    55% {
       opacity: 0.2;
    }
    100% {
        opacity: 1;
    }
}

.fade-in-1 {
    animation: 1s fade-in-animation ease-in-out forwards;
}

@keyframes fade-in-animation {
    to {
        opacity: 1;
    }
}

.fade-out-2s {
    animation: 2s fade-out-animation ease-in-out forwards;
}

@keyframes fade-out-animation {
    to {
        opacity: 0;
    }
}

.fade-in-h-button-top-left {
    animation: 0.5s fade-in-h-button-top-left-ani ease-in-out forwards;
}

@keyframes fade-in-h-button-top-left-ani {
    from {
        bottom: 10px;
        left: -5px;
        opacity: 0;
    }
    to {
        bottom: 0px;
        left: 0;
        opacity: 1;
    }
}

.fade-in-h-button-top-right {
    animation: 0.5s fade-in-h-button-top-right-ani ease-in-out forwards;
}

@keyframes fade-in-h-button-top-right-ani {
    from {
        bottom: 10px;
        left: 5px;
        opacity: 0;
    }
    to {
        bottom: 0px;
        left: 0;
        opacity: 1;
    }
}

.fade-in-h-button-bottom-left {
    animation: 0.5s fade-in-h-button-bottom-left-ani ease-in-out forwards;
}

@keyframes fade-in-h-button-bottom-left-ani {
    from {
        bottom: -10px;
        left: -5px;
        opacity: 0;
    }
    to {
        bottom: 0px;
        left: 0;
        opacity: 1;
    }
}

.fade-in-h-button-bottom-right {
    animation: 0.5s fade-in-h-button-bottom-right-ani ease-in-out forwards;
}

@keyframes fade-in-h-button-bottom-right-ani {
    from {
        bottom: -10px;
        left: 5px;
        opacity: 0;
    }
    to {
        bottom: 0px;
        left: 0;
        opacity: 1;
    }
}