.tour_body div[class*="detalle"]{
	caret-color: blue;
	min-height: 200px;
	padding: 16px;
	max-width: 100%;
	font-size: 16px;
	color: var(--colortxt);
	white-space: pre-wrap;
	outline: none;
}
.rich_box{
	display: inline;
	position: relative;
	caret-color: blue;
	margin: 1px;
	padding: 2px;
	max-width: 100%;
}
/*.rich_box:before{
	content: '<';
	color: silver;
	line-height: 0;
}
.rich_box:after{
	content: '>';
	color: silver;
}*/
/*.tour_body div[class*="detalle"] .rich_box.picked{
	background: rgba(0, 0, 0, 0.1);
	border-radius: 6px;
}*/
/*.tour_body div[class*="detalle"] .rich_box.focused{
	background: rgba(0, 0, 0, 0.1);
}*/
.tour_body div[class*="detalle"] .rich_box.focused:after{
	content: '';
	width: 5px;height: 5px;
	background: red;
	position: absolute;
	top: 0;
	left: -5px;
	border-radius: 50%;
}
.rich_box .rich_box{
	caret-color: blue;
	outline: none;
}
/*Padre*/
.rich_box.block{
	display: block;
	text-align: left;
	padding: 5px;
}
.rich_box.toRight{
	text-align: right;
}
.rich_box.toCenter{
	text-align: center;
}
/*Hijo*/
.rich_txt{
	caret-color: blue;
	outline: none;
}
.rich_txt.bold{
	font-weight: bold;
	color: var(--colortitle);
}
.rich_txt:not(.bold){
	font-weight: normal;
}
.rich_txt.cursive{
	font-style: italic;
}
.rich_txt:not(.cursive){
	font-style: normal;
}
/*resizer*/
.imgBox{
	position: relative;
	max-width: 100%;
	min-width: 100px;
	min-height: 40px;
	width: 100%;
	height: 200px;
	padding: 5px;
	max-height: 100%;
	display: block;
	float: left;
}
.imgBox.no_flotar{
	float: none;
}
.imgBox.float_right{
	float: right;
}
.imgBox.no_flotar.float_right{
	float: none;
}
.imgBox img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	pointer-events: none;
}
.handler{
	position: absolute;
	width: 20px;
	height: 20px;
	background:white;
	border-radius: 4px;
	right: 0;
	bottom: 0;
	z-index: 10;
	transition: all 300ms linear;
	color: gray;
	font-size: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor:move;
}
.handler:active{
	filter: invert(1);
}
.handler:active:after{
	content: '';
	top: -135px;
	left: -135px;
	right: -135px;
	bottom: -135px;
	margin: auto;
	display: flex;
	position: absolute;
	background: transparent;
	width: 300px;
	height: 300px;
}
.imgBox button[onclick*="delImg"]{
	background: white;
	position: absolute;
	top: 0;
	right: 0;
	color: gray;
	border: none;
	width: 20px;
	height: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 4px;
}
.imgBox button[onclick*="floatRight"]{
	content: '';
	top: 0;
	left: 0;
	justify-content: center;
	align-items: center;
	border-radius: 4px;
	display: flex;
	position: absolute;
	background: gray;
	color: white;
	border: none;
	padding: 5px;
}
/*TOUR TOOLS*/
.tour_tools{
	display: flex;
	gap: 5px;
	position: sticky;
	top: 86px;
	background: var(--bgdark);
	padding: 5px;
	z-index: 100;
}
.tour_tools .e_rich{
	background: var(--color1);
	color: var(--colorbtn);
	border: none;
	outline: none;
	padding: 4px 20px;
	border-radius: 15px;
}
.tour_tools button{
	padding: 2px;
}
.tour_tools button img{
	height:16px;
}
.tour_tools button.ajusted{
	background: gray;
}
.edit_options{
	opacity: 0.3;
	display: flex;
	flex-wrap: wrap;
	pointer-events: none;
}
.edit_options.available{
	opacity: 1;
	pointer-events: auto;
}
.vid{
	width: 100%;
    max-width: 400px;
    height: 220px;
    display: flex;
    margin: 10px auto;
}