#popup-maestro {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.popup-box {
  background: #fff;
  border-radius: 6px;
  width: 900px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  position: relative;
  animation: fadeIn 0.3s ease;
	overflow:hidden;
	height: 60vh;
}


.col-img{	
  background-color: #f5f0eb;
	display: flex;
 	justify-content: center;
  align-items: center;
	height:100%;
}

.col-img img{
	max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  box-shadow: 0 2px 6px #00000066;
}

.col-trans {
    overflow-x: hidden;
    overflow-y: scroll;
    height: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}

#popup-maestro-contenido, .popup-content, .contenido, .contenido .row{
		height:100%;
}

@media screen and (max-width: 768px) {
	
	.col-md-6.col-img {
    position: sticky;
    top: 0;
    z-index: 999999;
	}
	
	#popup-maestro-contenido, .popup-content, .contenido, .contenido .row, .col-trans, .col-img{
		height:auto;
	}
	
	.popup-box {
		height: 80vh;
		overflow: scroll;
	}
	
	.container.contenido {
    position: absolute;
    z-index: 0;
	}

}

	
.close-btn {
  position: absolute;
  top: 0px;
  left: 10px;
  font-size: 26px;
  cursor: pointer;
  color: #888;
	z-index:99999;
}	

#popup-maestro-contenido .nav-tabs .nav-item {
    margin-bottom: -1px;
    margin-left: 0;
}

#popup-maestro-contenido ul.nav{
    display: flex;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    flex-direction: row;
    justify-content: center;
}

#popup-maestro-contenido ul.nav.nav-tabs {
    flex-wrap: nowrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

#popup-maestro-contenido .nav .nav-item:first-child {
  margin-left: 0;
}

#popup-maestro-contenido .descarga-btn img {
    width: 45px;
}

#popup-maestro-contenido .descarga-btn {
    position: absolute;
    left: 10px;
    bottom: 7px;
		z-index:99999;
}

.oculto{
	display:none!important;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.diff {
	background-color: #c9b194;
	color: white;
	font-weight: bold;
	padding: 2px;
	border-radius: 3px;
	cursor: help;
}

.diff-eliminado {
	background-color: #c9b194;
	color: white;
	font-weight: bold;
	padding: 2px;
	border-radius: 3px;
	cursor: help;
}

.diff-anadido {
	background-color: #52de91;
	color: white;
	font-weight: bold;
	padding: 2px;
	border-radius: 3px;
	cursor: help;
}


.compartirLink img {
    margin-top: -3px;
    margin-left: 6px;
    height: 16px;
}