
.infinity-carousel {
    font-family: Helvetica, Arial, serif;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}
.infinity-carousel .nav {
    color: #0074d9;
    font-weight: bold;
    font-size: 2em;
    background-color: transparent;
}
.infinity-carousel .nav.prev:before {
    content: '\f053';
    font-family: FontAwesome;
}
.infinity-carousel .nav.next:before {
    content: '\f054';
    font-family: FontAwesome;
}

.infinity-carousel {
    position: relative;
    overflow: hidden;
    height: 475px;
}
.infinity-carousel .no-transition {
    transition: none !important;
}
.infinity-carousel .nav {
    position: absolute;
    display: block;
    width: 40px;
    height: 45px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    opacity: 0.5;
    border: 0;
    cursor: pointer;
    -webkit-apperance: none;
}
.infinity-carousel .nav:hover {
    opacity: 1;
}
.infinity-carousel .nav.next {
    right: 0;
}
.infinity-carousel .center {
    position: relative;
    height: 158px;
    margin: 0 auto;
}
.infinity-carousel .text {
    position: relative;
    width: 180px;
    height: 75px;
    margin: 0 auto;
    text-align: center;
    transition: opacity 0.4s linear;
}
.infinity-carousel .active .text {
    opacity: 1;
}
.infinity-carousel .slides {
    position: absolute;
    width: 100000px;
    /*height: 100%;*/
    transition: all 0.4s;
}
.infinity-carousel .slides > * {
    position: relative;
    float: left;
    width: 350px;
    height: 100%;
    text-align: center;
    overflow: hidden;
}
.infinity-carousel .img-wrap {
    width: 333px;
    height: 480px;
    margin: 0 auto;
    overflow: hidden;
}
.infinity-carousel img {
    height: 100%;
}
.tab {
    overflow: hidden;
    text-align: center;
}

/* Style the buttons inside the tab */
.tab button {
    background: transparent;
    border: 1px solid #2367bf;
    cursor: pointer;
    padding: 2px 15px;
    transition: 0.3s;
    font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
    color: #fff;
    background: #376bd9;
    border-color: #376bd9;
}

/* Create an active/current tablink class */
.tab button.active {
    color: #fff;
    background: #2367bf;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border-top: none;
}