/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard.
 */

.sr-only.sr-focusable:active,
.sr-only.sr-focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    width: auto;
}
.sr-only.sr-focusable span,
.sr-only.sr-focusable span {
    background: #bed62f;
    color: #000;
    font-family: "Roboto Condensed", Roboto, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    padding: .5em 1em;
    position: fixed;
    top: 1em; left: 1em;
    text-transform: uppercase;
    z-index: 99999;
}
.sr-only.sr-focusable:active::before,
.sr-only.sr-focusable:focus::before {
    background: rgba(0,0,0,.8);
    content: " ";
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 99998;
}

/* CONTAINER */

.container {
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
}

/* BUTTONS */

.btn {
    border: 0;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.4;
    padding: .5rem 1rem;
    text-transform: uppercase;
}
.btn .fa + .sr-none {
    margin-left: .312rem;
}

    /* -- Link */

    .btn-link {
        color: #1b1363;
        font-family: "Roboto Condensed", Roboto, Helvetica, Arial, sans-serif;
        font-size: 0.75rem;
        font-weight: 700;
        line-height: 1.4;
        padding: .5rem 0;
        text-align: inherit;
        text-transform: uppercase;
    }
    .btn-link + .btn-link {
        margin-left: 1rem;
    }

    /* -- Default */

    .btn-default {
        background: #bed62f;
        color: #fff;
    }
    .btn-default:focus,
    .btn-default:hover {
        color: #000;
    }

    /* -- Primary */

    .btn-primary {
        background: rgba(0,0,0,.1);
        border: 2px solid #fff;
        color: #fff;
    }
    .btn-primary:focus,
    .btn-primary:hover {
        background: rgba(0,0,0,.25);
        border-color: rgba(0,0,0,.1);
        color: #fff;
    }

    /* -- Purple */

    .btn-purple {
        background: #1b1363;
        border: 2px solid #1b1363;
        color: #fff;
    }
    .btn-purple:focus,
    .btn-purple:hover {
        background: #1b1363;
        border-color: #1b1363;
        color: #fff;
    }

/* FORM */

.form-group {
    margin: 0 0 2rem;
}
.form-submit {
    margin-bottom: 0;
    text-align: center;
}

.radio input[type=radio],
.radio-inline input[type=radio],
.checkbox input[type=checkbox],
.checkbox-inline input[type=checkbox] {
    margin-top: 6px;
}

    /* -- Fieldset */

    fieldset {
        padding: 0;
    }
    fieldset legend {
        border: 0;
        color: inherit;
        font-weight: 400;
        font-size: 0.875rem;
        margin: 0;
        padding: 0 0 1rem;
        text-transform: uppercase;
    }

    /* -- Control-Label */

    .control-label,
    .radio > label,
    .checkbox > label {
        font-weight: 300;
        font-size: 1.125rem;
    }

    /* -- Form-Control */

    .form-control {
        background: transparent;
        border: 1px solid #aecb00;
        border-radius: 0;
        box-shadow: none;
        font-size: 1.125rem;
        font-weight: 100;
        height: auto;
        padding: .3em .6em .3em;
    }
    .form-control:active,
    .form-control:focus {
        box-shadow: 0 0 3rem rgba(0,0,0,.1);
        border-color: #fff;
    }
    select.form-control {
        height: 37px;
    }

/* NAV */

.nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav ul > li > a {
    display: block;
    padding: 10px 15px 10px 30px;
}
.nav ul > li > a:focus,
.nav ul > li > a:hover {
    background: #eee;
    text-decoration: none;
}

/* TABS */

.tab-content {
    overflow: hidden;
}
.tab-content > .tab-pane {
    -webkit-transition: all .25s ease-in-out;
       -moz-transition: all .25s ease-in-out;
        -ms-transition: all .25s ease-in-out;
         -o-transition: all .25s ease-in-out;
            transition: all .25s ease-in-out;
}
.tab-content > .tab-pane.active {
    -webkit-transform: translate3d(0%,0,0);
       -moz-transform: translate3d(0%,0,0);
        -ms-transform: translate3d(0%,0,0);
         -o-transform: translate3d(0%,0,0);
            transform: translate3d(0%,0,0);
}
.tab-content > .tab-pane.active.animate-in {
    -webkit-transform: translate3d(50%,0,0);
       -moz-transform: translate3d(50%,0,0);
        -ms-transform: translate3d(50%,0,0);
         -o-transform: translate3d(50%,0,0);
            transform: translate3d(50%,0,0);
}

/* MODAL */

.modal .modal-content {
    background: transparent;
    border: 0;
    box-shadow: none;
    color: #daff00;
}
.modal .modal-backdrop.in {
    opacity: .8;
}
.modal .modal-header {
    border: 0;
    min-height: 0;
    padding: 0;
    position: relative;
}
.modal .modal-header .close {
    color: #daff00;
    opacity: 1;
    margin-top: -11px;
    position: absolute;
    top: 50%; right: 0;
    text-shadow: none;
}
.modal .modal-title {
    font-family: "Roboto Condensed", Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.275em;
    font-weight: 500;
    letter-spacing: .5pt;
    line-height: 1.4;
    padding: 1rem 0;
    text-transform: uppercase;
}

.modal .modal-body,
.modal .modal-footer {
    padding-right: 0;
    padding-left: 0;
}

.modal .modal-body {
    color: #fff;
    font-size: 2em;
    line-height: 1.2;
}