/* activity tab */

.tabs__nav {
    margin: 0 0 0 0.5em;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 50px;
    margin-left: 0;
}

.tabs__tab {
    width: calc(100%/3);
    background: #bf24ca;
    background: -webkit-gradient(linear, left top, left bottom, from(#551056), to(#ff00d4));
    background: linear-gradient(180deg, #ff00d4 0%, #551056 100%);
    border-left: 4px solid #000;
    border-right: 4px solid #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.tabs__link {
    float: left;
    padding: 0.25em 0.75em;
    text-decoration: none;
    font-size: 1em;
    color: #222222;
    width: 100%;
}

.tab-selected .tabs__link {
    position: relative;
    color: #000;
}

.tabs__panel {
    display: none;
}

.tabs__panel.tab-selected {
    display: block;
}

.tabs--tabbed .tabs__nav {
    bottom: -1px;
}

.tabs--tabbed .tabs__link {
    /* color: #000;
  border-bottom: 0;
  font-weight: 900;
  font-size: 20px;
  font-family: 'DINPro-Regular', DINCond-Medium, "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 10px; */
    color: #fff;
    padding: 1%;
    text-align: center;
    font-size: 1.3em;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    text-decoration: none;
}


/* #mntAmbassador .contents a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 25%;
    color: #fff;
    padding: 1%;
    background: #bf24ca;
    background: -webkit-gradient(linear, left top, left bottom, from(#374e9), to(#007be4));
    background: linear-gradient(180deg, #bf24ca 0%, #007be4 100%);
    text-align: center;
    font-size: 1.3em;
    border-left: 4px solid #000;
    border-right: 4px solid #000;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
} */

.tabs__tab:hover {
    text-decoration: none;
    background: linear-gradient(218deg, #551056 0%, #bf24ca 100%);
}

@media (max-width: 960px) {
    .tabs--tabbed .tabs__link {
        padding: 10px 0;
    }
}


/* .tabs--tabbed .tabs__link:hover,
.tabs--tabbed .tabs__link:focus {
    color: #000;
    text-decoration: none;
    outline: 0;
} */

.tabs--tabbed .tab-selected .tabs__link {
    color: #bf24ca;
}

.tabs__tab.tab-selected {
    color: #bf24ca;
    background: #000;
    border: 2px solid;
}

@media (max-width: 767px) {
    .tabs__nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .tabs--tabbed .tabs__nav {
        margin-top: 50px;
        width: 90%;
        margin: auto;
    }
    .tabs__tab {
        width: 100%;
        border-left: 0;
        border-right: 0;
    }
}


/*# sourceMappingURL=tab.css.map */