<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">    .closeVideo {
       color: #d5ccd5;
       float: right;
       font-size: 28px;
       font-weight: bold;
       cursor: pointer;
    }
    .videoCloseTimesContainer {
       display: flex;
       justify-content: flex-end;
       align-items: center;
       position: sticky;
       top: 0;
       padding: 10px 60px 0 0;
    }
    
    .cbw-video-demo-modal {
        display: none;
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0,0,0,0.4);
    }
    .cbw-video-demo-modal-content {
        background-color: #fbfcfd;
        margin: 5% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 68%;
        height: 93%;
    }
    @media (max-width: 1500px) {
       .cbw-video-demo-modal-content {
         height: 88%;
         width: 85%;
       } 
    }
    @media (max-width: 1300px) {
       .cbw-video-demo-modal-content {
         height: 93%;
         width: 90%;
       } 
       .videoCloseTimesContainer {
         padding: 10px 35px 0 0;
       }
    }
    .cbw-video-demo-close {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
    }
    .cbw-video-demo-close:hover,
    .cbw-video-demo-close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }
    .iframe-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        height: 100%; 
    }
    .iframe-container iframe {
        width: 100%;
        height: 100%;
        border: none;
    }
   /* Stolen from: https://css-loaders.com/filling/ */
    .loading_interactive {
        width: fit-content;
        font-size: 40px;
        font-family: system-ui,sans-serif;
        font-weight: bold;
        text-transform: uppercase;
        color: #0000;
        -webkit-text-stroke: 1px #000;
        background:
            radial-gradient(0.71em at 50% 1em,#000 99%,#0000 101%) calc(50% - 1em) 1em/2em 200% repeat-x text,
            radial-gradient(0.71em at 50% -0.5em,#0000 99%,#000 101%) 50% 1.5em/2em 200% repeat-x text;
        animation: 
            l10-0 .8s linear infinite alternate,
            l10-1  4s linear infinite;
    }
    .loading_interactive:before {
        content: "Loading";
    }
    @keyframes l10-0 {
        to {background-position-x: 50%,calc(50% + 1em)}
    }
    @keyframes l10-1 {
        to {background-position-y: -.5em,0}
    }

    /* Play Iframe Button */
   .cbw-video-demo-img-button {
      display: none;
   }

	.cbw-interactive-video-demo-container {
   	display: none; 
   }

    @media(min-width: 1000px) {
	     .cbw-interactive-video-demo-container {
	        display: flex; 
           flex-direction: column;
           justify-content: center;
           align-items: center;
           text-align: center;
	      }

        .cbw-video-demo-img-button {
            display: flex;
            justify-content: center;
            background: none !important;
            width: 80%;
        }
        div.shortcodeContainer div.cbw-interactive-video-demo-container &gt; .cbw-video-demo-img-button {
            width: 100% !important;
        }
	/* Animation from: https://www.geeksforgeeks.org/top-20-css-button-animations/ */
        @keyframes pulse {
            0% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
            }

            70% {
                transform: scale(1);
                box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
            }

            100% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
            }
        }
    }

</pre></body></html>