.navbar-expand{
     margin: 0!important;
     width: 100% !important;
 }
.content-wrapper {
    background: #f4f6f9;
    margin: 0 !important;
    padding: 4%;
}




body {
    background-size: cover;
    height: 100%;
    font-family: 'Merriweather Sans', sans-serif;
    color: #666;
}

#signup {
    width: 600px;
    height: auto;
    padding: 20px;
    background: #fff;
    margin: 80px auto;
    position: relative;
    min-height: 300px;
}
#fieldsets {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
}
input[type=text],
input[type=email],
input[type=password],
input[type=tel],
textarea {
    display: block;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ddd;
    padding: 8px;
    margin-bottom: 8px;
    position: relative;
}textarea:focus {
     outline: none;
     border: 1px solid darken(#2cbab2,10%);
 }


input[type=radio]{
    margin: 6px;
    display: inline-block;
}
fieldset {
    border: none;
    position: absolute;
    left: -640px;
    width: 600px;
    padding: 10px 0;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    opacity: 0
}
.current {
     left: 20px;
     opacity: 1;
 }.current.next {
     left: 640px;
  }

input[type=submit] {
    display: none;
    border: none;
}
#section-tabs {
    font-size: 0.8em;
    height: 50px;
    position: relative;
    margin-top: -50px;
    margin-bottom: 50px;
    padding: 0;
    font-weight: bold;
    list-style: none;
    text-transform: uppercase;
}
li {
    color: #a7a7a7;
}
span {
    color: #bababa;
}
/*cursor: not-allowed;*/
span.active {
     color: #444;
     cursor: pointer;
 }


.error {
    color: #bf2424;
    display: block;
}
input.error, textarea.error {
    border-color: #bf2424;
}
input.error, textarea.error:focus {
     border-color: #bf2424;
}
label.error {
    margin-bottom: 20px;
}
input.valid {
    color: green;
}
label.valid {
    position: absolute;
    right: 20px;
}
input+.valid, textarea+.valid {
    display: none;
}
.valid+.valid {
    display: inline;
    position: absolute;
    right: 10px;
    margin-top: -36px;
    color: green;
}

.btn {
    border: none;
    padding: 8px;
    background: #2cbab2;
    cursor: pointer;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
}


body{
    background-color: #1D1F20;
}
#errorWrapper{
    display:block;
    position:fixed;
    width: 100%;
    top: 45%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
}
#error403{
    width: 80vw;
    max-width: 400px;
    height: 80vw;
    max-height: 400px;
    margin: 0 auto;
    border-radius:50%;
    background-color: #333;
    background-image:
            url( '../../../../datas/images/default/403.svg');
            url( '../../../../datas/images/default/403stripe.svg');
           /* url( 'http://coolsys.paulonavarro.com/css/images/403stripe.svg');*/
    background-size: 85%, 15%;
    background-repeat: no-repeat, repeat-x;
    background-position: 800% 100%, 130% 75%;
    box-shadow: inset 0 0 10px 3px #000;
    animation: grow 1s 1, security 1s 1 0.5s forwards;
}
#errorText{
    margin: 0;
    font-family: 'Audiowide', cursive;
    text-align: center;
    color: #ccc;
    font-size: 40px;
}
.red{
    color: rgb(255, 50, 50);
    animation: glow 2s infinite;
}
@keyframes grow{
    0%{
        width: 0;
        height: 0;
    }
}
@keyframes security{
    0%{
        background-position: 800% 100%, 130% 75%;
    }
    100%{
        background-position:50% 100%, 130% 75%;
    }
}
@keyframes glow{
    0%{
        text-shadow: 0 0 3px rgba(255, 0,0,0.8);
    }
    50%{
        text-shadow: 0 0 20px rgba(255, 0,0,0.8);
    }
    100%{
        text-shadow: 0 0 3px rgba(255, 0,0,0.8);
    }
}