﻿
.chrome-button {
    width: 180px;
    height: 180px;
    max-width: 180px;
    max-height: 180px;
    position: relative;
    overflow: hidden;
    border: solid 5px #ffffff24;
    border-radius: 90px;
    padding: 30px;
    margin: 10px;
    background: linear-gradient(180deg, rgb(175.31, 175.31, 175.31) 0%, rgba(175.31, 175.31, 175.31, 0) 100%);
}

    .chrome-button .button-shadow { 
    }

    .chrome-button .button-body {
        border: none;
        cursor: pointer;
        background-color: transparent;
        padding: 10px;
        max-width: 180px;
        max-height: 180px;
        border-radius: 90px;
    }

    .chrome-button .button-frame {
        position: relative;
        background-color: transparent;
    }

    .chrome-button .button-text { 
        position: relative;
        color: white;
        font-size: 28px;
    }


.chrome-button-clicked .button-shadow {
    background-color: rgb(0, 212, 255, 0.62);
    transform: scale(2);
}

.chrome-button-clicked .button-body {
    /*        animation-name: flash_border;
        animation-duration: 4s;
        animation-timing-function: linear;
        animation-iteration-count: infinite;

        -webkit-animation-name: flash_border;
        -webkit-animation-duration: 4s;
        -webkit-animation-timing-function: linear;
        -webkit-animation-iteration-count: infinite;

        -moz-animation-name: flash_border;
        -moz-animation-duration: 4s;
        -moz-animation-timing-function: linear;
        -moz-animation-iteration-count: infinite;*/

    border-color: white;
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
    transform: Scale(1.2);
}

.chrome-button-clicked .button-text { 
    font-size: 24px;
}

.chrome-button-clicked .button-body {
    cursor: pointer;
}
