﻿
@keyframes beat {
    0%, 100%

{
    transform: scale(1);
}

50% {
    transform: scale(1.2);
}

}

.beat-effect {
    display: inline-block;
    animation: beat 2s infinite ease-in-out;
}

.content {
    -webkit-user-select: none; /* Chrome all / Safari all */
    -moz-user-select: none; /* Firefox all */
    -ms-user-select: none; /* IE 10+ */
    user-select: none;
}

.responsive {
    max-width: 80%;
    max-height: 150px;
}

.hpButton {
    display: inline-block;
    padding: 15px 20px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: black;
    background-color: #fff;
    border: none;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,.24);
    min-width: 250px;
    position: relative; /* Add this to position the badge within the button */
}

.skinnyButton {
    padding: 5px 20px !important;
}

.hpButton .fa {
    float: left;
}
.hpButton .fa-regular {
    float: left;
}

.hpButton:hover {
    background-color: lightgray
}

.hpButton:active {
    background-color: darkgray;
    box-shadow: 0 1px 3px rgba(0,0,0,.24);
}

.badge {
    background-color: var(--ClientColor);
    color: white;
    padding: 3px;
    border-radius: 0; /* Remove the circular shape */
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 10%; /* Adjusts to fill 10% of the button width */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}
    .badge .fa-circle-check {
        color: lightgreen;
    }
    .badge .fa-circle {
        color: white;
    }

.signinLink {
    color: black !important;
}