/* reset */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

img {
  max-width: 100%;
}
/* end reset */

/* normalize */
/*
=============================================================================
                   Normalize, border box and clearfix
=============================================================================
*/

article,aside,details,figcaption,figure,footer,header,hgroup,nav,section,summary{display:block;}audio,canvas,video{display:inline-block;}audio:not([controls]){display:none;height:0;}[hidden]{display:none;}html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;}a:active,a:hover{outline:0;}h1{font-size:2em;}abbr[title]{border-bottom:1px dotted;}b,strong{font-weight:700;}dfn{font-style:italic;}mark{background:#ff0;color:#000;}code,kbd,pre,samp{font-family:monospace, serif;font-size:1em;}pre{white-space:pre-wrap;word-wrap:break-word;}q{quotes:\201C \201D \2018 \2019;}small{font-size:80%;}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}sup{top:-.5em;}sub{bottom:-.25em;}img{border:0;}svg:not(:root){overflow:hidden;}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em;}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0;}button,input{line-height:normal;}button,html input[type=button],/* 1 */
input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer;}button[disabled],input[disabled]{cursor:default;}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0;}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none;}textarea{overflow:auto;vertical-align:top;}table{border-collapse:collapse;border-spacing:0;}body,figure{margin:0;}legend,button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}

* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }

.clearfix:after {
   content: " ";
   visibility: hidden;
   display: block;
   height: 0;
   clear: both;
}
/* end normalize */

html {
    font-family: 'Roboto', sans-serif;
}


body {
    display: flex;
    flex-direction: column;
    flex-flow: column nowrap;
    min-height: 100vh;
    width: 100%;
}

header {
    background-color: #00838e;
    padding: 10px 20px;
}

@media only screen and (max-width: 700px) {
    .c-header {
        padding: 5px 20px;
    }
}

.c-header-logo img {
    width: 120px;
}

@media only screen and (max-width: 700px) {
    .c-header-logo {
        text-align: center;
    }
    .c-header-logo img {
        width: 85px;
    }
}

h1 {
    font-family: 'Raleway', sans-serif;
    color: #00838e;
    font-weight: 700;
    font-size: 35px;
    line-height: 47px;
    text-align: center;
    margin-bottom: 40px;
}

p {
    font-size: 15px;
    margin-bottom: 1rem;
}

/* a {
    color: #000;
    font-weight: 700;
} */

a {
  color: #00838e;
  text-decoration: underline
}

a:focus,
a:hover {
    text-decoration: none;
}

ul,li {
    list-style: none;
}

:focus {
    outline: 2px solid #ffffff;
}

.c-main {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    flex: 1 0 auto;
    flex-direction: column;
}

@media only screen and (max-width: 700px) {
    .c-main {
        background-color: #deebed;
        margin: 0;
        align-items: flex-start;
        flex-direction: row;
    }
}

.c-form {
    background-color: #deebed;
    padding: 40px 30px 80px;
    border: 2px solid #00838e;
}

@media only screen and (max-width: 700px) {
    .c-form {
        border: 0;
    }
}

.c-form a {
    font-size: 15px;
    font: inherit;
}

.c-form a:focus {
    outline: 2px solid #333;
}

.c-form-fields {
    padding: 0 60px 20px;
}

@media only screen and (max-width: 700px) {
    .c-form-fields {
        padding: 0 20px 20px;
    }
}

.c-form-field {
    /* display: flex; */
    position: relative;
    flex-wrap: wrap;
    margin: 0 0 20px 0;
}

.c-form-field-wrapper {
    position: relative;
    width: 100%;
}

.c-form-field label {
    display: inline-block;
    font-weight: 700;
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 5px;
}

/* .c-form-field input { */
    /* border: 1px solid #ccc; */
    /* border-radius: 2px; */
    /* font-size: 14px; */
    /* height: 40px; */
    /* padding: 6px 12px; */
    /* width: 100%; */
    /* color: #555; */
/* } */

.c-form-field button {
    border: 0;
    background-color: #ce412d;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    padding: 10px 15px;
    color: #fff;
    width: 140px;
}

.c-form-content {
    text-align: center;
}

.c-form-content p {
    margin-bottom: 10px;
}

.c-form-content .is-italics {
    font-style: italic;
    font-weight: 700;

}

.disclaimer {
  margin-bottom: 10px;
}

.dis-content {
  font-size: 10px;
  font-style: italic;
  margin-bottom: 5px;
}

.desc_section{
  font-size: 13px;
  margin-bottom: 25px;
}

.desc_section_field{
  margin-bottom: 5px;
}

.desc_section_link{
  font-weight: 700;
}

.desc_section_field a {
  font-size: 13px;
}

footer {
    background-color: #000;
    min-height: 247px;
    padding: 50px 0 10px;
}

@media only screen and (max-width: 700px) {
    footer {
        min-height: 200px;
    }
}

footer a,
footer p {
    color: #ffffff;
    font-weight: 400;
    font-size: 12px;
}

.c-footer-primary {
    padding-bottom: 40px;
}

@media only screen and (max-width: 700px) {
    .c-footer-primary {
        padding-bottom: 20px;
    }
}

.c-footer-primary ul li {
    margin-bottom: 10px;
}

.c-footer-secondary-wrap {
    padding-top: 5px;
    border-top: 1px solid #00a0af;
}

@media only screen and (max-width: 700px) {
    .c-footer-secondary-wrap {
        flex-direction: column!important;
        padding-top: 20px;
        border-top: 1px solid #ffffff;
    }
    .c-footer-secondary-wrap p {
        text-align: center;
    }
}

.c-footer-terms {
    display: flex;
    justify-content: flex-end;
}

@media only screen and (max-width: 700px) {
    .c-footer-terms {
        justify-content: center;
    }
}

.c-footer-terms li {
    padding: 0 5px;
}

@media only screen and (max-width: 1200px) {
    .c-social {
        padding: 0 0.9375rem 0 0;
    }
}

.c-social li{
    padding: 0 5px 2px;
}   

/* lists */

.c-list {
    display: flex;
    flex-direction: column;
}

.c-list.is-horizontal {
    flex-direction: row;
}

/* utility classes */

.is-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.justify-end {
    justify-content: flex-end;
}

.align-center {
    align-items: center;
}

.align-end {
    align-items: flex-end;
}

.align-start {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

.has-padding-top {
    padding: 80px 0 0;
}

.is-bold {
    font-weight: 700;
}

.show-on-focus {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    border: 0;
}

.show-on-focus:focus {
    position: static !important;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
    -webkit-clip-path: none;
    clip-path: none;
}

/* grid classes */

.o-row {
    display: flex;
    max-width: 1184px;
    width: 100%;
    flex-flow: row nowrap;
    margin-right: auto;
    margin-left: auto;
}

.o-col-1 {
    width: 8.33333%;
    max-width: 8.33333%;
    /* padding: 0 0.9375rem; */
}

.o-col-2 {
    width: 16.66667%;
    max-width: 16.66667%;
}

.o-col-3 {
    width: 25%;
    max-width: 25%;
}

.o-col-4 {
    width: 33.33333%;
    max-width: 33.33333%;
}

.o-col-6 {
    width: 50%;
    max-width: 50%;
    padding: 0 0.9375rem;
}

.o-col-8 {
    width: 66.66667%;
    max-width: 66.66667%;
    padding: 0 0.9375rem;
}

.o-col-12 {
    width: 100%;
    padding: 0 0.9375rem;
}

.o-grid-25 {
    width: 25%;
}

.o-grid-40 {
    width: 40%;
}

.o-grid-60 {
    width: 60%;
}

.o-grid-75 {
    width: 75%;
}

@media only screen and (max-width: 1200px) {
    div[class^="o-grid-"] {
        width: 100%;
    }
    div[class^="o-col-"].is-flex {
        flex-direction: column;
    }
    .o-row.is-large .o-col-2 {
        padding: 0 5px 0 5px;
    }
    .o-row.is-large .o-col-3 {
        padding: 0 5px 0 0.9375rem;
    }
}

@media only screen and (min-width: 1201px) {
    .o-row.is-large div[class^="o-col-"]:first-child {
        padding-left: 0;
    }
    
    .o-row.is-large div[class^="o-col-"]:last-child {
        padding-right: 0;
    }
    .o-grid-25,
    .o-grid-40 {
        margin-right: 5px;
    }
}

@media only screen and (max-width: 700px) {
    .o-grid-60,
    .o-grid-75,
    .c-social {
        display: none;
    }
    .o-grid-25,
    .o-grid-40 {
        text-align: center;
    }
    .o-col-6 {
        width: 100%;
        max-width: 100%;
    }
}

/*B2C only style */

::-moz-placeholder {
  color: transparent;
}

::-moz-placeholder {
  color: transparent;
}

:-ms-input-placeholder {
  color: transparent;
}

::-webkit-input-placeholder {
  color: transparent;
}

label,
.password-label {
  margin-top: 10px;
}

label[for=ErrorPageMessage]{
  color: #FF0000;
  display: block;
  font-size: 14px;
  height: 40px;
  line-height: 1.42857143;
  background: none!important;  
  border:none;  
  padding:0!important; 
  width: auto;
  text-align: center;  
  margin-top: 15px;
}

#api ul {
  list-style-type: none;
  padding-left: 0;
}

#api[data-name='IdpSelections'] ul {
  text-align: center;
}

#api[data-name='Phonefactor'] .buttons button#cancel {
  width: 32%;
}

#createAccount{
  cursor: pointer;
  padding-left:2px;
  transition: 0.5s all;
  -moz-transition: 0.5s all;
  -ms-transition: 0.5s all;
  -o-transition: 0.5s all;
  -webkit-transition: 0.5s all;
}

#email_ver_input {
  margin-bottom: 10px 0;
}

#main{
  text-align:center; 
  font-size: 15px;
}

#forgot_password a{
  color: #9e9ea0;
  display: block;
  font-size: 14px;
  height: 40px;
  line-height: 1.42857143;
}

#PasswordResetUsingEmailAddressExchange{
  margin-top: 20px;
  color: #000;
  font-weight:100 !important;
  background: none!important;
  font-style: italic;
  text-decoration: underline;
  line-height: 14px;
  height: 30px;
  font-size: 14px;
  font-weight: bold!important;
}


#LocalAccountLoginExchange,
#LocalAccountRegistrationExchange {
  background-color: #ff5c62;
  background-repeat: no-repeat;
  background-size: 50px;
  color: #fff;
  margin-top: 10px;
  padding-left: 55px;
}

#logonIdentifier,
#password,
#signInName {
    border: 1px solid #ccc;
    border-radius: 2px;
    font-size: 14px;
    height: 40px;
    padding: 6px 12px;
    width: 100%;
    color: #555;
}

.attrEntry label[for=title_reset_password] {
  font-size: 21px;
	font-weight: 700;
	text-align: center
}

#logo img {
  float: left;
  height: 50px;
  width: 50px;
}

#MicrosoftAccountExchange {
  background-color: #28B1E6;
  background-repeat: no-repeat;
  background-size: 50px;
  padding-left: 55px;
}

#MicrosoftAccountExchange:hover {
  background-color: #189DCF;
}

#verifying_blurb {
    color: white;
    font-size: 18px;
    font-weight: 400;
    height: 100%;
    margin-top: 2.5em;
}

.accountButton:hover {
  border: none
}

.attrEntry,
.phoneEntry {
  margin-bottom: 15px;
  padding-top: 0;
}

.attrEntry input,
.attrEntry select,
.phoneEntry input,
.phoneEntry select,
#codeVerification input {
    border: 1px solid #ccc;
    border-radius: 2px;
    font-size: 14px;
    height: 40px;
    padding: 6px 12px;
    width: 100%;
    color: #555;
}

.attrEntry input[disabled] {
	background-color: #eee !important;
}

.attrEntry input:invalid,
.phoneEntry input:invalid,
#codeVerification input:invalid {
  border-color: inherit;
}

.attrEntry.validate input:invalid,
.phoneEntry.validate input:invalid,
#codeVerification.validate input:invalid {
  border-color: #a94442 !important;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075) !important;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075) !important;
}

.attrEntry #email_intro {
  display: none !important;
}

.attrEntry #extension_MarketingConsented_true,
.attrEntry #extension_TermsOfServiceConsented_2017-03-09 {
    display: inline-block;
	height: 13px;
	margin-right: 4px;
    width: 13px !important;
}

.attrEntry .error.itemLevel,
.attrEntry .helpText,
.phoneEntry .error.itemLevel,
.phoneEntry .helpText,
#codeVerification .error.itemLevel,
#codeVerification .helpText {
  display: none;
}

.attrEntry .tiny,
.phoneEntry .tiny,
#codeVerification .tiny {
  display: none;
}

#rememberMe {
 margin-top: 30px;
}

.buttons{
  margin: 20px 0;
  text-align: center;
}

.buttons button#cancel{
  display: none;
}

.buttons button#email_ver_but_edit {
  display:none !important;
}

.buttons button#email_ver_but_resend {
  background-color: #fff;
  border-color: #ccc;
  color: #333;
}

@media(max-width:767px) {
 .buttons button#cancel{
    height: 50px;
    width: 48.9%;
 }
}

.buttons button:hover#cancel,
.buttons button:hover#email_ver_but_edit,
.buttons button:hover#email_ver_but_resend {
  background-color: #e6e6e6;
  background-image: none;
  border-color: #adadad;
  color: #333;
}

.buttons button#continue {      
  background-color: #ce412d;
  border-bottom: 5px solid #ce412d;
  border-color: #ce412d;
  color: #fff;
  font-size: 18px;
  height: 60px;
  width: 100%;  
}

@media(max-width:767px){
  .buttons button#continue {
    height: 50px;
  }
}

.buttons button:hover#continue {
  background-color: #ce412d;
  background-image: none;
  border-color: #ce412d;
  color: #fff;
}

.buttons button[disabled]#continue,
.buttons button[disabled]:hover#continue {
  display: none;
} 

.buttons button#email_ver_but_resend,
.buttons button#email_ver_but_verify {
  margin-top: 5px;
}

.buttons button#email_ver_but_send,
.buttons button#email_ver_but_verify {
  background-color: #ce412d;
  border-color: #ce412d;
  color: #fff;
}

.buttons button:hover#email_ver_but_send,
.buttons button:hover#email_ver_but_verify {
  background-color: #ce412d;
  background-image: none;
  border-color: #ce412d;
  color: #fff;
}

.buttons button#verifyCode,
.buttons button#verifyPhone {      
  background-color: #5cb85c;
  border-bottom: 5px solid #449d44;
  border-color: #4cae4c;
  color: #fff;
  font-size: 18px;
  height: 60px;
  margin-right: 9px;
  width: 32%;  
}

@media(max-width:767px){
  .buttons button#verifyCode,
  .buttons button#verifyPhone {
    height: 50px;
  }
}

.create p {
  text-align: center;
}

.create {
  display: none; 
} 

.divider {
  display: none; 
}

.divider h2 {
  color: #ccc;
  line-height: 20px;
  margin: 20px 0;
  text-align: center;
  text-transform: lowercase;
}

.divider h2:after,
.divider h2:before {
  content: "";
  height: 1px;
  position: absolute;
  top: 10px;
  width: 40%;
}

.divider h2:after {
  background: rgb(126,126,126);
  background: linear-gradient(left, rgba(126,126,126,1) 0%, rgba(255,255,255,1) 100%);
  background: -moz-linear-gradient(left, rgba(126,126,126,1) 0%, rgba(255,255,255,1) 100%);
  background: -ms-linear-gradient(left, rgba(126,126,126,1) 0%, rgba(255,255,255,1) 100%);
  background: -o-linear-gradient(left, rgba(126,126,126,1) 0%, rgba(255,255,255,1) 100%);
  background: -webkit-linear-gradient(left, rgba(126,126,126,1) 0%, rgba(255,255,255,1) 100%);
  right: 0;
}

.divider h2:before {
  background: rgb(126,126,126);
  background: linear-gradient(right, rgba(126,126,126,1) 0%, rgba(255,255,255,1) 100%);
  background: -moz-linear-gradient(right, rgba(126,126,126,1) 0%, rgba(255,255,255,1) 100%);
  background: -ms-linear-gradient(right, rgba(126,126,126,1) 0%, rgba(255,255,255,1) 100%);
  background: -o-linear-gradient(right, rgba(126,126,126,1) 0%, rgba(255,255,255,1) 100%);
  background: -webkit-linear-gradient(right, rgba(126,126,126,1) 0%, rgba(255,255,255,1) 100%);
  left: 0;
}

.entry .buttons button:hover {
  background-color: #ce412d;
  border-color: #ce412d;
  color: #fff;
}

div.error.pageLevel,
.error.itemLevel p {
  color: #a94442;
}


div.error-page-content h2 {
  display: none;
}

div.error-page-content .error-page-help {
  display: none;
}

div.error-page-content .error-page-messagedetails {
  font-size: smaller;
}

div.error-page-header h2 {
  font-size: 21px;
  font-weight: 700;
  text-align: center;
}

.highlightError {
  border-color: #a94442 !important;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075) !important;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075) !important;
}

.idp_selection_container .intro p,
.local_account_login_container .intro p,
.local_account_login_email_code_container .intro p,
.local_account_login_phone_code_container .intro p,
.local_account_registration_container .intro p,
.self_asserted_listener_profile_registration_container .intro p,
.self_asserted_listener_profile_update_container .intro p,
.self_asserted_player_profile_registration_container .intro p,
.self_asserted_player_profile_update_container .intro p,
.social_account_registration_container .intro p {
	font-size: 21px;
	font-weight: 700;
	text-align: center;
}

.image-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  vertical-align: middle;
}

.intro {
  margin-top: 20px;
  display: none !important;
}

.localAccount .divider {
  display: none;
}

.login-logo {
  height: 140px;
  margin-top: -90px;
}

.options {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 10px;
  text-align: center;
  vertical-align: middle;
}

.panel-body{
  padding: 15px 30px !important;
}

.panel-default {
  border: 1px solid #ccc !important;    
}

.global_error_container,
.idp_selection_container,
.phonefactor_container,
.self_asserted_container,
.unified_container {
  padding-top: 80px;
}

.phoneNumber .type {
  display: inline-block;
  font-weight: bold;
  margin-bottom: 5px;
  max-width: 100%;
}

.phoneNumbers {
  margin-top: 20px;
}

.self_asserted_listener_profile_update_container #attributeList ul li:nth-child(2) .attrEntry,
.self_asserted_player_profile_registration_basic_container #attributeList ul li:nth-child(2) .attrEntry,
.self_asserted_player_profile_registration_full_container #attributeList ul li:nth-child(5) .attrEntry,
.self_asserted_player_profile_update_container #attributeList ul li:nth-child(5) .attrEntry {
	margin-bottom: 0;
}

.self_asserted_listener_profile_update_container #attributeList ul li:nth-child(3),
.self_asserted_player_profile_registration_basic_container #attributeList ul li:nth-child(3),
.self_asserted_player_profile_registration_full_container #attributeList ul li:nth-child(6),
.self_asserted_player_profile_update_container #attributeList ul li:nth-child(6) {
	display: none;
	margin-left: 15px;
}

.self_asserted_listener_profile_update_container #extension_MarketingConsented,
.self_asserted_player_profile_registration_basic_container #extension_MarketingConsented,
.self_asserted_player_profile_registration_full_container #extension_MarketingConsented,
.self_asserted_player_profile_update_container #extension_MarketingConsented {
	display: none;
}

/*
.social {
  margin-top: 30px;
}
*/

.unified_container .divider h2,
.unified_container .localAccount .intro h2,
.unified_container .social .intro h2 {
	font-size: 21px;
	font-weight: 700;
	text-align: center
}

.unified_container .rememberMe label {
  font-weight: inherit;
}

.verify {
  margin-top: 5px;
  padding-top: 0 !important;
}

#simplemodal-data.verifying-modal {
    height: 100%;
    position: relative;
}

#simplemodal-data.verifying-modal:before {
    animation: spinner 1500ms infinite linear;
    border-radius: 0.5em;
    box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
    content: '';
    display: inline-block;
    font-size: 10px;
    height: 1em;
    margin-top: 1em;
    position: fixed;
    width: 1em;
    -moz-animation: spinner 1500ms infinite linear;
    -ms-animation: spinner 1500ms infinite linear;
    -o-animation: spinner 1500ms infinite linear;
    -webkit-animation: spinner 1500ms infinite linear;
    -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
}

.working {
  bottom: 0;
  display: none;
  height: 2em;
  left: 0;
  margin: auto;
  overflow: show;
  position: fixed;
  right: 0;
  top: 0;
  width: 2em;
  z-index: 999;
}

.working:before {
  background-color: rgba(0,0,0,0.3);
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
}

.working:not(:required) {
  background-color: transparent;
  border: 0;
  color: transparent;
  font: 0/0 a;
  text-shadow: none;
}

.working:not(:required):after {
  animation: spinner 1500ms infinite linear;
  border-radius: 0.5em;
  box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
  content: '';
  display: block;
  height: 1em;
  font-size: 10px;
  margin-top: -0.5em;
  width: 1em;
  -moz-animation: spinner 1500ms infinite linear;
  -ms-animation: spinner 1500ms infinite linear;
  -o-animation: spinner 1500ms infinite linear;
  -webkit-animation: spinner 1500ms infinite linear;
  -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
}

.footer{
	color: #9e9ea0;
	font-size: 12px;
	padding: 20px 0;
	position: relative;
	bottom: 0;
	width: 100%;
	background-color: #ffffff;
}

.footer a{
	color: #9e9ea0;
	text-decoration: none;
	font-size: 12px;
	color: #9e9ea0;
}

.footer a:hover{
	text-decoration: underline;
}

.div-help{
	color:#ce412d;
	font-size:10px;
	margin-top: 8px; 
	font-style: italic;
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  
  100% {
    transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}

@-moz-keyframes spinner {
  0% {
    transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}

@-o-keyframes spinner {
  0% {
    transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes spinner {
  0% {
    transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
