body {
    background: #ffffff;
    color: #182857;
    font-family: sans-serif;
    /* margin: 6px; */
}

.contentShowing {
    background: #ffffff;
}

.contentBackgroundBlack {
    background: #000000;
}

.contentBackgroundWhite {
    background: #FFFFFF;
}

.detecting {
    background-color: #ff0;
}

.detected {
    background-color: #0f0;
}

button {
    margin: 1em 0 0;
    padding: 1em;
}

#diagnostics {
    border: 2px solid;
    border-color: black;
}

#diagnostics .row {
    font-size: 10px;
}

.audazzio-small {
    font-size: 12px;
}

.audazzio-blue {
    color: #182857;
}

.audazzio-gray {
    color: #bbbbbb;
}

.audazzio-mic-on {
    color: #e32906;
}


/*
Audazzio blue #182857
Audazzio Yellow #fcb876
 */

.form-check-input-audazzio-blue:checked {
    background-color: #182857;
    border-color: #182857;
}

.btn-audazzio-blue {
    --bs-btn-bg: #182857;
    --bs-btn-border-color: #182857;
    --bs-btn-disabled-bg: #182857;
    --bs-btn-disabled-border-color: #182857;
}

.btn-outline-audazzio-blue {
    --bs-btn-color: #182857;
    --bs-btn-border-color: #182857;
    --bs-btn-hover-bg: #182857;
    --bs-btn-hover-border-color: #182857;
    --bs-btn-active-bg: #182857;
    --bs-btn-active-border-color: #182857;
    --bs-btn-disabled-color: #182857;
    --bs-btn-disabled-border-color: #182857;
}

.input-rightsize {
    width: auto;
}

.logo {
    border: 0;
    border-width: 0;
    width: 42px;
}

#audazzioContent {
    border: none;
    width: 100%;
}

/*
#podcastArea {
}
*/

#podcastArea .row {
    font-size: 10px;
}

td {
    text-align: center;
}

.novisible {
    visibility: hidden;
}

.nodisplay {
    display: none;
}

.z1 {
    z-index: 1;
}

.z3 {
    z-index: 3;
}

#about {
    position: absolute;
    z-index: 10;
    bottom: 0px;
    right: 0px;
    width: 25px;
    height: 25px;
}

#console {
    opacity: 0.9;
    position: absolute;
    z-index: 4;
    overflow: hidden;
    pointer-events: none;
}

#content {
    opacity: 1;
    position: absolute;
    z-index: 1;
}
#idle {
    opacity: 1;
    position: absolute;
    z-index: 2;
}

#playerControlsContainer {
    text-align: center;
}

.consoleScrollingLine {
    font-size: 10px;
    position: relative;
    background-color: #fff;
    color: #000;
    overflow-x: auto;
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word;
    margin: 0;
}


/*  ANIMATION */

#container-pulse {
    margin: 0 auto;
    align-items: center;
    display: flex;
    height: 100vh;
    justify-content: center;
    position: relative;
    width: 100%;
}
.box-pulse {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.pulse {
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    height: 100px;
    justify-content: center;
    position: relative;
    width: 100px;
}
.pulse::before,
.pulse::after {
    background-color: #fcb876;
    border-radius: 50%;
    bottom: 0;
    content: "";
    left: 0;
    opacity: .8;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}
.pulse::before {
    animation: pulse-circle-keyframes 2s ease-out infinite;
}
.pulse::after {
    animation: pulse-circle-keyframes 2s 1s ease-out infinite;
}
.pulse-logo-fast {
    animation: pulse-logo-keyframes 1s ease-in-out infinite;
    margin-top: 5px;
}

.pulse-logo-slow {
    animation: pulse-logo-keyframes 4s ease-in-out infinite;
    margin-top: 5px;
}


/* pulse animation of heartbeat */
@keyframes pulse-logo-keyframes {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
/* pulse animation of circle */
@keyframes pulse-circle-keyframes {
    100% {
        transform: scale(1);
    }
    0% {
        opacity: 0;
        transform: scale(1.8);
    }
}
