/**
 * # Bloque notificación
 * ---------------------------------------------------------------------------------------------------- */
.wpblock-textodesplegable {
	position: relative;
	height: 90px;
	content-visibility: auto;
	display: flex;
	flex-wrap: wrap;
	column-gap: 2%;
}

.wpblock-textodesplegable .column {
	width: 49%;
}

.wpblock-textodesplegable.open {
	height: auto;
}

.wpblock-textodesplegable .title {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 15px;
	color: #00265F;
}

.wpblock-textodesplegable .content {
	margin-bottom: 15px;
	font-size: 14px;
}

.wpblock-textodesplegable .expand {
	position: absolute;
	top: 45%;
	background: white;
	background: linear-gradient(0deg, #ECECEC 85%, transparent 100%);
	width: 100%;
	text-align: center;
	-webkit-animation-duration: 2s;
      animation-duration: 2s;
      -webkit-animation-fill-mode: forwards;
      animation-fill-mode: forwards;
}

.wpblock-textodesplegable.open .expand {
	top: auto;
	bottom: 0;
	animation-name: fadeOut;
}

.wpblock-textodesplegable .button {
	background: transparent;
	color: #00265F;
	font-size: 18px;
}

@keyframes fadeOut {
      0% {
            top: 25%;
      }

      100% {
            top: 100%;
		display: none;
      }
}

@media only screen and (max-width: 768px) {
	.wpblock-textodesplegable .column {
		width: 100%;
	}
}