.button {

    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;

}

video {

    width: 100%;
    height: 100%;

}

/* .md-typeset\_\_scrollwrap {

    overflow-x: hidden !important;

} */

.workingExample {

    position: relative;

}

.workingExample a {

    color: white;
    background-color:
        rgba(128, 128, 128, .5);
    position: absolute;
    bottom: 18px;
    right: 10px;
    font-family: monospace;
    font-size: 21px;
    padding: 0px 3px 0px 3px;
    user-select: none;
    line-height: 21px;
    border-radius: 2px;

}

.workingExample a:hover {

    color: white;
    background-color: rgba(255, 255, 255, .5);

}

.workingExample a:visited {

    color: white;

}

.text-typing p {

    margin: 0px;
    white-space: nowrap;
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
    animation: typing 1s steps(22, end) forwards;

}

@keyframes typing {

    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }

}

.play-video {

    opacity: 75%;

}

.play-dot {

    position: relative;
    height: 100px;
    width: 100px;
    left: 50%;
    margin-left: -50px;
    top: -250px;
    background-color: #000000;
    border-radius: 50%;
    pointer-events: none;

}

.play-arrow {

    position: relative;
    top: 25px;
    left: 40px;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 30px solid white;

}


/* make wide screen
.md-grid {
  max-width: 95%; 
}
*/

#sbcodePPVVDiv {
    display: none;
    border: 1px solid #666;
    padding: 4px;
    position: relative;
    background-color: --md-code-bg-color;
}

#sbcodePPVVDiv h2 {
    margin-top: 0px;
}

#sbcodePPVVDiv h3 {
    margin-top: 0px;
}

#sbcodePPVVDiv ul {
    font-size: 14px;
}

.ppvv-close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    border: none;
    background: transparent;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    padding: 0px 4px 0px 4px;
    border: 1px solid #666;
}

.ppvv-close-btn:hover {
    color: red;
}

/* .md-icon {
    margin-bottom: 7px;
} */

.safariAdjust {
    top: -25px !important;
}

.ppvvbutton {
    position: relative;
    top: -5px;
    width: 122px;
    height: 40px;
    font-size: 14px;
    padding-top: 4px;
    color: white;
    background: #222;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.15s ease;
}

.ppvvbutton:active {
    transform: scale(0.95);
}

/* neon border (inside) */
.ppvvbutton::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 3px;
    background: conic-gradient(from var(--angle, 0deg),
            red,
            orange,
            yellow,
            green,
            cyan,
            blue,
            violet,
            red);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.15;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

/* show neon border on hover */
.ppvvbutton:hover::after {
    opacity: 1;
}

.md-typeset__table {
    min-width: 570px;
}