/* Custom DRAG AND DROP css
--------------------------------------------------
MID GREY    #999999
LIGHT GREY  #E6E6E6
DARK GREEN  #4f959b
MID GREEN   #9dced2
LIGHT GREEN #AFE5EA
LIGHT BLUE  #38C0CB
RED         #C8374E
ORANGE      #CB4938


 */
#button-group {
    margin: 3% 0;
}
#feedback {
    display: none;
    font-size: 1.2em;
    padding-top: 2%;
}
#question-holder {
    text-align: left
}
#question {
    position: relative;
}
.user-input {
    padding: .5em;
    border: 1px solid #044B7F;
    background-color: #FFF;
    min-height: 140px;
    margin-bottom: 1em;    /* position: relative; */
    padding-bottom: 25px;
    font-size: 1.5em;
    word-wrap: break-word;
}
.user-input:focus {
    border: 1px solid #283786;
}
.suggested-response-item {
    min-height: 3em;
    border: 3px solid #283786;
    color: #283786;
    background-color: #fff;
    font-size: 1.2em;
    padding: 1em;
    opacity: 0;
}
.fadein, .fadeout {
    opacity: 0;
    -moz-transition: opacity 0.4s ease-in-out;
    -o-transition: opacity 0.4s ease-in-out;
    -webkit-transition: opacity 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out;
}
.fadein {
    opacity: 1;
}
.slideup, .slidedown {
    max-height: 0;
    overflow-y: hidden;
    -webkit-transition: max-height 0.5s ease-in-out;
    -moz-transition: max-height 0.5s ease-in-out;
    -o-transition: max-height 0.5s ease-in-out;
    transition: max-height 0.5s ease-in-out;
}
.slidedown {
    max-height: 20em;
}
.question-item {
    text-align: left
}
.suggested-answer-feedback {
    border-right: 1px dashed #000;
    border-left: 1px dashed #000;
}

/*TABLE STYLING
*/
tr:first-child {
    background-color: #C5C4DC;
}
td, tr, .table-bordered>tbody>tr>td {
    border: 3px solid #283786;
}
td, tr {
    width: 33%;
}
th.question {
    background-color: #C5C4DC;
    font-weight: bold;
    font-size: large;
}
td >.user-input {
    padding: 0;
    margin-bottom: 0;
}
#table td, #table th {
    border: 3px solid #283786;
    max-width: 35%;
    font-size: large
}
#table th {
    background-color: #C5C4DC;
    font-size: large;
    width: 20%;
}

/* ----------- iPad ----------- */
@media only screen and (max-device-width:1024px) and (max-device-height:768px) {

    /* Styles */
    #activity {
        font-size: 1em;
    }
}

@media print {
    #question-holder, #feedbackHeaders, .navbar-header, #feedback h4, #intro {
        display: none
    }
    .suggested-response-item-holder {
        display: inline-block;
    }
    #activity {
        text-align: left;
        border: none !important;
        height: auto;
        min-height: auto;
    }
    .navbar {
        padding-top: 0;
        margin-top: 0;
        margin-bottom: 0;
    }
    #titles h3 {
        margin-top: 0;
    }
    nav, .navbar, h3, h4 {
        page-break-after: avoid;
    }
    .user-input-feedback {
        page-break-inside: avoid;
    }
    .question-feedback, .suggested-answer-feedback {
        font-style: italic;
    }
    textarea {
        border: none;
        color: #333;
    }
}