.slider {
    display: none
}
 
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding-left: 5px;
    padding-right: 25px;
    color: rgb(180,180,180);
    font-weight: bold;
    font-size: 24px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}
 
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
 
.prev:hover, .next:hover {
    color: rgb(90,90,90);
}
 
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}
 
@-webkit-keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}
 
@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}
 
@media only screen and (max-width: 300px) {
    .prev, .next,.text {font-size: 11px}
}