@charset "utf-8";
/* CSS Document */

.drag-and-drop ul 
{
    list-style-type: none;
}

.order li, .activitySortableList li.ui-droppable 
{
    font-size: 16px;
    min-height: 120px;
    margin-bottom: 5px;
}

.activitySortableList li.ui-droppable 
{
    position: relative;
    list-style: none;
    cursor: move;
    color: #fff;
    background-color: #DDD;
	margin-bottom: 5px;
}

.ui-draggable.being-dragged 
{
    z-index: 6;
    opacity: 0.9;
    -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);
}

span.sortableElement 
{
    z-index: 5;
    width: 100%;
    min-height: 120px;
	padding: 10px;
    color: #000;
    background-color: #CFCFCF;
	cursor: move;
	display: block;
	margin-bottom: 5px;
	font-size: 16px;
}

#activity-sortable-list-two span.sortableElement
{
	background-color: #c12217;
	color: #FFF;
}

.feedback-all-correct, .feedback-total-correct
{
	display: none;
}

.alert
{
	font-weight: 600;
}

.alert-danger
{
	border: 1px solid rgb(169,68,66);
}

.alert-success
{
	border: 1px solid rgb(60,118,61);
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    z-index:9999;
}

/* Modal Content */
.modal-content {
    background-color: #c12217;
    margin: auto;
    padding: 20px;
    border: 1px solid #fff;
    width: 80%;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}