/* Custom DRAG AND DROP css
--------------------------------------------------

 */
#game-screen {
    margin-top: 3%;
}
.choice-item img, .userAnswersImage img {
    width: 100%;
    height: auto;
}
.choice-item img:hover {
    cursor: pointer;
    box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.5)
}
.choice-item {
    position: relative;
}
.choiceTextContent {
    position: absolute;
    bottom: 10%;
    width: 84%;
    margin: 10% 3% 15% 3%;
    font-size: 1.2em;
    background: rgba(0, 0, 0, 0.5);
    color: white;
}
.titleBlock {
    color: #fff;
}
.titleBlock.dark {
    color: #000;
    background: rgb(204, 204, 204); /* Fallback for older browsers without RGBA-support */
    background: rgba(204, 204, 204, 0.5);
    pointer-events: none;
    
}
.choice-item:after {
    font-weight: 700;
    font-size: 36px;
    position: relative;
    top: -50px;
    color: #FFF;
    content: attr(data-choicelabel);
}
#button-group {
    margin: 3% 0;
}
#question h1 {
    left: -100px;
    -webkit-animation: slidein 0.5s forwards;
    animation: slidein 0.5s forwards;
}
@-webkit-keyframes slidein {
    100% {
        left: 0;
    }
}
@keyframes slidein {
    100% {
        left: 0;
    }
}

/*FEEDBACK*/
#feedback table {
    table-layout: fixed;
    width: 100%;
    white-space: nowrap;
    counter-reset: my-counter;
    font-size: 1.3em;
}
#feedback table td {
    white-space: normal;   
    word-wrap: break-word;
    border-top: 1px dashed #000;
}
#feedback table tr {
    text-align: left;
    position: relative;
    border-bottom: 1px dashed #000;
    min-height: 1em;
    line-height: 2em;
    vertical-align: middle;
    padding-left: 1em;
    width: 100%;
}
th {
    border: 0;
    border-top: 1px dashed #000;
}
#header-value {
    width: 60%;
}
#header-userAnswer, #header-gameAnswer, #header-icon {
    min-width: 1em;
    width: 15%;
}
#feedback {
    display: none
}

/* ----------- Large Display ----------- */
@media screen and (max-width:1920px) and (max-height:1080px) {

    /* Styles */
}

/* ----------- Laptop HiDPI screen ----------- */
@media screen and (max-width:1440px) and (max-height:900px) {

    /* Styles */
}

/* ----------- Laptop ----------- */
@media screen and (max-width:1366px) and (max-height:768px) {

    /* Styles */
}

/* ----------- Laptop MDPI screen ----------- */
@media screen and (max-width:1280px) and (max-height:800px) {

    /* Styles */
}

/* ----------- iPad ----------- */
@media only screen and (max-device-width:1024px) and (max-device-height:768px) {

    /* Styles */
    #activity {
        font-size: 1em;
    }
}

/* ----------- iPhone 5 ----------- */
@media only screen and (max-device-width:568px) and (max-device-height:320px) {

    /* Styles */
}
@media print {
    #question-holder {
        display: none
    }
    .btn {
        display: none
    }
    footer {
        display: none
    }
    #intro {
        display: none
    }
    #activity {
        text-align: left;
        border: none !important
    }
    #feedback .question-item {
        margin-bottom: 12px
    }
}