/*!
 * jQuery Vertical Carousel
 * https://github.com/haripaddu/jQuery-Vertical-Carousel
 * Version: 1.0
 * License: MIT
 */

.verticalCarouselHeader {
    min-height: 30px;
}

.verticalCarouselHeader strong span {
    float: left;
    margin: 0px;
    line-height: 25px;
}

.arrowContrainer {
    float: right;
}

.vc_goUp.isDisabled .button-up, .vc_goDown.isDisabled .button-down{
    opacity: 0.3;
}


.vc_goUp.isDisabled, .vc_goDown.isDisabled {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
    cursor: not-allowed;
}

.vc_container {
    overflow: hidden;
    -moz-transition: height 0.2s ease-in;
    -o-transition: height 0.2s ease-in;
    -webkit-transition: height 0.2s ease-in;
    transition: height 0.2s ease-in;
}

.vc_list {
    margin: 0;
    padding: 0;
    list-style: none;
    -moz-transition: -moz-transform 0.2s ease-in;
    -o-transition: -o-transform 0.2s ease-in;
    -webkit-transition: -webkit-transform 0.2s ease-in;
    transition: transform 0.2s ease-in;
}

.button-down, .button-up {
    display: block;
    background-position: center center;
    background-repeat: no-repeat;
    border: 1px solid #dddddd;
    display: block;
    float: right;
    height: 25px;
    margin-left: 5px;
    text-align: center;
    width: 25px;
}

.button-down {
    background-image: url(../images/arrow_down.png);
}

.button-up {
    background-image: url(../images/arrow_up.png);
}

.verticalCarouselGroup .product-image {
    margin-right: 15px;
    width: 30%;
    float: left;
}

.verticalCarouselGroup img {
    max-width: 100%;
}

.verticalCarouselGroup li {
    clear: both;
    display: block;
    margin-bottom: 25px;
    position: relative;
}

.verticalCarouselGroup .tax-details {
    display: none;
}

.verticalCarouselGroup .price-box {
    margin-top: 10px;
}

.verticalCarouselGroup .btn-cart {
    bottom: 0;
    display: block;
    margin-top: 10px;
    position: absolute;
    right: 0;
}

.verticalCarouselGroup li::after {
    content: "";
    display: table;
    clear: both;
}