html, body {
    font-family: 'Roboto';
    scrollbar-width: none;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }


/*GOLDFINGER*/

:root {
    --unselected-color: rgb(218, 20, 109);
    --selected-color: #A60F53;
    --error-color: #D9146C;
}

svg text {
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.readonlytext {
    font-size: 16pt;
    text-align: center;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


.pulseButton {
    width: 140px;
    height: 140px;
    border: none;
    box-shadow: 0 0 0 0 #c11959;
    box-shadow: 0 0 0 0 rgba(193, 25, 89, 0.7);
    border-radius: 50%;
    background-color: #F11267;
    background-size: cover;
    background-repeat: no-repeat;
 /*   cursor: pointer;*/
    -webkit-animation: pulse 1.50s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulse 1.50s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulse 1.50s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulse 1.50s infinite cubic-bezier(0.66, 0, 0, 1);
}

/*
.pulseButton:hover {
        -webkit-animation: none;
        -moz-animation: none;
        -ms-animation: none;
        animation: none;
    }
*/

playButtonOff {
    display: none;
}

@-webkit-keyframes pulse {
    to {
        box-shadow: 0 0 0 25px rgba(214, 18, 103, 0);
    }
}

@-moz-keyframes pulse {
    to {
        box-shadow: 0 0 0 25px rgba(214, 18, 103, 0);
    }
}

@-ms-keyframes pulse {
    to {
        box-shadow: 0 0 0 25px rgba(214, 18, 103, 0);
    }
}

@keyframes pulse {
    to {
        box-shadow: 0 0 0 25px rgba(214, 18, 103, 0);
    }
}


/* start animations*/

.hithere {
    transform-origin: 50% 50%;
    transform-box: fill-box;
    animation: hithere 2.0s ease;
}

@keyframes hithere {
    30% {
        transform: scale(1.2);
    }

    40%, 60% {
        transform: rotate(-20deg) scale(1.2);
    }

    50% {
        transform: rotate(20deg) scale(1.2);
    }

    70% {
        transform: rotate(0deg) scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.grow {
    transform-origin: 50% 50%;
    transform-box: fill-box;
    animation: grow 2s ease infinite;
}

@keyframes grow {
    from {
        transform: scale(1.0);
    }

    to {
        transform: scale(1.6);
    }
}
