*.tabsContainer {
    margin-left: 6px;
    margin-top: 6px;
    margin-right: 6px;
    margin-bottom: 35px;
}

.tab {
    float: left;
    height: 34px;
    margin-right: 2px;
}

.tab a {
    padding: 9px 12px;
    display: inline-block;
    cursor: pointer;
    min-width: 80px;
}

.tab a:hover {
}

.tab{
    border-radius: 7px 7px 0 0;
    -webkit-border-radius: 7px 7px 0 0;
    -moz-border-radius: 7px 7px 0 0;
    -o-border-radius: 7px 7px 0 0;
    height: 48px;
    background-color: rgba(73, 101, 255, .25);
    text-align: center;
}

.tab.selected a {
    border-radius: 7px 7px 0 0;
    -webkit-border-radius: 7px 7px 0 0;
    -moz-border-radius: 7px 7px 0 0;
    -o-border-radius: 7px 7px 0 0;
    cursor: text;
    font-weight: normal !important;
    position: relative;
    z-index: 1;
    font-weight: bold;
    font-family: 'AvertaBold';
    background-color: #fff;
    box-shadow: #ddd 0px 0px 6px 0px;
    height: 29px;
}

.tab.selected::after {
    height: 21px;
    width: 110%;
    background-color: #fff;
    /* margin-top: -5px; */
    z-index: 10;
    position: relative;
    top: -11px;
    display: block;
    content: "";
}

.tab::after {
    right: 6px;
}

.tab:first-of-type::after {
    right: 0;
}

.tabPanels {
    position: relative;
}

.tabPanel {
    padding: 30px 25px 25px;
    background: #FFF;
    display: none;
    position: relative;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    box-shadow: #ddd 0px 0px 6px 0px;
    margin-top: -12px;
}

.tabPanel.selected {
    display: block;
}

.tabPanel {
}

.tab, .tabPanels {
    /*-moz-box-shadow:    0 0 4px rgba(0,0,0,0.4);
    -webkit-box-shadow: 0 0 4px rgba(0,0,0,0.4);
    box-shadow:         0 0 4px rgba(0,0,0,0.4);*/
}

.accordion .tabs {
    padding-bottom: 36px;
    position: relative;
}

.accordion .tab {
    float: none;
    margin-right: 0;
}

.accordion .tab, .accordion .tab a {
    border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    -o-border-radius: 5px 5px 0 0;
}

.accordion .tabPanels, .accordion .tabPanel {
    border-radius: 0 0 7px 7px;
    -webkit-border-radius: 0 0 7px 7px;
    -moz-border-radius: 0 0 7px 7px;
    -o-border-radius: 0 0 7px 7px;
}

.accordion .tab a {
    color: #9A9A9A;
    display: block;
}

.accordion .tab.selected {
    bottom: 0;
    height: 48px;
    position: absolute;
    width: 100%;
}

.accordion .tab.selected::after {
    height: 0px;
}

.accordion .tab.selected a {
    /*font-size: 23px;*/
    /*padding-top: 12px;*/
}

.tab .myProjectsCount {
    color: #474747;
    font-size: 12px;
    vertical-align: top;
}

@media screen and (max-width: 410px) {

    .tabPanels, .tabPanel {
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -o-border-radius: 0;
    }

    .tabPanels, .tabs {
        margin: 0 -20px;
    }

    .tab a {
        padding: 7px 12px;
    }

}