/* Default tab style */

.tabs {
    position: relative;
    overflow: hidden;
    width: 100%;
}


/* Nav */

.tabs nav {
    text-align: center;
}

.tabs nav ul {
    position: relative;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -ms-flex;
    display: -webkit-box;
    display: flex;
    margin: 0 auto !important;
    padding: 0;
    width: 450px;
    max-width: 100%;
    list-style: none;
    -ms-box-orient: horizontal;
    -ms-box-pack: center;
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.tabs nav ul li {
    width: 50%;
    position: relative;
    z-index: 1;
    display: block;
    margin: 0;
    text-align: center;
    /*	-webkit-flex: 1;
	-moz-flex: 1;
	-ms-flex: 1;
	flex: 1;*/
}

.tabs nav a {
    position: relative;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 2.5;
}

.tabs nav a span {
    vertical-align: middle;
    font-size: 0.75em;
}

.tabs nav li.tab-current a {
    color: #74777b;
}

.tabs nav a:focus {
    outline: none;
}


/* Icons */

.icon::before {
    z-index: 10;
    display: inline-block;
    margin: 0 0.4em 0 0;
    vertical-align: middle;
    text-transform: none;
    font-weight: normal;
    font-variant: normal;
    font-size: 1.3em;
    font-family: 'stroke7pixeden';
    line-height: 1;
    speak: none;
    -webkit-backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-upload::before {
    content: "\e68a";
}

.icon-tools::before {
    content: "\e60a";
}

.icon-plane::before {
    content: "\e625";
}

.icon-joy::before {
    content: "\e6a4";
}

.icon-plug::before {
    content: "\e69a";
}

.icon-home::before {
    content: "\e648";
}

.icon-gift::before {
    content: "\e652";
}

.icon-display::before {
    content: "\e65e";
}

.icon-date::before {
    content: "\e660";
}

.icon-config::before {
    content: "\e666";
}

.icon-coffee::before {
    content: "\e669";
}

.icon-camera::before {
    content: "\e66f";
}

.icon-box::before {
    content: "\e674";
}


/* Content */

.content-wrap {
    position: relative;
}

.content-wrap section {
    display: none;
    margin: 0 auto;
    padding: 0;
    max-width: 1200px;
    text-align: center;
}

@media \0screen\,
screen\9 {
    .content-wrap section {
        display: block;
    }
}

.content-wrap section.content-current {
    display: block;
}


/* Fallback */

.no-js .content-wrap section {
    display: block;
    padding-bottom: 2em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.no-flexbox nav ul {
    display: block;
}

.no-flexbox nav ul li {
    min-width: 15%;
    display: inline-block;
}

@media screen and (max-width: 670px) {
    .tabs nav ul li {
        position: relative;
        z-index: 1;
        display: block;
        margin: 0;
        text-align: center;
        -moz-flex: 1;
        -ms-flex: 1;
        -webkit-box-flex: 1;
        flex: 1;
    }
}

@media screen and (max-width: 58em) {
    .tabs nav a.icon span {
        display: none;
    }
    .tabs nav a:before {
        margin-right: 0;
    }
}


/* Individual tab styles */


/*****************************/


/* Icon box */


/*****************************/

.tabs-style-iconbox nav ul li a {
    overflow: visible;
    padding: 20px 0;
    line-height: 1;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: #a7a7a7;
    border-bottom: 4px solid #c9c9c9;
}

.tabs-style-iconbox nav ul li a span {
    font-weight: normal;
    font-size: .9em;
}

.tabs-style-iconbox nav ul li.tab-current {
    z-index: 100;
}

.tabs-style-iconbox nav ul li.tab-current a {
    color: #455dfd;
    border-color: #455dfd;
}


/*.tabs-style-iconbox nav ul li.tab-current a::after {
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -10px;
    width: 0;
    height: 0;
    border: solid transparent;
    border-width: 10px;
    border-top-color: #f23839;
    content: '';
    pointer-events: none;
}

.tabs-style-iconbox nav ul li:first-child::before,
.tabs-style-iconbox nav ul li::after {
    position: absolute;
    top: 20%;
    right: 0;
    z-index: -1;
    width: 1px;
    height: 60%;
    background: rgba(0,0,0,0.07);
    content: '';
}
*/

.tabs-style-iconbox nav ul li:first-child::before {
    right: auto;
    left: 0;
}

.tabs-style-iconbox .icon::before {
    display: block;
    margin: 0 0 0.25em 0;
}

@media screen and (max-width: 767px) {
    .tabs-style-iconbox nav ul li a span {
        font-size: 16px;
    }
}