* {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

section.tabla-comparativa {
    width: 100%;
    display: flex;
    position: relative;
}

.planes {
    width: 45%;
    margin-top: 50px;
    border-left: 1px solid #DCDCDC;
    border-bottom: 1px solid #DCDCDC;
    height: 100%;
    background-color: #fff;
    z-index: 2;
}

.valores {
    width: 55%;
    position: relative;
    border-bottom: 1px solid #DCDCDC;
    border-right: 1px solid #DCDCDC;
    min-height: 100%;
    overflow: hidden;
}

.planes ul li i {
    color: #0072BD;
}

section.tabla-comparativa div ul li {
    border-top: 1px solid #DCDCDC;
    border-right: 1px solid #DCDCDC;
    height: 50px;
    box-sizing: border-box;
    justify-content: flex-start;
    display: flex;
    align-content: center;
    align-items: center;
    align-self: center;
}

section.tabla-comparativa div ul li p{
    text-align: left;
    margin: 0;
}

section.tabla-comparativa div ul li i {
    padding: 1% 2%;
    font-size: 1.6em;
    width: 10%;
    text-align: center;
}

section.tabla-comparativa div.valores ul.headers li {
    justify-content: center;
    align-items: center;
    border: 0px;
}

section.tabla-comparativa div.valores ul:not(.headers) li:before {
    content: '\f00c';
    font-family: red;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    width: 100%;
    color: transparent;
    max-width: 0;
}

section.tabla-comparativa div.valores ul li.ok:before {
    color: #13AD2B;
    max-width: none;
}

section.tabla-comparativa div.valores ul li {
    box-sizing: border-box;
    width: 12.5%;
    justify-content: center;
}

section.tabla-comparativa div.valores ul li i{
    color: green;
}

.rails {
    width: 100%;
    position: absolute;
    left: 0%;
}

.rails ul {
    display: flex;
    width: 100%;
}

button.botones-navegacion {
    font-size: 2em;
    border: 1px solid #DCDCDC;
    background-color: #fff;
    position: absolute;
    z-index: 10;
    padding: 6px 12px;
    color: #0072BD;
    opacity: 0.5;
}

button.sigiente.botones-navegacion {
    right: 0%;
    left: auto;
    z-index: 2;
}

ul.invisible,
section.tabla-comparativa div ul li.invisible {
    display: none;
    text-align: left;
}

section.tabla-comparativa div ul li.visible {
    display: block;
    -webkit-animation: mostrarme 0.5s; /* Chrome, Safari, Opera */ 
    animation: mostrarme .5s;
}

ul.visible{
    display: flex;
    -webkit-animation: mostrarme .5s; /* Chrome, Safari, Opera */ 
    animation: mostrarme .5s;
}

/* Chrome, Safari, Opera */ 
@-webkit-keyframes mostrarme {
    from {top: 0px;}
    to {top: 200px;}
} 

/* Standard syntax */ 
@keyframes mostrarme {
    from {opacity: 0;}
    to {opacity: 1;}
}

a.mostrar {
    display: block;
    text-align: center;
    margin-top: 1%;
    color: #0072BD;
    font-weight: bolder;
}

ul.headers {
    color: #fff;
    background-color: #0072BD; 
    width: 100%;
}

section.tabla-comparativa div.valores ul li i {
    width: 100%;
}

.cerrar {
    right: 0%;
    position: fixed;
    color: #fff;
    top: 0%;
    padding: 1%;
    font-size: 120%;
    cursor: pointer;
}

@media screen and (max-width: 1000px) {
    .planes{
        width: 50%
    }
    .valores{
        width: 50%;
    }
}

@media screen and (max-width: 700px) {
    .planes{
        width: 60%
    }
    .valores{
        width: 40%;
    }
    section.tabla-comparativa div ul li i{
        font-size: 100%;
    }
}

@media screen and (max-width: 500px) {
    .planes{
        width: 60%;
        margin-top: 100px;
}
    .valores{
        width: 40%;
    }
    ul.headers {
        height: 100px;
    }
    section.tabla-comparativa div.valores ul.headers li{
        transform: rotate(270deg);
    }    
	button.anterior.botones-navegacion{
		left: 60%;
		margin-left: -38px;
		background:#0072BD;
		color:#FFF;
	}
	section.tabla-comparativa div.valores .precios_2 li span {transform: rotate(270deg);}
	.masalto{height: 100px !important;}
	
	section.tabla-comparativa div.valores .precios_2 li {
		height: 100px;
	}
}

.valores > div {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}