@charset "UTF-8";

.c-button._shiny {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto 18px;
    background-color: #008F00;
    box-shadow: 0 3px 0 0 #048004;
    border-radius: 4px;
    padding: 10px;
    font-weight: 600;
    font-size: clamp(1.25rem, 1.102rem + 0.74vw, 1.75rem);
    letter-spacing: .2em;
    max-width: 400px;
    width: 80%;
    color: #fff;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
  transition: 300ms;
}

.c-button._shiny img{
    height: 30px;
    margin-right: 5px;
    width: auto;
}

.c-button._shiny::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #b5e7ff;
    transition: 300ms;
    /*animation: shinyshiny 2.5s ease-in-out infinite;*/
}

.c-button._shiny:hover {
    text-decoration: none;
    color: #fff;
    box-shadow: none;
    -webkit-transform: translateY(3px);
    background-color: #07bd07;


}

.c-button._shiny-f {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto 18px;
    background-color: #00a0ea;
    box-shadow: 0 3px 0 0 #008dc9;
    border-radius: 4px;
    padding: 10px;
    font-weight: 600;
    font-size: clamp(1.25rem, 1.102rem + 0.74vw, 1.75rem);
    letter-spacing: .2em;
    max-width: 400px;
    width: 80%;
    color: #fff;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
  transition: 300ms;
}

.c-button._shiny-f img{
    height: 30px;
    margin-right: 5px;
    width: auto;
}

.c-button._shiny-f::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #b5e7ff;
    transition: 300ms;
    /*animation: shinyshiny 2.5s ease-in-out infinite;*/
}

.c-button._shiny-f:hover {
    text-decoration: none;
    color: #fff;
    box-shadow: none;
    -webkit-transform: translateY(3px);
    background-color: #1ebbff;


}


@-webkit-keyframes shinyshiny {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}