.tabContent {
    display: none;
}

.tabContent.active {
    display: block;
}

.tabSelectors {
    background-color: #72be44;
    /*padding: 15px;*/
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 65px;
    display: inline-block;
    height: 50px;
}

.tabSelector {
    font-family: "Roboto Condensed";
    display: inline-block;
    font-weight: bold;
    padding: 15px 6px;
    position: relative;
    z-index: 2;
    position: relative;
    cursor: pointer;
    font-size: 14px;
}





.tabSelector:first-letter {
    color: white;
}

.tabSelector.active:first-letter {
    color: #72be44;
}

.tabContentWrap {
    border: 3px solid #72be44;
    border-radius: 25px;
    padding: 15px;
    padding-top: 40px;
    padding-bottom: 0;
    margin-top: -25px;
    overflow: hidden;
    border-top-left-radius: 0;
}

.tabContent p {
    margin-top: 0;
  
}

.activeTab {
    position: absolute;
    z-index: 1;
    transition: all ease .25s;
    top: 4px;
    background-color: white;
    height: 42px;
    border-radius: 36px;
}

.tabOuterWrap {
    margin-top: 20px;
}


@media screen and (min-width:1072px) {
    .tabSelector {
        padding: 15px 12px;
        font-size: 18px;
    }
}