/* Custom DRAG AND DROP css
--------------------------------------------------

 */
#button-group {
    margin: 3% 0;
}
#feedback {
    display: none;
    padding-top: 2%;
}
#question-holder {
    text-align: left
}
#questionHeaders {
    height: 3em;
    padding-top: 1em;
}
.textlabel {
    background-color: #044B7F;
    border: 1px solid #044B7F;
    border-radius: 6px 6px 0 0;
    color: #FFF;
    float: left;
    font-size: 1.2em;
    padding: 0.5em 1em;
}
.user-input {
    padding: 1em;
    background-color: #FFF;
    border: 1px solid #044B7F;
    margin-top: -2px;
    min-height: 140px;
    margin-bottom: 1em;
    position: relative;
    padding-bottom: 25px;
    font-size: 1.3em;
    word-wrap: break-word;
}
.user-input:focus {
    border: 1px solid #283786;
}
.translate-text:after {
    content: "\f11c";
    font-family: FontAwesome;
    font-size: 24px;
    position: absolute;
    bottom: 0px;
    right: 10px;
    color: #AAA;
}
.question-item {
    text-align: left;
    display: none;
}
.question-item:first-child {
    display: block;
}
.suggested-response-item {
    min-height: 3em;
    color: #044B7F;
    background-color: #ccdbe5;
    font-size: 1.3em;
    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: 100%;
}

/*FEEDBACK
*/
#feedbackHeaders {
    font-weight: bold;
    font-size: 1.2em;
    line-height: 3em;
    margin-top: 1em;
}
#feedbackHeaders h3 {
     font-weight: bold;
}
.activity-feedback {
    text-align: left;
    position: relative;
    bottom: 0;
    display: block;
    border-bottom: 1px dashed #000;
   
    line-height: 2em;
    vertical-align: top;
    padding-left: 1em;
    padding-bottom: 2em;
    margin-bottom: 2em;
}
#feedback {
    position: relative;
    bottom: 0;
    display: none;
    counter-reset: my-counter;
}
div.activity-feedback:last-of-type {
    border-bottom: none;
    margin-bottom: 2em;
}
.activity-feedback:before {
    content: counter(my-counter, decimal);
    counter-increment: my-counter;
    left: 0;
    top: 0;
    font-size: 1.5em;
    font-family: inherit;
    position: absolute;
    line-height: 1.1;
    color: inherit;
}
.suggestion-feedback {
    font-style: italic;
}
.user-input-feedback {
    color: #044B7F;
}
#activity {
    padding-top: 250px;
}

/* Tablet */
@media(min-width:768px) {
    #activity {
        padding-top: 230px;
    }
}

/* Desktop */
@media(min-width:992px) {
    #activity {
        padding-top: 180px;
    }
}

/* Large Desktop */
@media(min-width:1200px) {
    #activity {
        padding-top: 160px;
    }
}
@media print {
    #question-holder, #feedbackHeaders, .navbar-header {
        display: none
    }
    #activity {
        text-align: left;
        border: none !important;
        padding-top: 0;
    }
    .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;
        font-weight: bold;
    }
    .suggestion-feedback {
        font-style: italic;
    }
    .question-feedback, .user-input-feedback {
        margin-bottom: 1em;
    }
    textarea {
        border: none;
        color: #333;
    }
    .activity-feedback {
        border: none;
    }
}