* {
    font-family: "Code Pro LC";
    /* font-style: normal; */
    font-weight: normal;
    box-sizing: border-box;
    margin:0;
    line-height: normal;
}
*:not(input){
    user-select: none;
}

input:enabled{
    cursor:pointer;
}

body button,
body button:focus,
body button:active{
	outline: none;
    -webkit-appearance: none;
    cursor: pointer;
    border: none;
}
html, body{
    background-color: #FFF;
    width: 100%;
    height: 100%;
    /* width: 1920px;
    height: 1080px; */
    position: relative;
    overflow: hidden;
}
a{
    color:#fff!important;
    cursor: pointer;
}
strong{
    font-family: 'Code Pro';
    font-weight: bold !important;
}
p{
    margin:0;
}
.row{
    /* padding: 0 40px; */
}

.border-purple{
    border-bottom: 2px solid #ad2673;
}
.border-green{
    border-bottom: 2px solid #00b399;
}
.text-purple{
    color: #844f7f;
}
.text-grey{
    color: #B4B5B6;
}
.text-grey-dark{
    color: #77787B;
}
.text-blue{
    color: #004B70;
}
.text-green{
    color: #00b399;
}
.text-white{
    color: #ffffff;
}

.fw-light, .fw-bold{
    font-family: 'Code Pro';
}
.fw-bold.pro{
    font-family: 'Code Pro Bold LC';
}

#home, #main{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    background-size: cover;
    /* padding: 0 40px; */
}
#home{
    /* display: none; */
    background-image: url('../images/homebkg.png');
    z-index: 100;
}
#main{
    display: none;
    background-image: url('../images/mainbkg.png');
}

/* HOMEPAGE */
#date{
    margin: 150px auto 110px;
    font-size: 68px;
}
#homelogo{
    margin-bottom: 140px;
}
#homebtn{
    font-size: 100px;
    padding: 7px 40px;
    border-radius: 80px;
    background-color: #ffffff;
}

/* MAINPAGE */
#header{
    position: absolute;
    left: 0;
    top: 80px;
    width: 100%;
    /* background-color: #004B70; */
}
/* @keyframes returnbtnanim {
    0% {width: 0; height: 0; left: 77px; top: 37px;}

    100% {width: 74px; height: 74px; left: 47px; top: 0px;}
} */
#returnbtn{
    /* display: none; */
    position: absolute;
    width: 0; height: 0; left: 77px; top: 37px;
    transition: all 0.25s;
}
#returnbtn.show{
    width: 74px; height: 74px; left: 40px; top: 0px;
}
#mainlogo{
    position: absolute;
    right: 50%;
    top: 0;
    width: 935px;
    height: auto;
    transform: translateX(50%);
    transition: all 1s;
}
#mainlogo.right{
    right: 40px;
    text-align: end;
    width: 518px;
    transform: none;
}

#casebtncontainer{
    position: absolute;
    width: calc(100% - 30px);
    left: 15px;
    right: 15px;
    top: 600px;
}
@keyframes casebtnanim {
    0% {opacity: 0;}

    100% {opacity: 1;}
}
#casebtncontainer .casebtn{
    position: relative;
    font-size: 60px;
    padding: 35px 35px;
    border-radius: 80px;
    background-color: #779213;
    animation: casebtnanim 0.5s linear 0s 1 forwards;
}
#casebtncontainer .casebtn span{
    /* display: none; */
    position: absolute;
    font-size: 28px;
    color: #844f7f;
    bottom: -55px;
    left: 50%;
    transform: translateX(-50%);
    text-transform: none;
    font-family: 'Code Pro Bold LC';
    font-weight: bold !important;
}
#casebtncontainer .casebtn.completed{
    background-color: #844f7f;
}
#casebtncontainer .casebtn.completed span{
    display: unset;
}

#popupcontainer{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}
#popup{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    /* min-width: 50%; */
    /* min-height: 20%; */
    /* max-width: 70%; */
    width: 850px;
    padding: 40px;
    background-color: #f1f3e7;
    border-radius: 25px;
    border: 6px solid #844f7f;
}
#popup video{
    width: 100%;
}
#content img{
    /* max-width: 350px; */
    max-width: 100%;
    display: block;
    hwight: auto;
    box-shadow: 0px 0px 20px 0px #000000;
}
#content p, #popup #content p.fw-bold.pro{
    font-size: 32px !important;
}
#popup #content *{
    font-size: 30px !important;
}
#content .popupbtn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0; 
    height: 0; 
    border-top: 60px solid transparent;
    border-bottom: 60px solid transparent;
}
#content .popupbtn.right{
    right: -100px;
    border-left: 60px solid #779213;
}
#content .popupbtn.left{
    left: -100px;
    border-right: 60px solid #779213;
}
#content>div:not(:first-child):not(.row){
     display: none;
}
#closepopupbtn{
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 170px;
}
/* Could Use thise as well for Individual Controls */
/* video::-webkit-media-controls-play-button {display: none;} */
video::-webkit-media-controls-volume-slider {display: none;}
video::-webkit-media-controls-mute-button {display: none;}
/* video::-webkit-media-controls-timeline {display: none;} */
/* video::-webkit-media-controls-current-time-display {display: none;} */

#footer{
    position: absolute;
    left: 0;
    bottom: 200px;
    width: 100%;
    /* background-color: #004B70; */
}
#infobtn{
    /* display: none; */
    position: absolute;
    width: 0; height: 0; left: 92px; top: 37px;
    transition: all 0.25s;
}
#infobtn.show{
    width: 104px; height: 74px; left: 40px; top: 0px;
}
#infobtn.disabled{
    filter: grayscale();
    pointer-events: none;
}
#openformbtn{
    /* display: none; */
    position: absolute;
    width: 0; height: 0; right: 193px; top: 37px;
    transition: all 0.25s;
}
#openformbtn.show{
    width: 306px; height: 74px; right: 40px; top: 0px;
}

#casecontainer{
    display: none;
    position: absolute;
    top: 200px;
    width: 100%;
    padding: 0 40px;
}
.casetitle{
    font-size: 44px;
}
.casesubtitle{
    font-size: 27px;
}
.case{
    position: relative;
    /* display: none !important; */
    background-color: #f1f3e7;
    /* border: 3px solid #844f7f; */
    padding: 10px;
    width: 100%;
    height: 520px;
    /* overflow: auto; */
    margin-top: 60px;
}
.case .title{
    font-size: inherit;
    position: absolute;
    top: -45px;
    left: 0;
    color: #779213;
}
.case .description{
    padding-top: 30px;
    list-style-position: outside;
}
.case .description>li{
    font-size: 80%;
    margin-bottom: 20px;
}
.case .description>li.small{
    font-size: 70%;
}
.case .description p{
    font-size: 100%;
}
div.small{
    font-size: 60%;
}
#questioncontainer{
    display: none;
    margin-top: 100px;
}
#questiontitle, #question{
    font-size: 27px;
    padding: 0;
}
#question{
    margin-bottom: 40px;
}
#questioncontainer .answer{
    position: relative;
    font-size: 30px;
    margin-bottom: 20px;
    margin-left: 40px;
}
#questioncontainer[maxanswers="20"]{
    margin-top: 50px;
}
#questioncontainer[maxanswers="20"] .answer{
    width: calc(50% - 40px);
    float: left;   
}
#questioncontainer[maxanswers="20"] .perc{
    height: 25px;
}
.answer::before{
    content: "";
    background-image: url("../images/circle.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    /* width: 35px;
    height: 35px;
    left: -40px;
    top: 50%;
    transform: translateY(-50%); */
    width: 2%;
    height: 100%;
    left: -1.5%;
    top: 0;
    transform: translate3d(-20%, -0.2rem, 0);
}
.answer.selected{
    color: #779213;
}
.answer.selected::before{
    background-image: url("../images/circleselected.png");
}
#sendAnswer, #sendAnswerEnd{
    /* display: none; */
    position: absolute;
    width: 0; height: 0; right: 321px; top: 44px;
    transition: all 0.25s;
}
#sendAnswer.show, #sendAnswerEnd.show{
    width: 562.5px; height: 92px; right: 40px; top: 0px;
}
#sendAnswer.admin, #sendAnswerEnd.admin{
    width: 0; height: 0; right: 193px; top: 37px;
}
#sendAnswer.admin.show, #sendAnswerEnd.admin.show{
    width: 306px; height: 74px; right: 40px; top: 0px;
}

#endpanel{
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    padding: 0 40px;
}
#endtext{
    font-size: 60px;
}
#closebtn{
    /* display: none; */
    position: absolute;
    width: 0; height: 0; right: 50%; top: 234px;
    transform: translateX(50%);
    transition: all 0.25s;
}
#closebtn.show{
    width: 240px; height: 88px; right: 50%; top: 250px;
}

#questioncontainer .answer.admin{
    /* width: auto; */
    width: 100%;
}
#questioncontainer[maxanswers="20"] .answer.admin{
    width: calc(50% - 40px);
    float: left;   
    margin-bottom: 0;
    min-height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.perc{
    position: relative;
    min-width: 5px;
    /* width: 130px; */
    height: 30px;
    background-color: #779213;
    display: table;
}
/* .perc::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20%;
    height: 100%;
    background-color: #844f7f;
} */
.perc span{
    position: absolute;
    right: calc(100% + 10px);
    font-size: 100%;
    font-style: italic;
}

#hiddenbtn{
    /* background-color: #004b705b; */
    position: absolute;
    width: 110px;
    height: 110px;
    right: 445px;
    top: -117px;
}

ul .custom-table ul{
    list-style: disc;
    min-width: 550px;
}
.custom-table ul{
    margin-bottom: 0;
}
.custom-table td{
    padding: 10px;
}

/* Adjustment for microsoft surface 2736x1824 set with 200% text dimension -> 1368x912*/
@media screen and (max-width: 1368px){
    #date {
        margin: 119px auto 110px;
        font-size: 45px;
    }
    #homelogo {
        margin-bottom: 200px;
    }
    #homebtn{
        font-size: 65px;
    }

    #header{
        top: 70px;
    }
    #returnbtn{
        width: 0; height: 0; left: 70px; top: 30px;
    }
    #returnbtn.show{
        width: 60px; height: 60px; left: 40px; top: 0px;
    }
    #mainlogo{
        width: 760px;
    }
    #mainlogo.right{
        right: 40px;
        text-align: end;
        width: 450px;
        transform: none;
    }
    
    #casebtncontainer{
        top: 450px;
    }
    #casebtncontainer .casebtn{
        font-size: 40px;
    }

    #footer{
        bottom: 160px;
    }
    #infobtn{
        width: 0; height: 0; left: 85px; top: 30px;
    }
    #infobtn.show{
        width: 90px; height: 63.86px; left: 40px; top: 0px;
    }
    #openformbtn{
        width: 0; height: 0; right: 186px; top: 30px;
    }
    #openformbtn.show{
        width: 292px; height: 70.47px; right: 40px; top: 0px;
    }

    #casecontainer{
        top: 168px;
    }
    .casetitle{
        font-size: 40px;
    }
    .casesubtitle{
        font-size: 23px;
    }
    .case{
        height: 450px;
    }

    #questioncontainer{
        margin-top: 40px;
    }
    #questiontitle, #question{
        font-size: 23px;
    }
    #question{
        margin-bottom: 30px;
    }
    #questioncontainer .answer{
        font-size: 26px;
    }

    #sendAnswer, #sendAnswerEnd{
        width: 0; height: 0; right: 240px; top: 36px;
    }
    #sendAnswer.show, #sendAnswerEnd.show{
        width: 400px; height: 65.42px; right: 40px; top: 0px;
    }
    
    #endtext{
        font-size: 42px;
    }
    #closebtn{
        width: 0; height: 0; right: 50%; top: 234px;
    }
    #closebtn.show{
        width: 240px; height: 88px; right: 50%; top: 190px;
    }

    #hiddenbtn{
        width: 110px;
        height: 110px;
        right: 385px;
        top: -100px;
    }
}
.pe-6{
    /* padding-right: 65px; */
    padding-right: 71px;
}