
@import url('https://fonts.googleapis.com/css?family=Open%20Sans:800');
body {
    background: #4f9072 !important;
}

button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border: none;
    font-family: 'Open Sans';
    font-size: 2rem;
    border-radius: calc(2rem * 0.6);
    padding: calc(2rem* 0.5);
    margin: 0;
    line-height: 1;
    position: relative;
    z-index: 0;
    background-color: transparent;
    color: white;
    box-shadow: inset 0 0 0 0 rgb(248, 249, 255, 0.5), inset 0 0 0 0 rgb(248, 249, 255, 0.3), 0 0 0 rgb(248, 249, 255, 0.2);
    transition: all ease 0.2s;
}

button:hover {
    box-shadow: inset 0 0 0 calc(2rem* 0.2) rgba(248, 249, 255, 0.5), inset 0 0 calc(2rem* 0.2) calc(2rem* 0.5) rgba(248, 249, 255, 0), 0 0 calc(2rem* 0.0) rgba(236, 236, 238, 0.0);
}

.atitle-start {
    font-size: 1.8rem;

    color: white;
    text-transform: uppercase;

    font-family: 'Open sans','Roboto', Arial, sans-serif;
    font-weight:800 !important;
}



@keyframes borders {
    0%, 100% {
        border-width: calc(2rem* 0.2) calc(2rem* 0.1) calc(2rem* 0.02) calc(2rem* 0.02);
    }

    25% {
        border-width: calc(2rem* 0.1) calc(2rem* 0.02) calc(2rem* 0.02) calc(2rem* 0.2);
    }

    50% {
        border-width: calc(2rem* 0.02) calc(2rem* 0.02) calc(2rem* 0.2) calc(2rem* 0.1);
    }

    75% {
        border-width: calc(2rem* 0.02) calc(2rem* 0.2) calc(2rem* 0.1) calc(2rem* 0.02);
    }
}


button:hover::before {
    border: solid rgb(210, 255, 227, 0.8);
    padding: calc(2rem* 0.08);
    box-shadow: inset 0 0 calc(2rem* 0.2) calc(2rem* 0.2) rgb(186, 201, 255, 0.3);
    filter: blur(calc(2rem* 0.06));
    animation: borders infinite 2s linear;
    opacity: 0.5;
}

span {
    height: 100%;
    width: 100%;
    position: absolute;
    overflow: hidden;
    display: flex;
    border-radius: calc(2rem* 0.6);
    z-index: -1;
}

span::after {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    background: linear-gradient(90deg, rgb(248, 249, 255, 0), rgb(206, 216, 255, 0.6), rgb(248, 249, 255, 0));
    opacity: 0;
    transform: translateX(-100%);

}

button:hover>span::after {
    opacity: 1;
    transform: translateX(100%);
    transition: all ease 1s;
}

.tab {
    background-color: white;
    color: black;
}




/* extra unique buttons */
.np-cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: fit-content;
    border-radius: 1rem;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}


.np,
.ordine,
.renova {
    border-radius: 4rem;
    height: 12rem;
    width: 22rem;
    box-shadow: inset 0 0 0 0 rgb(248, 249, 255, 0.5);
    border: 1rem solid transparent;
    position: relative;
    color: white;
    font-family: 'Open sans','Roboto', Arial, sans-serif;
    font-weight: 800 !important;
    font-size: 2rem;

}



}

.ordine:hover::before,
.renova:hover::before,
.np:hover::before {
    opacity: 0.2;
    border-radius: 4rem;
}

.np>span {
    background-color: #6af;
    height: 8rem;
    width: 18rem;
    border-radius: 2rem;
}

.renova>span {
    background-color: orange;
    height: 8rem;
    width: 18rem;
    border-radius: 2rem;
}


.ordine>span {
    background-color: #16bb53;
    height: 8rem;
    width: 18rem;
    border-radius: 2rem;
}

.ordine>span::after,
.renova>span::after,
.np>span::after {
    display: none;
}

.ordine :hover,
.renova :hover,
.np :hover {
    box-shadow: inset 0 0 0 calc(2rem* 0.15) rgb(248, 249, 255, 0.6);
}


.mode {
    font-size: 1.5rem;
    width: 22rem;
    height: 10rem;
    top: 2rem;
}