﻿
/** tabs.scss */

/* Default tab style */

.tabs {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    font-weight: 300;
    font-size: 1.25em;
}
.hidden {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
}
    /* Nav */
    .tabs nav {
        text-align: center;
    }

        .tabs nav ul {
            position: relative;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: -moz-flex;
            display: -ms-flex;
            display: flex;
            margin: 0 auto;
            padding: 0;
            max-width: 1200px;
            list-style: none;
            -webkit-flex-flow: row wrap;
            -moz-flex-flow: row wrap;
            -ms-flex-flow: row wrap;
            flex-flow: row wrap;
            -webkit-justify-content: center;
            -moz-justify-content: center;
            -ms-justify-content: center;
            justify-content: center;
        }

            .tabs nav ul li {
                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: red;
        }

        .tabs nav a:focus {
            outline: none;
        }
.tab-current a {
    text-decoration: none;
}
/* Content */
.content-wrap {
    position: relative;
}

    .content-wrap section {
        display: none;
        margin: 0 auto;
        padding: 0em;
        max-width: 1200px;
        text-align: center;
    }

        .content-wrap section.content-current {
            display: block;
        }

        .content-wrap section p {
            margin: 0;
            padding: 0.75em 0;
            color: #dc3545;
            font-weight: 900;
            font-size: 1em;
            line-height: 1;
        }

/* 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;
    }
.nameReward{
    background-color:rgba(255,255,255,0.5);
    color:red;
    font-weight:bold;
}
.namenameReward2 {
    background-color: #ffd20e;
    color: black;
}
@media screen and (max-width: 58em) {
    .tabs nav a.icon span {
        display: none;
    }

    .tabs nav a:before {
        margin-right: 0;
    }
}

/** tabstyles.scss */
/* Individual tab styles */

/*****************************/
/* Bar */
/*****************************/

.tabs-style-bar nav {
    background: rgba(40,44,42,0.05);
}

    .tabs-style-bar nav ul {
        border: 4px solid transparent;
    }

        .tabs-style-bar nav ul li a {
            margin: 0 2px;
            background-color: #f7f7f7;
            color: #74777b;
            transition: background-color 0.2s, color 0.2s;
        }

            .tabs-style-bar nav ul li a:hover,
            .tabs-style-bar nav ul li a:focus {
                color: #2CC185;
                text-decoration:none;
            }

            .tabs-style-bar nav ul li a span {
                text-transform: uppercase;
                letter-spacing: 1px;
                font-weight: 500;
                font-size: 0.6em;
            }

        .tabs-style-bar nav ul li.tab-current a {
            background: #2CC185;
            color: #fff;
        }

/*****************************/
/* Shape */
/*****************************/

.tabs-style-shape {
    max-width: 1200px;
}

    .tabs-style-shape nav ul li {
        margin: 0 3em;
    }

        .tabs-style-shape nav ul li:first-child {
            margin-left: 0;
        }

        .tabs-style-shape nav ul li.tab-current {
            z-index: 100;
        }

    .tabs-style-shape nav li a {
        overflow: visible;
        margin: 0 -3em 0 0;
        padding: 0;
        color: #fff;
        font-weight: 500;
    }

    .tabs-style-shape nav li:first-child a span {
        padding-left: 2em;
        border-radius: 30px 0 0 0;
    }

    .tabs-style-shape nav li:last-child a span {
        padding-right: 2em;
        border-radius: 0 30px 0 0;
    }

    .tabs-style-shape nav li a svg {
        position: absolute;
        left: 100%;
        margin: 0;
        width: 3em;
        height: 100%;
        fill: #ffd20e;
    }

        .tabs-style-shape nav li a svg:nth-child(2),
        .tabs-style-shape nav li:last-child a svg {
            right: 100%;
            left: auto;
            -webkit-transform: scale3d(-1,1,1);
            transform: scale3d(-1,1,1);
        }

    .tabs-style-shape nav li a span {
        display: block;
        overflow: hidden;
        padding: 0.65em 0;
        background-color: #ffd20e;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .tabs-style-shape nav li a:hover span {
        background-color: red;
        color:white;
    }

    .tabs-style-shape nav li a:hover svg {
        fill: red;
    }

    /* Make only shape clickable */
    .tabs-style-shape nav li a svg {
        pointer-events: none;
    }

        .tabs-style-shape nav li a svg use {
            pointer-events: auto;
        }

    .tabs-style-shape nav li.tab-current a span,
    .tabs-style-shape nav li.tab-current a svg {
        -webkit-transition: none;
        transition: none;
    }

    .tabs-style-shape nav li.tab-current a span {
        background: #f1d021;
        font-weight:bold;
    }

    .tabs-style-shape nav li.tab-current a svg {
        fill: #f1d021;
    }

    .tabs-style-shape .content-wrap {
        background: #fff;
    }

@media screen and (max-width: 58em) {
    .tabs-style-shape nav ul {
        display: block;
        padding-top: 1.5em;
    }

        .tabs-style-shape nav ul li {
            display: block;
            margin: -1.25em 0 0;
            -webkit-flex: none;
            flex: none;
        }

            .tabs-style-shape nav ul li a {
                margin: 0;
            }

            .tabs-style-shape nav ul li svg {
                display: none;
            }

            .tabs-style-shape nav ul li a span {
                padding: 1.25em 0 2em !important;
                border-radius: 30px 30px 0 0 !important;
                box-shadow: 0 -1px 2px rgba(0,0,0,0.1);
                line-height: 1;
            }

            .tabs-style-shape nav ul li:last-child a span {
                padding: 1.25em 0 !important;
            }

            .tabs-style-shape nav ul li.tab-current {
                z-index: 1;
            }
}