.busyIndicatorImg {
    top: 24px;
    left: 53px;
    width: 43px;
    height: 11px;
    position: absolute;
    z-index: 99999;
}


#overlay {
    width: 100%;
    height: 100%;
    background-color: #404041;
    display: block;
    z-index: 99998;
    position: absolute;
}

#overlay.hide-overlay {
    -webkit-transition: opacity 0.8s;
    -moz-transition: opacity 0.8s;
    -o-transition: opacity 0.8s;
    transition: opacity 0.8s;
}

.overlay_logo {
    height: 300px;
    display: block;
    margin: auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("logo.png");
}

.overlay_content {
    left: 50%;
    max-width: 768px;
    overflow: auto;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
}

.overlay_text {
    color: white;
    margin: 30px 3%;
    text-align: center;
    text-shadow: 1px 1px #000000;
    width: 94%;
    font-family: Arial;
}

.overlay_error_message {
    color: white;
    margin: 30px 3%;
    text-align: center;
    text-shadow: 1px 1px #000000;
    width: 94%;
    font-family: Arial;
}

.theoplayer-texttracks {
    top: 0 !important;
    bottom: 0 !important;
}

.theoplayer-texttracks div[class^="theoplayer-ttmlcue-"] {
	font-size: 75% !important;
  font-family: Arial;
  font-weight: bold;
}

.theoplayer-texttracks div[class^="theoplayer-ttml-texttrack-"] p {
	text-align: center !important;
}

.theoplayer-texttracks div[class^="theoplayer-ttml-texttrack-"] p span {
	background-color: rgba(0, 0, 0, 0.4) !important;
	color: #ddd !important;
	padding: initial !important;
}

.theoplayer-texttracks div[class^="theoplayer-ttml-texttrack-"] p span text {
	padding-left: 0.5em;
	padding-right: 0.5em;
}

/* Styling for account management like reset password, change email etc */
.account-management #content {
    font-family: Arial;
    font-size: 1.1em;
    margin-top: 30px;
}

.account-management .logo {
    background-image: url("waoo_logo_small@2x.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    height: 180px;
    margin-bottom: 15px;
}

.account-management .input-container {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
}

.account-management .input-container .headline {
    text-align: center;
    font-size: 1.9em;
}

.account-management .input-container .description {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
}

.account-management .input-container .description h1 {
    font-size: 1.9em;
    font-weight: normal;
}

.account-management button.loginButton {
    width: 100%;
    height: 50px;
    margin-top: 20px;
    background-color: #343435;
    border: 0 solid;
    color: #fff;
    font-size: 1.1em;
    border-radius: 25px;
    transition: box-shadow .3s, transform .3s;
    cursor: pointer;
}

.account-management button.loginButton:hover,
.account-management button.loginButton:focus {
    transform: translateY(-1px);
    box-shadow: 0 20px 15px -10px rgba(0,0,0,.2);
}

/* -------------------------------- INPUT BOXES ---------------------------------- */
.account-management .input-container .group               {
    position:relative;
    margin-bottom: 25px;
}
.account-management .input-container input[type=text],
.account-management .input-container input[type=password]{
    font-size:1.1em;
    padding:5px 0px 5px 0px;
    display:block;
    margin:5px 0px 5px 0px;
    width:100%;
    border:none;
    background: none;
    border-bottom:1px solid #858586;
    border-radius:0;
    -webkit-border-radius: 0;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
    box-shadow: none;
}
.account-management .input-container input[type=text]:focus,
.account-management .input-container input[type=password]:focus {
    outline:none;
}

.account-management .input-container label.inputLabel {
    color:#525253;
    font-size:1.1em;
    font-weight:normal;
    position:absolute;
    pointer-events:none;
    left:5px;
    top:5px;
    transition:0.2s ease all;
    -moz-transition:0.2s ease all;
    -webkit-transition:0.2s ease all;
}

/* active state */
.account-management .input-container input:focus[type=text] ~ label.inputLabel,
.account-management .input-container input:valid[type=text] ~ label.inputLabel,
.account-management .input-container input:focus[type=password] ~ label.inputLabel,
.account-management .input-container input:valid[type=password] ~ label.inputLabel {
    top:-20px;
    font-size:0.9em;
    color:#343435;
}


.account-management .input-container div.errorText{
    color:#ff4d00;
    font-size: 0.9em;
    height: 0.9em;
    white-space: nowrap;
}

.account-management .input-container .bar   {
    position:relative;
    display:block;
    width:100%; }

.account-management .input-container .bar:before, .bar:after    {
    content:'';
    height:3px;
    width:0;
    bottom:2px;
    position:absolute;
    background:#343435;
    transition:0.2s ease all;
    -moz-transition:0.2s ease all;
    -webkit-transition:0.2s ease all;
}
.account-management .input-container .bar:before {
    left:50%;
}
.account-management .input-container .bar:after {
    right:50%;
}

/* active state */
.account-management .input-container input:focus[type=text] ~ .bar:before,
.account-management .input-container input:focus[type=text] ~ .bar:after,
.account-management .input-container input:focus[type=password] ~ .bar:before,
.account-management .input-container input:focus[type=password] ~ .bar:after {
    width:50%;
}

.bar.invalid:before, .bar.invalid:after {
    content: '';
    height: 3px;
    width: 0;
    bottom: 2px;
    position: absolute;
    background: #FF4D00;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all; }

.bar.invalid:before {
    left: 50%; }

.bar.invalid:after {
    right: 50%; }

.account-management .input-container .bar.invalid {
    animation: shake .5s linear;
    -webkit-animation: shake .5s linear;
}

input[type=text]:focus,
input[type=password]:focus {
    outline: none; }

/* active state */
input:focus[type=text] ~ .bar:before,
input:focus[type=text] ~ .bar:after,
input:focus[type=password] ~ .bar:before,
input:focus[type=password] ~ .bar:after {
    width: 50%;
}

#generalErrorId.errorText {
    text-align: center;
    white-space: normal;
    height: auto;
}
