.carrusel__flechas i {
	position: relative;
	display: block;
	/*width: 500px;
	height: 300px;*/
	width:100%;
	height:180px;
	overflow: hidden;
	border-radius: 5px;
}

.carrusel__flechas i:before, .carrusel__flechas i:after {
	content: '\276E';
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 80;
	width: 2rem;
	height: 2.5rem;
	background: #fff;
	color: #2f2f2f;
	/*border-radius: 50%;*/
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: none;
	font-style: normal;
	font-size: 2em;
}

.carrusel__flechas i:after {
	content: '\276F';
	left: auto;
	right: 0;
}

/* I haven't found a way for IE and Edge to let me style inputs that way */
.carrusel__flechas input {
	appearance: none;
	-ms-appearance: none;
	-webkit-appearance: none;
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 5px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	transform: translateX(100%);
	transition: transform ease-in-out 400ms;
	z-index: 1;
}

.carrusel__flechas input:focus {
	outline: none;
}

.carrusel__flechas input:hover {
	background:self;
	cursor:pointer;
	}

.carrusel__flechas input:after {
	content: attr(title);
	position: absolute;
	top: 0;
	right: 0;
	background-color:rgba(0, 0, 0, 0.26);
	color: white;
	padding: .2rem 1rem;
	font-size: 1rem;
	letter-spacing: 1;
	font-size: 1.2em;
	
}

.carrusel__flechas input:not(checked):before {
	    content: '';
    position: absolute;
    width: 3rem;
    height: 3rem;
   
    top: 50%;
    left: calc(-100% + 1rem);

}

.carrusel__flechas input:checked:before {
	display: none;
	left: 1rem;
}

.carrusel__flechas input:checked {
	transform: translateX(0);
	pointer-event: none;
	z-index: 0;
	/*box-shadow: -5px 10px 20px -15px rgba(0,0,0,1);*/
}

.carrusel__flechas input:checked + input:before {
	left: -3rem;
}

.carrusel__flechas input:checked + input ~ input:before {
	display: none;
}

@media handheld, only screen and (max-width: 810px) {
	.carrusel__flechas i {
	

		}
