﻿.quiz-answers-container {
	position: relative;
	padding-top: 40px;
}

.quiz-answers-container .answer-add{
	position: absolute;
	right: 25px;
	top: 0;
}

.quiz-new-answer {
	border-radius: 4px;
	margin-bottom: 5px;
	padding: 0 10px;
	background-color: #e8e8e8;
	position: relative;
}

.quiz-new-answer .answer-name, .quiz-new-answer .answer-image, .answer-correct{
	display: inline-block;
	vertical-align: middle;
}

.quiz-new-answer .answer-correct {
	width: 30px;
}

.quiz-new-answer .answer-name {
	width: calc(60% - 35px);
}

.quiz-new-answer .answer-image {
	width: 35%;
	margin-left: 2%;
}

.quiz-new-answer .answer-image a.view-image{
	display: inline-block;
	vertical-align: middle;
	margin-left: 20px;
}

.quiz-new-answer .ui-fileupload-buttonbar{
	padding: 0 !important;
}

.quiz-new-answer .ui-fileupload-buttonbar .ui-fileupload .ui-button{
	padding: 2px 5px !important;
	margin: 0;
}

.quiz-new-answer .answer-remove {
	position: absolute;
	right: 25px;
	top: 20px;
}

.cbs-card{
	box-shadow: 0 0 4px 0px #d0d0d0; 
	width: 100%; 
	padding: 10px;
}

.cbs-card h4{
	border-bottom: 1px solid #f0f0f0;
}

.cbs-card-body{
}

.rz-context-menu .rz-navigation-item .rz-navigation-item-wrapper{
	padding: 5px;
	background: white;
	font-size: 14px;
}

.rz-context-menu hr{
	margin: 4px 0;
	background-color: rgba(0,0,0,.1);
	height: 1px;
	border: none;
}

.rz-fileupload.media{
	width: 100%;
	height: 300px;
}

.rz-fileupload.media .rz-fileupload-buttonbar{
	height: 100%;
}

.rz-fileupload.media .rz-fileupload-choose {
	background: transparent;
	color: black;
	border: dashed 1px gray;
	width: 100%;
	text-align: center;
	height: 100%;
	line-height: 270px;
	font-size: 30px;
}

.logo{
	width: auto !important;
}

.dashboard-resource-link{

}

.dashboard-resource-link .delete{
	background: white;
	display: none;
	margin-left: 10px;
}

.dashboard-resource-link:hover .delete{
	display: inline-block !important;
}

.drop-block .rz-dropdown{
	display: block !important;
	height: auto !important;
	line-height: inherit !important;
	font-size: inherit !important;
	padding: 0.1575rem 0.625rem !important;
}


/** Simple drag and drop with Blazor CSS **/
.jobs-container {
    display: flex;
    justify-content: space-around;
}

.job-status {
    display: flex;
    flex-direction: column;
    width: 312px;
}

    .job-status ul {
        flex: 1;
    }

.dropzone {
    padding: 30px;
    border: 1px dashed #75868a;
    list-style: none;
}

.no-drop {
    border: 2px dashed red;
}

.can-drop {
    border: 2px dashed green;
}

.draggable {
    margin-bottom: 10px;
    padding: 10px 25px;
    border: 1px solid #424d5c;
    cursor: grab;
    background: #5c6b7f;
    color: #ffffff;
    border-radius: 5px;
    width: 250px;
}

.draggable:active {
    cursor: grabbing;
}

.dragging {
    cursor: grabbing;
}

.description {
    font-size: 18px;
}

.last-updated {
    margin-bottom: 0;
    font-size: 11px;
    color: #e1e5ea;
    font-weight: bold;
}

    .last-updated small {
        text-transform: uppercase;
        color: #c4cbd4;
        font-size: 11px;
    }
/** END Simple drag and drop with Blazor CSS **/