/*SWIIPER*/

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: left;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

/*TABS*/

.tab-bar {
    overflow-x: hidden;
    position: fixed;
    background: white;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 50px;
}

.tab-bar button {
    color: #757575;
    display: block;
    -webkit-box-flex: 0;
    font-size: 10px;
    font-weight: 600;
    margin-right: 8px;
    padding: 0 8px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    height: 50px;
    width: 32%;
    height: 40px;
}

.tab-bar button.active {
    color: var(--main-color);
    border-bottom: 2px solid var(--main-color);
}


