.cursosonline-container {
	margin: auto;
	width: 950px;
	font-family: Arial;
	font-size: 14px;	
}

#divEditCurso {
	/*display:none;*/
}

.panelCapitulo, .panelApartado, .panelPregunta, .panelRespuesta {	
	display: none;
}

.back {
	float:right;
}

/* Style inputs, select elements and textareas */
.cursosonline-container input[type=text], .cursosonline-container input[type=number], .cursosonline-container select, .cursosonline-container textarea{
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
}

/* Style the label to display next to the inputs */
.cursosonline-container label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

/* Style the submit button */
.cursosonline-container input[type=button] {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

.cursosonline-container textarea {
	height: 200px;
}

/* Style the container */
.cursosonline-container .container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

/* Floating column for labels: 25% width */
.cursosonline-container .col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

/* Floating column for inputs: 75% width */
.cursosonline-container .col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

/* Floating column for inputs: 50% width */
.cursosonline-container .col-50 {
  float: left;
  width: 50%;
  margin-top: 6px;
}


/* Clear floats after the columns */
.cursosonline-container .row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
 .cursosonline-container .col-25, .cursosonline-container .col-75, .cursosonline-container .col-50, .cursosonline-container input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}

.path span {
	display: inline-block;
	white-space:nowrap;	
	max-width:200px;	
	text-overflow: ellipsis;
	overflow-x:hidden;	
}

.path p{
	display: inline;
}

.img-pregunta {
	width: 200px;
	height: 200px;
}

.btn-borrar-img {
	background-color: red !important;	
	position: relative;
	height: 50px;
}

.col-img {
	display: inline-flex;
}

/******
MODAL
******/

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    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 */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    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;
}

.d-none {
  display: none;
}