﻿.showSlide {
    display: none;
}

    .showSlide img {
        width: 100%;
    }

.slidercontainer {
    max-width: 100%;
    width: 330px;
    position: relative;
    margin: auto;
}

.lefttw, .righttw {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    /*transition: 0.6s ease;*/
    border-radius: 0 3px 3px 0;
    background: #ff090952;
}

.righttw {
    right: 0;
    border-radius: 3px 0 0 3px;
}

    .lefttw:hover, .righttw:hover {
        background-color: rgba(115, 115, 115, 0.8);
    }

/*.content {
    color: #eff5d4;
    font-size: 30px;
    padding: 8px 12px;
    position: absolute;
    top: 10px;
    width: 100%;
    text-align: center;
}*/

/* Fading animation */
.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
    }
}
