section.fichero-vert[id^='fichero-vert-'] {
	--fondo-activo: #f9f9f9;
	--color-recurso: #fe7a20;
	--color-recurso: #7e07e4;
	--color-recurso: #94c57e;
	--color-recurso: #0069d9;
	font-family: 'Open Sans', sans-serif;
	text-align: left;
	font-size: 1em;
	color: #000;
	font-weight: 400;
	overflow: hidden;
	width: min(1100px, 85%);
	box-shadow: 0 0 0 10px #fff, 0 15px 50px;
	margin: 3em auto;
	line-height: 1.8em;
	background: var(--fondo-activo);
	display: flex;
	user-select: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: -moz-none;
	-ms-user-select: none;
	-o-user-select: none;
}

section.fichero-vert[id^='fichero-vert-'] .fichero-vert-tabs {
	width: 200px;
}

section.fichero-vert[id^='fichero-vert-'] .fichero-vert-tabs :focus {
	outline: none;
}

section.fichero-vert[id^='fichero-vert-'] .fichero-vert-item {
	border-bottom: 1px solid #eaeaea;
}

section.fichero-vert[id^='fichero-vert-'] .fichero-vert-item:last-child {
	border: none;
}

section.fichero-vert[id^='fichero-vert-'] .fichero-vert-item__label {
	display: flex;
	justify-content: space-between;
	margin: 0;
	padding: 0.55em;
	cursor: pointer;
	transition: padding .2s ease;
	position: relative;
}

section.fichero-vert[id^='fichero-vert-'] .fichero-vert-item__label .icon {
	display: flex;
	align-items: center;
	transform: rotate(0deg);
	transition: transform 0.5s ease-in-out;
	display: none;
}

section.fichero-vert[id^='fichero-vert-'] .fichero-vert-active .icon {
	transform: rotate(180deg);
}

section.fichero-vert[id^='fichero-vert-'] .fichero-vert-item__container {
	padding: 0 1.25em;
	height: 0;
	overflow: hidden;
	opacity: 0;
	transition: padding .2s ease, opacity .5s .15s ease;
}

section.fichero-vert[id^='fichero-vert-'] .fichero-vert-active .fichero-vert-item__label {
	cursor: inherit;
}

section.fichero-vert[id^='fichero-vert-'] .fichero-vert-active .fichero-vert-item__container {
	padding: 0.55em;
	height: auto;
	opacity: 1;
}

section.fichero-vert[id^='fichero-vert-'] .fichero-vert-active .fichero-vert-item__container p:first-child,
section.fichero-vert[id^='fichero-vert-'] .fichero-vert-active .fichero-vert-item__container h1:first-child,
section.fichero-vert[id^='fichero-vert-'] .fichero-vert-active .fichero-vert-item__container h2:first-child,
section.fichero-vert[id^='fichero-vert-'] .fichero-vert-active .fichero-vert-item__container h3:first-child,
section.fichero-vert[id^='fichero-vert-'] .fichero-vert-active .fichero-vert-item__container h4:first-child,
section.fichero-vert[id^='fichero-vert-'] .fichero-vert-active .fichero-vert-item__container h5:first-child,
section.fichero-vert[id^='fichero-vert-'] .fichero-vert-active .fichero-vert-item__container h6:first-child {
	margin-top: 0;
}

section.fichero-vert[id^='fichero-vert-'] .fichero-vert-active .fichero-vert-item__container p:last-child,
section.fichero-vert[id^='fichero-vert-'] .fichero-vert-active .fichero-vert-item__container h1:last-child,
section.fichero-vert[id^='fichero-vert-'] .fichero-vert-active .fichero-vert-item__container h2:last-child,
section.fichero-vert[id^='fichero-vert-'] .fichero-vert-active .fichero-vert-item__container h3:last-child,
section.fichero-vert[id^='fichero-vert-'] .fichero-vert-active .fichero-vert-item__container h4:last-child,
section.fichero-vert[id^='fichero-vert-'] .fichero-vert-active .fichero-vert-item__container h5:last-child,
section.fichero-vert[id^='fichero-vert-'] .fichero-vert-active .fichero-vert-item__container h6:last-child {
	margin-bottom: 0;
}

section.fichero-vert[id^='fichero-vert-'] .fichero-vert-tabs .fichero-vert-tab {
	width: 160px;
}

section.fichero-vert[id^='fichero-vert-'] .fichero-vert-content>article.fichero-vert-item.fichero-vert-active>div>p {
	-webkit-animation-name: content;
	        animation-name: content;
	-webkit-animation-direction: normal;
	        animation-direction: normal;
	-webkit-animation-duration: 0.3s;
	        animation-duration: 0.3s;
	-webkit-animation-timing-function: ease-in-out;
	        animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: 1;
	        animation-iteration-count: 1;
}

section.fichero-vert[id^='fichero-vert-'] .fichero-vert-content .imagenPie {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 1em;
}

section.fichero-vert[id^='fichero-vert-'] .fichero-vert-content .imagenPie img {
	width: 100%;
	max-width: 500px;
}

section.fichero-vert[id^='fichero-vert-'] .fichero-vert-content .imagenPie p {
	font-size: 0.75em;
	text-align: center;
	margin-top: 20px;
	overflow-wrap: anywhere;
}

section.fichero-vert[id^='fichero-vert-'] .fichero-vert-content ul,
section.fichero-vert[id^='fichero-vert-'] .fichero-vert-content ol {
	-webkit-margin-start: 0;
	        margin-inline-start: 0;
}

@-webkit-keyframes content {
	from {
		opacity: 0;
		transform: translateY(5%);
	}

	to {
		opacity: 1;
		transform: translateY(0%);
	}
}

@keyframes content {
	from {
		opacity: 0;
		transform: translateY(5%);
	}

	to {
		opacity: 1;
		transform: translateY(0%);
	}
}

section.fichero-vert[id^='fichero-vert-'] .fichero-vert+p {
	color: rgba(255, 255, 255, 0.8);
	font-weight: 300;
	font-size: .9em;
	margin-top: 2em;
}


/* ---------------- 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
	section.fichero-vert[id^='fichero-vert-'] .fichero-vert-active .fichero-vert-item__label:after {
		opacity: 0;
	}
}

/* ----------------
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/
@media (min-width: 1025px) and (max-width: 1280px) {
	section.fichero-vert[id^='fichero-vert-'] .fichero-vert-active .fichero-vert-item__label:after {
		opacity: 0;
	}
}

/* ----------------
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) {
	section.fichero-vert[id^='fichero-vert-'] .fichero-vert-active .fichero-vert-item__label:after {
		opacity: 0;
	}
}

/* ----------------
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	section.fichero-vert[id^='fichero-vert-'] .fichero-vert {
		width: 95%;
	}

	section.fichero-vert[id^='fichero-vert-'] .fichero-vert-active .fichero-vert-item__label:after {
		opacity: 0;
	}
}

/* ----------------
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/
@media (min-width: 481px) and (max-width: 767px) {
	section.fichero-vert[id^='fichero-vert-'] .fichero-vert {
		width: 95%;
	}

	section.fichero-vert[id^='fichero-vert-'] .fichero-vert-tabs {
		display: none;
	}

	section.fichero-vert[id^='fichero-vert-'] .fichero-vert-active .fichero-vert-item__label:after {
		transform: rotate(-135deg);
		transition: transform 0.5s ease;
	}
}

/* ----------------
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/
@media (max-width: 480px) {
	section.fichero-vert[id^='fichero-vert-'] .fichero-vert-tabs {
		display: none;
	}

	section.fichero-vert[id^='fichero-vert-'] .fichero-vert-item__label {
		color: #d3d3d3;
	}

	section.fichero-vert[id^='fichero-vert-'] .fichero-vert-active .fichero-vert-item__label {
		color: #ffffff;
		background-color: var(--color-recurso);
	}

	section.fichero-vert[id^='fichero-vert-'] .fichero-vert-active .icon {
		display: initial;
	}

	section.fichero-vert[id^='fichero-vert-'] .fichero-vert-item__label .icon {
		display: initial;
	}

	section.fichero-vert[id^='fichero-vert-'] .fichero-vert-content ul,
	section.fichero-vert[id^='fichero-vert-'] .fichero-vert-content ol {
		-webkit-margin-start: -1em;
		        margin-inline-start: -1em;
	}
}

@media (min-width: 767px) {
	section.fichero-vert[id^='fichero-vert-'] .fichero-vert-tabs {
		display: flex;
		background: #447fff1a;
		flex-direction: column;
	}

	section.fichero-vert[id^='fichero-vert-'] .fichero-vert-tabs .fichero-vert-tab {
		background: #f2f2f2;
		color: #d3d3d3;
		font: inherit;
		flex: 1;
		border: none;
		cursor: pointer;
		transition: all .5s ease;
		padding: 10px 0;
	}

	section.fichero-vert[id^='fichero-vert-'] .fichero-vert-tabs .fichero-vert-tab:hover:not(.fichero-vert-active) {
		background: var(--color-recurso);
		opacity: 0.1;
	}

	section.fichero-vert[id^='fichero-vert-'] .fichero-vert-tabs .fichero-vert-tab:last-child {
		border-right: 0;
	}

	section.fichero-vert[id^='fichero-vert-'] .fichero-vert-tabs .fichero-vert-tab.fichero-vert-active {
		border-left: 3px solid;
		background: var(--fondo-activo);
		color: var(--color-recurso);
		transition: all .5s;
		font-weight: bold;
	}

	section.fichero-vert[id^='fichero-vert-'] .fichero-vert-item {
		padding: 1.4em;
		display: none;
		border: none;
		background: var(--fondo-activo);
		min-height: 260px;
	}

	section.fichero-vert[id^='fichero-vert-'] .fichero-vert-item__label,
	section.fichero-vert[id^='fichero-vert-'] .fichero-vert-item__container {
		padding: 0;
		transition: inherit;
	}

	section.fichero-vert[id^='fichero-vert-'] .fichero-vert-item__label {
		margin-bottom: 1.5em;
		display: none;
	}

	section.fichero-vert[id^='fichero-vert-'] .fichero-vert-item.fichero-vert-active {
		display: block;
	}

	section.fichero-vert[id^='fichero-vert-'] .fichero-vert-item.fichero-vert-active .fichero-vert-item__container {
		padding: 0;
	}

	section.fichero-vert[id^='fichero-vert-'] .fichero-vert-content .imagenPie img {
		width: 45%;
	}
}