pre {
    white-space: pre-wrap;       /* Since CSS 2.1 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
}
.jp-play,
.jp-pause{
    width:120px;
    height:120px;
    background-image: url('https://boredhumans.com/farts/images/fart.png');
    background-size: 100%;
    border-radius: 50%;
    border:none !important;
}
.centered {
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: linear-gradient(rgba(133, 133, 133, 0.6), rgba(99, 98, 98, 0.8));
    width: 100%;
}
.img-full-width {
    width: 100%;
}     
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#loader-jr {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    margin: auto;
}

/* OVERLAY LOADER */

.overlay-spinner {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(77, 77, 77, 0.3);
    z-index:10000;
    display: none;
}

.overlay__inner-spinner {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.overlay__content-spinner {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.spinner {
    width: 75px;
    height: 75px;
    display: inline-block;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.05);
    border-top-color: #fff;
    animation: spin 1s infinite linear;
    border-radius: 100%;
    border-style: solid;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* TYPING DOTS */

.dot-flashing {
    position: relative;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: #414141;
    color: #414141;
    animation: dot-flashing 1s infinite linear alternate;
    animation-delay: 0.5s;
    /* margin:auto; */
    margin: 1vh auto;
}
.dot-flashing::before, .dot-flashing::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
}
.dot-flashing::before {
    left: -15px;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: #414141;
    color: #414141;
    animation: dot-flashing 1s infinite alternate;
    animation-delay: 0s;
}
.dot-flashing::after {
    left: 15px;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: #414141;
    color: #414141;
    animation: dot-flashing 1s infinite alternate;
    animation-delay: 1s;
}

@keyframes dot-flashing {
    0% {
        background-color: #2e2e2e;
    }
    50%, 100% {
        background-color: rgba(109, 109, 109, 0.2);
    }
}
.card-text {
    word-wrap: break-word;
}

#overlay {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.8); /* Black background with opacity */
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
}

#overlay_text{
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 50px;
    color: white;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
}

#rps_countdown{
    width:100%;
    font-size:48px;
    font-weight: bolder;
    text-align: center;
    color: black;
    /* -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: blueviolet; */
    /* z-index: 10; */
}

.chars:hover{
    /* box-sizing:border-box; */
    border: 6px solid #f60;
    border-radius: var(--bs-border-radius);
    transition-duration: 0.4s;
}

/* FOOTER */
.bg-red{
    background-color: #f00;
}

.button_footer {
    background: none!important;
    border: none;
    padding: 0!important;
    /*optional*/
    font-family: arial, sans-serif;
    /*input has OS specific font-family*/
    color: blue;
    text-decoration: underline;
    cursor: pointer;
}