/* 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

 */
ul {
    list-style-type: none;
}

#order li,
.ui-droppable {
    font-size: 15px;
    height: 7em;    /* HEIGHT: auto; */
    margin-bottom: .2em;
}

#activity {
    font-size: 1.1em;
    line-height: 1.3em;
}

.ui-droppable {
    position: relative;
    list-style: none;
    cursor: move;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 7px;
    background-color: #2b267c;
}

#order li {
	text-align:center;
    line-height: 7.2em;
    height: 7em;
    margin-bottom: .2em;
    padding: 0 .5em;
    color: #000;
    border: 1px solid #2b267c;
    background-color: #fff;
}

span.swappableElement {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    width: 100%;
    height: 7em;
    padding-top: 5px;
    padding-right: 15px;
    padding-left: 10px;
    text-align: center;
    color: #000;
    border: 2px solid #2b267c;
    border-radius: 2px;    /* padding: 0.8em 0; */
    background: rgba(255,255,255,0.75);;
    box-shadow: none;
    line-height: 1.5em;
}

.ui-draggable.being-dragged {
    z-index: 6;
    -webkit-box-shadow: 10px 10px 8px -1px rgba(0, 0, 0, .32);
    -moz-box-shadow: 10px 10px 8px -1px rgba(0, 0, 0, .32);
    box-shadow: 10px 10px 8px -1px rgba(0, 0, 0, .32);
}

#totalCorrectHolder {
    font-weight: bold;
    text-align: right;
}

#activity-feedback p {
    display: none;
}

.tableHeader{
	 margin-top: 1em;
    background: #52B8CE;
    color: white;
    padding: 5px;
    text-align: center;
}

/* ------- Media queries ------- */

/* Tablet */
@media(min-width:768px) {
    hr {
        margin-top: 25px;
        margin-bottom: 25px;
    }

    #activity {
        font-size: 1.1em;
        line-height: 1.3em;
    }

}

/* Desktop */
@media(min-width:992px) {
}

/* Large Desktop */
@media(min-width:1200px) {
}

/* ----------- Print ----------- */
@media print {
    li.ui-droppable,
    #order li {
        font-size: 20pt;
        line-height: 22pt;
        height: 150px !important;
        margin: 20px auto;
        padding: 20px;
        border: 1px solid;
    }

    span.ui-draggable,
    span.swappableElement,
    span.ui-draggable-handle {
        font-size: 20pt;
        line-height: 22pt;
        top: auto;
        right: auto;
        height: 150px !important;
        text-align: center;
        border: 0;
    }

}