/*
 * 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: #009edf;
    color: #fff;
    font-family: "Effra", Helvetica, sans-serif;
    font-size: 0.750em;
    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;
}

    /* BTN */

    .btn {
        border-radius: 30px;
        text-transform: uppercase;
    }

        /* -- Small */

        .btn-sm {
            font-size: 0.6875rem;
            letter-spacing: .05rem;
            line-height: 1.4;
            padding: .2rem .65rem;
        }

        /* -- Primary */

        .btn-primary {
            background: #029FD6;
            border-color: #029FD6;
            color: #fff;
        }
        .btn-primary:focus,
        .btn-primary:hover {
            background: #fff;
            border-color: #029FD6;
            color: #029FD6;
        }
        .btn-radios .btn-primary {
            background: #fff;
            border-color: #029FD6;
            color: #029FD6;
        }
        .btn-radios .btn-primary:focus,
        .btn-radios .btn-primary:hover,
        .btn-radios .btn-primary.active {
            background: rgba(46,175,235,.75);
            border-color: #029FD6;
            box-shadow: none;
            color: #fff;
        }
        .btn-radios .btn-primary.active {
            background: #029FD6;
        }
        .btn-radios .btn-primary.active .lbl {
            color: #fff494;
        }


    /* BREADCRUMB */

    .breadcrumb-holder {
        background: rgba(255,255,255,.75);
        position: absolute;
        top: 0; left: 0; right: 0;
        z-index: 500;
    }
    .breadcrumb {
        background: transparent;
        font-size: .75rem;
        margin: 0;
        padding: 10px 0 11px 0;
        text-align: right;
    }
    @media screen and (max-width: 767px) {
        .breadcrumb-holder { display: none; }
    }
    @media screen and (min-width: 1200px) {
        .breadcrumb-holder {
            border-bottom: 1px solid #eee;
        }
        .breadcrumb {
            padding: 1.25em 0 1.25em 170px;
            text-align: left;
        }
    }

    /* CONTAINER */

    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        position: relative;
    }
    @media screen and (max-width: 767px) {
        .container { max-width: 380px; }
    }
    @media screen and (min-width: 1200px) {
        .0-container { width: 970px; }
    }

    /* ROW */

    .row {
        margin-left:  -1.5rem;
        margin-right: -1.5rem;
    }
    .row > div[class*="col"] {
        padding-left:  1.5rem;
        padding-right: 1.5rem;
    }

    /* CAROUSEL */

    .carousel-fade .carousel-inner .item {
        opacity: 0;
        transition-property: opacity;
    }
    .carousel-fade .carousel-inner .active {
        opacity: 1;
    }
    .carousel-fade .carousel-inner .active.left,
    .carousel-fade .carousel-inner .active.right {
        left: 0;
        opacity: 0;
        z-index: 1;
    }
    .carousel-fade .carousel-inner .next.left,
    .carousel-fade .carousel-inner .prev.right {
        opacity: 1;
    }
    .carousel-fade .carousel-control {
        z-index: 2;
    }

    /*
    WHAT IS NEW IN 3.3: "Added transforms to improve carousel performance in modern browsers."
    now override the 3.3 new styles for modern browsers & apply opacity
    */
    @media all and (transform-3d), (-webkit-transform-3d) {
        .carousel-fade .carousel-inner > .item.next,
        .carousel-fade .carousel-inner > .item.active.right {
            opacity: 0;
            -webkit-transform: translate3d(0, 0, 0);
                    transform: translate3d(0, 0, 0);
        }
        .carousel-fade .carousel-inner > .item.prev,
        .carousel-fade .carousel-inner > .item.active.left {
            opacity: 0;
            -webkit-transform: translate3d(0, 0, 0);
                    transform: translate3d(0, 0, 0);
        }
        .carousel-fade .carousel-inner > .item.next.left,
        .carousel-fade .carousel-inner > .item.prev.right,
        .carousel-fade .carousel-inner > .item.active {
            opacity: 1;
            -webkit-transform: translate3d(0, 0, 0);
                    transform: translate3d(0, 0, 0);
        }
    }

    /* FORM */

    .form-control {
        border-color: #dcdcdc;
        border-radius: 0;
        font-size: 1em;
        font-weight: 300;
        height: auto;
        padding: .6rem .6rem .5rem;
    }
    select.form-control {
        height: 41px;
    }

    .form-group {
        margin-bottom: 20px;
        position: relative;
    }
    .form-group .control-label {
        color: #757575;
        0-position: absolute;
        0-top: 0; left: 0;
    }
    .form-submit .btn {
        padding-left: 2rem;
        padding-right: 2rem;
    }

        /* -- Radio and Checkbox */

        .radio, .checkbox {
            padding-left: 20px;
        }
        .radio-lbl, .checkbox-lbl {
            font-weight: 300;
        }
        .radio-label,
        .radio-inline {
            font-size: 1.125em;
            font-weight: 300;
        }
        .radio-label {
            display: inline-block;
            margin: 0 10px 0 0;
            vertical-align: middle;
        }
        .radio-inline input {
            0-margin-top: 3px;
        }

        /* -- Input group */

        .input-group-addon {
            border: 0;
            border-radius: 0;
        }
        .input-group-btn .btn {
            padding: .7rem .8rem .55rem .6rem;
        }

    /* MODAL */

    .modal .modal-content {
        background: transparent;
        border: 0;
        box-shadow: none;
        color: #029FD6;
    }
    .modal .modal-backdrop.in {
        opacity: .9;
    }
    .modal .modal-header {
        border: 0;
        min-height: 0;
        padding: 0;
        position: relative;
    }
    .modal .modal-header .close {
        color: #029FD6;
        opacity: 1;
        margin-top: -11px;
        position: absolute;
        top: 50%; right: 0;
        text-shadow: none;
    }
    .modal .modal-title {
        font-size: 1rem;
        font-weight: 400;
        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: 1.5rem;
        line-height: 1.2;
    }
    .modal .modal-dialog {
        z-index: 99999;
    }
    .modal .modal-dialog .btn {
        font-size: 1rem;
    }

    /* PANEL */

    .panel-default {
        background: transparent;
        border: 0;
        border-radius: 0;
    }
    .panel-default .panel-heading {
        background: transparent;
        border: 0;
        border-top: 2px solid #00afeb;
        border-left: 2px solid #00afeb;
        border-radius: 0;
        color: #00afeb;
        padding: 30px 0 0 30px;
    }
    .panel-default .panel-body {
        padding: 30px 0 0 30px;
    }
    .panel-default >.panel-heading + .panel-collapse > .panel-body {
        border: 0;
    }

        /* -- Title */

        .panel-default .panel-title {
            font-size: 1.5rem;
            font-weight: 900;
            line-height: 1;
        }
        .panel-default .panel-title a {
            display: block;
            position: relative;
        }
        .panel-default .panel-title a:focus,
        .panel-default .panel-title a:hover {
            text-decoration: none;
        }
        .panel-default .panel-title-link-on,
        .panel-default .panel-title-link-off {
            display: none;
            font-size: .75rem;
            font-weight: 400;
            position: absolute;
            right: 0; bottom: 0;
            text-transform: uppercase;
        }
        .panel-default [aria-expanded="true"] .panel-title-link-on {
            display: block;
        }
        .panel-default [aria-expanded="false"] .panel-title-link-off {
            display: block;
        }


    /* PANEL-GROUP */

    .panel-group .panel {
        border-radius: 0;
        box-shadow: none;
    }
    .panel-group .panel+.panel {
        margin-top: 30px;
    }


/*
 * GITheWall
 */

.GITheWall ul li.GI_TW_Selected_Row {
  -webkit-transition: margin-bottom 0.3s ease-in;
  -moz-transition: margin-bottom 0.3s ease-in;
  -o-transition: margin-bottom 0.3s ease-in;
  transition: margin-bottom 0.3s ease-in;
}

.GI_TW_expander {
  position: absolute;
  z-index: 1;
  top: 0;
  background: #029FD6;
  left: 1.5rem; right: 1.5rem;
  margin-top: 0;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.3s ease-in;
  -moz-transition: height 0.3s ease-in;
  -o-transition: height 0.3s ease-in;
  transition: height 0.3s ease-in;
}
.GI_TW_expander.animating {
  overflow: hidden !important;
}
.GI_TW_expander.opened {
  overflow: visible;
}
.GI_TW_expander .GI_TW_pointer::before {
  content: " ";
  position: absolute;
  margin-left: -25px;
  margin-top: -6px;
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 25px solid #fff;
  z-index: 50;
  -webkit-transition: left 0.3s ease-in;
  -moz-transition: left 0.3s ease-in;
  -o-transition: left 0.3s ease-in;
  transition: left 0.3s ease-in;
}
.GI_TW_expander .GI_TW_pointer,
.GI_TW_expander .GI_TW_pointer::after {
  content: " ";
  position: absolute;
  margin-left: -40px;
  margin-top: -20px;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #029FD6;
  z-index: 100;
  -webkit-transition: left 0.3s ease-in;
  -moz-transition: left 0.3s ease-in;
  -o-transition: left 0.3s ease-in;
  transition: left 0.3s ease-in;
}
.GI_TW_expander .GI_TW_pointer::after {
    margin-left: -20px;
    margin-top: 0;
}
.GI_TW_expander .GI_TW_expander-inner {
  padding: 2rem;
  overflow: hidden;
}
.GI_TW_expander .GI_TW_expander-inner .GI_TW_fullimg {
  position: relative;
  width: 100%;
  height: 580px;
  margin: 10px 0 0;
  text-align: center;
  overflow: hidden;
}
.GI_TW_expander .GI_TW_expander-inner .GI_TW_fullimg img {
  position: relative;
}
.GI_TW_expander .GI_TW_Controls {
  z-index: 1;
}
.GI_TW_expander .GI_TW_close {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.GI_TW_expander .GI_TW_arrow {
  position: absolute;
  top: 50%;
  cursor: pointer;
}
.GI_TW_expander .GI_TW_arrow.GI_TW_hidden {
  display: none;
}
.GI_TW_expander .GI_TW_arrow.GI_TW_next {
  right: 30px;
}
.GI_TW_expander .GI_TW_arrow.GI_TW_prev {
  left: 30px;
}
.GI_TW_expander .GI_TW_loading {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ddd;
  box-shadow: 0 0 1px #cccccc, 15px 30px 1px #cccccc, -15px 30px 1px #cccccc;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0;
  -webkit-animation: loader 0.5s infinite ease-in-out both;
  -moz-animation: loader 0.5s infinite ease-in-out both;
  -ms-animation: loader 0.5s infinite ease-in-out both;
  -o-animation: loader 0.5s infinite ease-in-out both;
  animation: loader 0.5s infinite ease-in-out both;
}

@-webkit-keyframes loader {
  0%  { background: #ddd; }
  33% { background: #ccc; box-shadow: 0 0 1px #cccccc, 15px 30px 1px #cccccc, -15px 30px 1px #dddddd; }
  66% { background: #ccc; box-shadow: 0 0 1px #cccccc, 15px 30px 1px #dddddd, -15px 30px 1px #cccccc; }
}
@-moz-keyframes loader {
  0%  { background: #ddd; }
  33% { background: #ccc; box-shadow: 0 0 1px #cccccc, 15px 30px 1px #cccccc, -15px 30px 1px #dddddd; }
  66% { background: #ccc; box-shadow: 0 0 1px #cccccc, 15px 30px 1px #dddddd, -15px 30px 1px #cccccc; }
}
@-ms-keyframes loader {
  0%  { background: #ddd; }
  33% { background: #ccc; box-shadow: 0 0 1px #cccccc, 15px 30px 1px #cccccc, -15px 30px 1px #dddddd; }
  66% { background: #ccc; box-shadow: 0 0 1px #cccccc, 15px 30px 1px #dddddd, -15px 30px 1px #cccccc; }
}
@-o-keyframes loader {
  0%  { background: #ddd; }
  33% { background: #ccc; box-shadow: 0 0 1px #cccccc, 15px 30px 1px #cccccc, -15px 30px 1px #dddddd; }
  66% { background: #ccc; box-shadow: 0 0 1px #cccccc, 15px 30px 1px #dddddd, -15px 30px 1px #cccccc; }
}
@keyframes loader {
  0%  { background: #ddd; }
  33% { background: #ccc; box-shadow: 0 0 1px #cccccc, 15px 30px 1px #cccccc, -15px 30px 1px #dddddd; }
  66% { background: #ccc; box-shadow: 0 0 1px #cccccc, 15px 30px 1px #dddddd, -15px 30px 1px #cccccc; }
}