﻿.tabsWrapper {
    display: block;
    margin-top: 80px;
    color: white;
}

.tabsGroup {
    display: flex;
    justify-content: space-between;
    margin-top: -50px;
    box-sizing: border-box;
    vertical-align: bottom;
    color: white;
}

    .tabsGroup .tab-btn:last-child {
        margin-right: 0;
    }

/* Base tab button style */
.tab-btn {
    font-family: "Catamaran", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 10pt;
    font-weight: 100;
    color: white;
    line-height: 1.4;
    cursor: pointer;
    border-radius: 15px 15px 0px 0px;
    padding: 7px;
    background-color: #63869B;
    text-align: center;
    width: 100%;
    height: 30px;
    vertical-align: bottom;
    border: none;
    outline: none;
    display: inline-block;
    transition: background-color 0.3s;
    position: relative;
    z-index: 2;
}

    .tab-btn:hover {
        background-color: #c2af00;
    }

    /* Active tab style */
    .tab-btn.activetab {
        background-color: #335365;
        font-size: 10pt;
        position: relative;
        z-index: 2;
    }

/* For small notification badges, if used */
.tabsindicator {
    color: white;
    border-radius: 50%;
    background-color: #c2af00;
    padding: 5px 7.5px;
    text-align: center;
}

/* Line below the tabs */
.tabsLine {
    width: 100%;
    height: 2px;
    background-color: #335365;
    margin-top: 28px;
    position: relative;
    z-index: 1;
}

/* Hide mobile tabs by default */
.MobileMatterTabs {
    display: none;
}

@media only screen and (max-width: 767px) {
    .MobileMatterTabs {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: #325266;
        z-index: 300;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .MobileMatterList {
        display: flex;
        justify-content: space-around;
        align-items: center;
        height: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .MobileMatterListItem {
        flex: 1;
        text-align: center;
        height: 100%;
    }

    .Btn {
        background: none;
        border: none;
        width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
        cursor: pointer;
        color: white;
        position: relative;
    }

        .Btn.active {
            background-color: #1c3848;
        }

    .InnerBtn {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        font-size: 11px;
        line-height: 1.2;
    }

    .InnerBtnIcon {
        font-size: 20px;
        margin-bottom: 2px;
    }

    .InnerBtnText {
        font-size: 10px;
        text-transform: capitalize;
    }

    .icon-size {
        font-size: 22px;
    }

    .Btn.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 25%;
        width: 50%;
        height: 2px;
        background-color: #c2af00;
        border-radius: 2px;
    }

    .Btn, .InnerBtnText {
        transition: background-color 0.3s ease, color 0.3s ease;
    }
}
