@keyframes slyding{
   
	50%{
	    
		transform: translate3d(calc(-100% * 0),0,0);
	}



	100%{
	    
		transform: translate3d(calc(-100% * 1),0,0);
	}
}

img{
	max-width: 100%;
}
.container-all{
	position: relative;
	max-width: auto;
	width: 100%;
	border-radius: 6px;
	overflow: hidden;
}

.slide{
	display: flex;
	transform: translate3d(0, 0, 0);
	transition: all 600ms 5s;
	transition-delay: 5s;
	animation-name: slyding;
	animation-duration: 60s;
	animation-direction: normal;
	animation-fill-mode: forwards;
	animation-iteration-count: infinite;
}

.item-slide{
	position: relative;
	transition-delay: 5s;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	flex-grow: 0;
	max-width: 100%;
}
.pagination{
	position: absolute;
	bottom: 20px;
	left: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	width: 100%;
}
.pagination-item{
	display: flex;
	flex-direction: column;
	align-items: center;
	border: 2px solid white;
	width: 16px;
	height: 16px;
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
	background: rgba(255, 255, 255, 0.5);
	margin: 0 10px;
	text-align: center;
	transition: all 300ms;
}
.pagination-item:hover{
	transform: scale(2);
}
.pagination-item img{
	display: inline-block;
	max-width: none;
	height: 100%;
	transform: scale(1);
	opacity: 0;
	transition: all 300ms;
}
.pagination-item:hover img{
	opacity: 1;
	transform:scale(1);
}

input[id="1"]:checked ~ .slide{
	animation: none;
	transform: translate3d(0, 0, 0);
}
input[id="1"]:checked ~ .pagination .pagination-item[for="1"]{
	background: #fff;
}
input[id="2"]:checked ~ .slide{
	animation: none;
	transform: translate3d(calc(-100%*1), 0, 0);
}
input[id="2"]:checked ~ .pagination .pagination-item[for="2"]{
	background: #fff;
}
input[id="3"]:checked ~ .slide{
	animation: none;
	transform: translate3d(calc(-100%*2), 0, 0);
}
input[id="3"]:checked ~ .pagination .pagination-item[for="3"]{
	background: #fff;
}


/* Modificaciones para el boton de comprar*/

.resaltado{
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 2vw;
  border-radius: 0.5rem;
}


#botonbuy {
    position: absolute;
    right: 15%;
    bottom: 2vw;
    left: 5%;
    z-index: 10;
    padding-top: 2vw;
    padding-bottom: 2vw;
    color: #fff;
    text-align: left;  
    font-size: 1.4vw; 
    border-radius: 0.5rem;
    font-weight: bold;
}

.boton {
    font-size:2vw;
    background:#2ba17c;
    color:white;
    border-radius: 0.5rem;
    font-weight: bold;
    padding:1rem;
}
#pclass
{
    margin-bottom: 5vw;
    font-weight: bold;
}

@media (min-width: 768px)
{
#botonbuy {
    display: block;
    position: absolute;
    right: 5%;
    bottom: 0px;
    left: 5%;
    z-index: 10;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #fff;
    text-align: left;  
     border-radius: 0.5rem;
     font-weight: bold;
}
#pclass
{
    margin-bottom: 4vw;
    font-weight: bold;
}
}

#boton {
font-size:2vw;
padding:1rem;
color:white;
 border-radius: 0.5rem;
 font-weight: bold;
}