/********************************************************************/
/*                                                                  */
/*                                                                  */
/*                           Pulsing                                */
/*                                                                  */
/*                                                                  */
/********************************************************************/
/* Make the element pulse (grow large and small slowly) */
/* Usage
    .myElement {
        animation: pulsate 1s ease-out;
        animation-iteration-count: infinite;
        opacity: 1; 
    }
*/
@-webkit-keyframes pulsate {
    0% {-webkit-transform: scale(0.1, 0.1); opacity: 0.0;}
    50% {opacity: 1.0;}
    100% {-webkit-transform: scale(1.2, 1.2); opacity: 0.0;}
}
/* Make the element's opacity pulse*/
/* Usage
    .myElement {
        animation: opacityPulse 1s ease-out;
        animation-iteration-count: infinite;
        opacity: 0; 
    }
*/
.opacityPulse-css {
    animation: opacityPulse 2s ease-out;
    animation-iteration-count: infinite; 
    opacity: 1;
    text-align: center;
}
@-webkit-keyframes opacityPulse {
    0% {opacity: 0.5;}
    50% {opacity: 1.0;}
    100% {opacity: 0.5;}
}
.cryoOpenPulse-css {
    animation: cryoOpenPulse 5s ease-out;
    animation-iteration-count: infinite; 
    opacity: 1;
    text-align: center;
    border-radius: 50px;
    background-color: #0000ff;
}
@-webkit-keyframes cryoOpenPulse {
    0% {opacity: 0;}
    50% {opacity: 1.0;}
    100% {opacity: 0;}
}
.cryoPressurizedPulse-css {
    animation: cryoPressurizedPulse 5s ease-out;
    animation-iteration-count: infinite; 
    opacity: 1;
    text-align: center;
    border-radius: 50px;
    background-color: #ffff00;
}
@-webkit-keyframes cryoPressurizedPulse {
    0% {opacity: 0;}
    50% {opacity: 1.0;}
    100% {opacity: 0;}
}
/* Make the element's background pulse. I call this alertPulse because it is red. You can call it something more generic. */
/* Usage
    .myElement {
        animation: alertPulse 1s ease-out;
        animation-iteration-count: infinite;
        opacity: 1; 
    }
*/
.alertPulse-css {
    animation: alertPulse 2s ease-out;
    animation-iteration-count: infinite;
    opacity: 1;
    padding: 5px;
    text-align: center;
    border-radius: 50px;
    background: rgb(255, 0, 0);
}
@-webkit-keyframes alertPulse {
    0% {background-color: rgb(255, 0, 0); opacity: 0;}
    50% {opacity: rgb(255, 0, 0); opacity: 1; }
    100% {opacity: rgb(255, 0, 0); opacity: 0;}
}
.warningPulseON-css {
    animation: warningPulseON 1s ease-out;
    animation-iteration-count: infinite;
    opacity: 1;
    padding: 5px;
    text-align: center;
    background: rgb(255, 0, 0);
}
@-webkit-keyframes warningPulseON {
    0% {background-color: rgb(255, 0, 0); opacity: 0.5;}
    50% {opacity: rgb(255, 0, 0); opacity: 1; }
    100% {opacity: rgb(255, 0, 0); opacity: 0.5;}
}
.cautionPulseON-css {
    animation: cautionPulseON 2s ease-out;
    animation-iteration-count: infinite;
    opacity: 1;
    padding: 5px;
    text-align: center;
    background: #EC971F;
}
@-webkit-keyframes cautionPulseON {
    0% {background-color: #EC971F; opacity: 0.5;}
    50% {opacity: #EC971F; opacity: 1; }
    100% {opacity: #EC971F; opacity: 0.5;}
}
.warningPulseOFF-css {
    opacity: 0.25;
    padding: 5px;
    text-align: center;
    background: rgb(255, 0, 0);
}
.cautionPulseOFF-css {
    opacity: 0.25;
    padding: 5px;
    text-align: center;
    background: #EC971F;
}
/* Make the element rotate infinitely. */
/* 
Usage
    .myElement {
        animation: rotating 3s linear infinite;
    }
*/
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/********************************************************************/
/*                                                                  */
/*                                                                  */
/*                         Chart Styling                            */
/*                                                                  */
/*                                                                  */
/********************************************************************/
.apexcharts-tooltip {
    background: #f3f3f3;
    color: black;
}