    
    @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
    
    * {
        font-family: "Roboto", sans-serif !important;
    }
    
    .questionnaire-wrapper{
        padding:15px;
        min-width:100%;
        position:relative;
        top:0;
        bottom:0;
        left:0;
        right:0;
    }
    
    .pv-page-window{
        width: 100%;
        height: auto;
        margin: 0% 0% 20px 0%;
        overflow: hidden;
        display: block;
        border: 0px solid gray;
        position: relative;
        min-height: 100px;
        min-width:100%;
    }
    .pv-page-wrapper{
        width: 300%;
        height: auto;
        position: relative;
        overflow: hidden;
        display: block;
        top: 0px;
        left: 0px;
        transition: left 1s;
    }
    .close-button{
        float: right;
    }
    .pv-page{
        display: block;
        float: left;
        min-height: 100px;
        padding: 0px;
    }
    .question{
        padding-top: 20px;
        padding-bottom: 5px;
        width:100%;
        min-width:100%;
    }
    .question-text{
        padding-bottom: 10px;
        font-size:24px;
        color:white;
        display:flex;
        gap:12px;
        justify-content:flex-start;
        align-items:flex-start;
        transition:all 1s linear;
        width: 100%;
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        min-width:100%;
    }
    
    .answer-buttons-wrapper{
        margin-top: 20px;
    }
    
    .question .answer-wrapper{
        width:auto;
        padding-left:25px;
        padding-top:2.5px;
        padding-bottom:2.5px;
        padding-right:25px;
        height:auto;
        border-radius:20px;
        display:flex;
        justify-content:center;
        align-items:center;
        float:left;
        margin-right:25px;
        position:relative;
        transition:0.15s linear all;
        cursor:pointer;
        background:#8bc5eb;
        color:black;
        visibility:hidden;
        opacity:0;
    }
    
            
    .question label{
        font-size: 20px;
        white-space: nowrap;
        display: block;
        float: left;
        font-weight:500;
        color:black;
    }
    
    .question-text > p{
        margin:0 !important;
        flex-shrink: 0;
        width: 30px; 
    }
    
    .question-text-container{
        width:100%;
        flex-grow: 1;
    }
    
    .visible {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .survey-button{
        width:auto;
        padding-left:25px;
        padding-top:2.5px;
        padding-bottom:2.5px;
        padding-right:25px;
        height:auto;
        border-radius:20px;
        display:flex;
        justify-content:center;
        align-items:center;
        float:left;
        margin-right:25px;
        position:relative;
        transition:0.15s linear all;
        cursor:pointer;
        background:#8bc5eb;
        color:black;
        visibility:hidden;
        opacity:0;
        margin-top:20px;
    }
    

    .survey-button > p{
        font-size: 20px;
        white-space: nowrap;
        display: block;
        float: left;
        font-weight:500;
        color:black;
        margin:0 !important;
    }
    
    .survey-button:hover,
    .answer-wrapper:hover{
        background:#3f9fde ;
        /*background:#8bc5eb;*/
    }
    
    .answer-wrapper:active{
        border:2px solid white;
        /*background:#8bc5eb;*/
    }

    
    .question input{
        margin-top: 0px;
    }
    
    input[type="radio"] {
        width: 125px;
        height:40px;
        position:absolute;
        appearance:none;
        cursor:pointer;
    }    
    
    .question input.first{
        margin-left: 0px;
    }
    
    .page-status-bar-wrapper{
        width: 200px;
        max-width: 80%;
        height: 16px;
        position: relative;
        background-color: #eeeeee;
        border: 1px solid #ededed;
        border-radius: 8px;
        overflow: hidden;
    }
    .page-status-bar{
        height: 16px;
        background-color: #253b68;
        width: 100%;
        position: relative;
        border-right: 2px solid white;
        /*
        clip-path: polygon(
            0 0, 
            100% 0,  
            80% 100%, 
            0 100% 
        );
        */
    }
    .submit-button{
        display: none;
    }
    
    .page-status{
        margin-bottom: 15px;
    }
    
    .question-text {
        display: flex;
        gap: 12px;
        align-items: flex-start;
    }
    
    .question-number {
        flex-shrink: 0;
        min-width: 25px;
        /*margin-left:25px;*/
    }
    
    .content-wrapper {
        flex: 1;
    }
    
    .answer-text-input-container{
        margin-top:15px;
    }
    
    .answer-text-input{
        border:0 !important;
        border-bottom:2px solid #727272 !important;
        font-size:24px !important;
        color:white !important;
        background:transparent !important;
        visibility:none;
        opacity:0;
        margin:0 !important;
        padding:0 !important;
        
    }
    
    .answer-text-input:focus{
        border-bottom:2px solid white !important;
    }
    
    .answer-text-input input::placeholder{
        font-size:24px;
        color:#727272 !important;
    }
    
    .page-counter{
        margin:0 !important;
        opacity:0;
    }
    
    /* Dynamic Characters */
    .dynamic-character{
        animation: 0.15s 1 normal characterAnimation;
    }
    
    .cursor{
        animation: 0.50s infinite normal cursorBlink;
    }
    
    @keyframes characterAnimation{
        from{
            transform:translate3d(0px,-3px,0px);
            opacity:0;
        }
        
        to{
            transform:translate3d(0px,0px,0px);
            opacity:1;
        }
        
    }
    
    @keyframes cursorBlink{
        from{
            opacity:0;
        }
        
        to{
            opacity:1;
        }
        
    }

    body .questionnaire-wrapper .hide{ 
        display: block !important;
        visibility: hidden !important
    }
    @media screen and (max-width: 767px) {
        .question input{
            margin-left: 10px;
        }
        /*.question .answer-wrapper{*/
        /*    width: 49%;*/
        /*    padding-bottom: 15px;*/
        /*}*/
    }





