/* activity tab */

.tabs__header {
    background: #eeeeee;
    position: relative;
}

.tabs__image {
    position: absolute;
    top: 0;
    left: 0;
}

.tabs__nav {
    margin: 0 0 0 0.5em;
    list-style: none;
    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;
    margin: 20px;
}

.tabs__tab {
    float: left;
    margin: 0 0.5em 0 0;
    padding: 0;
    width: 45%;
}

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

.is-selected .tabs__link {
    position: relative;
    background: #ff923c;
    color: #fff;
}

.tabs__body {
    position: relative;
    clear: both;
    overflow: auto;
    border: 1px solid #327CCB;
    margin-bottom: 28px;
    color: #327CCB;
}

.tabs__panel {
    display: none;
}

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

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

.tabs--tabbed .tabs__link {
    background: #c5ae79;
    color: #fff;
    border-bottom: 0;
    font-weight: 900;
    font-size: 22px;
    font-family: 'DINPro-Regular', DINCond-Medium, "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding: 10px;
}

.tabs--tabbed .tabs__link:hover,
.tabs--tabbed .tabs__link:focus {
    background-color: #c1a76c;
    color: #fff;
    text-decoration: none;
    outline: 0;
}

.tabs--tabbed .is-selected .tabs__link {
    color: #7f6b3c;
    background: #fff7d7;
}

@media (max-width: 960px) {
    .tabs__nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .tabs__tab {
        width: 100%;
    }
    .tabs--tabbed .tabs__nav {
        margin-top: 50px;
    }
}

.tabs--stepped .tabs__nav {
    top: 2.75em;
    left: .5em;
}

.tabs--stepped .tabs__link {
    color: #327CCB;
    background: white;
    padding: .25em 1em;
    position: relative;
}

.tabs--stepped .tabs__link:hover,
.tabs--stepped .tabs__link:focus {
    color: white;
    background: #327CCB;
}

.tabs--stepped .is-selected .tabs__link {
    color: white;
    background: #9d9fad;
}

.tabs--stepped .tabs__body {
    padding-top: 3em;
}

.has-tick .tabs__tab {
    margin-right: 1em;
}

.has-tick .tabs__link {
    position: relative;
}

.has-tick .tabs__link:hover:after,
.has-tick .tabs__link:focus:after {
    border-left-color: #327CCB;
}

.has-tick .tabs__link:before {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-top: .5em solid transparent;
    border-bottom: .5em solid transparent;
    border-left: .5em solid #327CCB;
    right: -.5em;
    top: .35em;
}

.has-tick .tabs__link:after {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-top: .4em solid transparent;
    border-bottom: .4em solid transparent;
    border-left: .4em solid #ffffff;
    right: -.4em;
    top: .45em;
}

.has-tick .is-selected .tabs__link:after {
    border-left-color: #327CCB;
}

.has-tick.tabs--tabbed .tabs__link:hover:after,
.has-tick.tabs--tabbed .tabs__link:focus:after {
    border-left-color: #FFFFFF;
}

.has-tick.tabs--tabbed .tabs__link:before {
    border-left-color: #327CCB;
}

.has-tick.tabs--tabbed .tabs__link:after {
    border-left-color: #327CCB;
}

.has-tick.tabs--tabbed .is-selected .tabs__link:after {
    border-left-color: #ffffff;
}