html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.fa-star {
    font-size: 24px;
    color: #ddd;
}

.checked {
    color: orange;
}

.product {
    margin-bottom: 20px;
}

@font-face {
    font-family: 'FontAwesome';
    src: url('~/fonts/fontawesome-webfont.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.scoreblink {
    animation: blinker 2s step-start 8;
}

/*@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.zen-score {
    animation: pulse 30s ease-in-out 1;
}
*/

/* Define the pulsing animation */
/*@keyframes textPulse {
    0%, 100% {
        transform: scale(1);*/ /* Normal size */
        /*opacity: 1;*/ /* Fully visible */
    /*}

    50% {
        transform: scale(1.1);*/ /* Slightly larger */
        /*opacity: 0.8;*/ /* Slightly faded */
    /*}
}*/

/* Apply the animation to your text */
/*.pulse-text {
    display: inline-block;*/ /* Ensures transform works properly */
    /*animation: textPulse 10s ease-in-out infinite;*/ /* Pulses over 30 seconds infinitely */
/*}*/