﻿html, body {
    margin:0;
    padding:0;
}

body{
    background-color:#ddd;

}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6, p, span, b, strong {
    color:#ffffff;
}
* {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    margin: 0px;
    padding:0;
}
h1 {font-size:80px;margin: 0px 0px 5px 0px;font-weight: 300;}
h2 {font-size:30px;margin: 0px 0px 5px 0px;font-weight: 400;}
h3 {font-size:26px;margin: 0px 0px 5px 0px;font-weight: 400;}
h4 {font-size:21px;margin: 0px 0px 5px 0px;font-weight: 400;}
h5 {font-size:18px;margin: 0px 0px 5px 0px;font-weight: 400;}
h6 {font-size:16px;margin: 0px 0px 5px 0px;font-weight: 400;}

input[type="text"], input[type="password"] {
    padding:7px;
    border:0;
    color:#919191;
    background:#ffffff;
    width:100%;
    margin: 0px 0px 15px 0px;
    font-size: 14px;
}
form span.Icon {
    position: absolute;
    color: #b1b1b1;
      margin: 0;
    padding: 0;
     opacity:0;
    animation: fadeIn 1s infinite;
    -webkit-animation:fadeIn 1s normal forwards, moveRight 2s normal forwards; 
    -moz-animation:fadeIn 1s normal forwards, moveRight 2s normal forwards; 
    -o-animation:fadeIn 1s normal forwards, moveRight 2s normal forwards;
    -ms-animation:fadeIn 1s normal forwards, moveRight 2s normal forwards; 

    -webkit-animation-delay: 1s; 
    -o-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -ms-animation-delay: 1s;
    animation-delay: 1s;
     right: 25px;
}
form span.UserIcon {
    top: 154px;
}

form span.PassIcon {
    top: 201px;
}

input[type="text"].input-validation-error + span i, input[type="password"].input-validation-error + span i {
    color: #ea8686;
}
input[type="password"].input-validation-error + span {
    top: 249px;
}
input[type="text"].input-validation-error + span {
    top: 201px
}
i.fa {
    font-size: 18px;
}
input {
    float:left;
}
button {
    background: #5cb85c;
    border: none;
    font-weight:600;
    border-radius: 0px;
    padding: 7px;
    color: #fff;
    font-size: 14px;
    width: 100px;
    float: right;
 
}
button:hover, button:focus, button:active {
    cursor:pointer;
     background: #5db95d;
}

/* checkboxes */
/* Base for label styling */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
[type="checkbox"]:not(:checked) + input + label,
[type="checkbox"]:checked + input + label {
  position: relative;
  padding-left: 35px;
  padding-top: 3px;
  cursor: pointer;
  font-size: 15px;
}

/* checkbox aspect */
[type="checkbox"]:not(:checked) + input + label:before,
[type="checkbox"]:checked + input + label:before {
  content: '';
  position: absolute;
  left:0; top: 2px;
  width: 25px; height: 25px;
  border: none;
  background: #ffffff;
  border-radius: 0px;
}
/* checked mark aspect */
[type="checkbox"]:not(:checked) + input + label:after,
[type="checkbox"]:checked + input + label:after {
  content: '✔';
  position: absolute;
  top: 8px;
  left: 6px;
  font-size: 18px;
  line-height: 0.8;
  color: #09ad7e;
  transition: all .2s;
}
/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + input + label:after {
  opacity: 0;
  transform: scale(0);
}
[type="checkbox"]:checked + input + label:after {
  opacity: 1;
  transform: scale(1);
}
/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + input + label:before,
[type="checkbox"]:disabled:checked + input + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
[type="checkbox"]:disabled:checked + input + label:after {
  color: #999;
}
[type="checkbox"]:disabled + input + label {
  color: #aaa;
}
/* accessibility */
[type="checkbox"]:checked:focus + input + label:before,
[type="checkbox"]:not(:checked):focus + input + label:before {
  border: none;
}
/* end checkboxes */

/* Validation */
.validation-summary-errors {
    position: relative;
    margin: 0px 0px 15px 0px;
    padding: 0;
}
.validation-summary-errors ul {
    list-style: none;
    font-size: 15px;
    color: #ffffff;
    background: #d05e5d;
    padding: 7px;
}

/* End Validation */

#UserName:after {
    content: '✔';
    font-size: 18px;
    line-height: 0.8;
    color: #000000;
    transition: all .2s;
}
.container {
    width: 335px;
    margin: 15% auto 0 auto;
    position: relative;
    display: block;
    clear: both;
    min-width: 335px;
    max-width: 335px;
    z-index: 5;
}
.container .logon-view {
    background:#333;
    color:#ffffff;
    padding:15px;
    display: inline-block;
    overflow:hidden;
    width: 335px;

    opacity:0;
    animation: fadeIn 1s infinite;
    -webkit-animation:fadeIn 1s normal forwards, moveRight 2s normal forwards; 
    -moz-animation:fadeIn 1s normal forwards, moveRight 2s normal forwards; 
    -o-animation:fadeIn 1s normal forwards, moveRight 2s normal forwards;
    -ms-animation:fadeIn 1s normal forwards, moveRight 2s normal forwards; 

  	-webkit-animation-delay: 1s; 
    -o-animation-delay: 1s;
    -ms-animation-delay: 1s;
    animation-delay: 1s;
}
.container .logon-view div {
    width: 100%;
    display: table;
    margin-bottom: 15px;
}
.container .logon-view div.cancel {
    height: 15px;
}
.container .logon-view div.cancel button {
    position: absolute;
    right: 15px;
    width: auto;
    min-width: 100px;
    background-color: #ec6608;
}
.brand {
    text-align:center;
    width:100%;
    display:block;
    color:#ffffff;

    opacity:0;
    animation: fadeIn 1s infinite;
    -webkit-animation:fadeIn 1s normal forwards, moveUp 1s normal forwards; 
    -moz-animation:fadeIn 1s normal forwards, moveUp 1s normal forwards; 
    -o-animation:fadeIn 1s normal forwards, moveUp 1s normal forwards;
    -ms-animation:fadeIn 1s normal forwards, moveUp 1s normal forwards; 

  	-webkit-animation-delay: 1.5s; 
    -o-animation-delay: 1.5s;
    -ms-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

video#bgvid { 
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    background: url(../Content/Media/bg-fallback_ETC.jpg) no-repeat;
    background-size: cover;
    display: block;
    opacity:0;
    
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);

    animation: fadeIn 1s infinite;
    -webkit-animation:fadeIn 1s normal forwards; 
    -moz-animation:fadeIn 1s normal forwards; 
    -o-animation:fadeIn 1s normal forwards;
    -ms-animation:fadeIn 1s normal forwards; 

  	-webkit-animation-delay: 0.5s; 
    -o-animation-delay: 0.5s;
    -ms-animation-delay: 0.5s;
    animation-delay: 0.5s; 
}
video#bgvid {
    transition: 1s opacity;
}
video { 
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    background: url(../Content/Media/bg-fallback_ETC.jpg) no-repeat;
    background-size: cover;
    display: block;
}
.stopfade { 
    opacity: .5; 
}
.etcLogo {
    padding:15px;
    position:relative;
    z-index:1;
    opacity:0;
    border-radius:50%;
    -moz-border-radius:50%;
    -webkit-border-radius:50%;

    -webkit-transition: all 1.5s ease-in-out;
    -moz-transition: all 1.5s ease-in-out;
    -o-transition: all 1.5s ease-in-out;
    -ms-transition: all 1.5s ease-in-out;
    transition: all 1.5s ease-in-out;

    animation: fadeIn 1s infinite;
    -webkit-animation:fadeIn 1s normal forwards, MoveUp 1s normal forwards; 
    -moz-animation:fadeIn 1s normal forwards, MoveUp 1s normal forwards; 
    -o-animation:fadeIn 1s normal forwards, MoveUp 1s normal forwards; 
    -ms-animation:fadeIn 1s normal forwards, MoveUp 1s normal forwards; 

  	-webkit-animation-delay: 1.8s; 
    -o-animation-delay: 1.8s;
    -ms-animation-delay: 1.8s;
    animation-delay: 1.8s;
}
.etcLogo img {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
}
.pauseBtn {
    background:#ffffff;
    color:#000000;
    padding:15px;
    position:fixed;
    bottom:30px;
    left:30px;
    z-index:1;
    border-radius:50%;
    -moz-border-radius:50%;
    -webkit-border-radius:50%;

    -webkit-transition: all 1.5s ease-in-out;
    -moz-transition: all 1.5s ease-in-out;
    -o-transition: all 1.5s ease-in-out;
    -ms-transition: all 1.5s ease-in-out;
    transition: all 1.5s ease-in-out;

    opacity:0;
    animation: fadeIn 1s infinite;
    -webkit-animation:fadeIn 1s normal forwards, fixedMoveUp 1s normal forwards; 
    -moz-animation:fadeIn 1s normal forwards, fixedMoveUp 1s normal forwards; 
    -o-animation:fadeIn 1s normal forwards, fixedMoveUp 1s normal forwards; 
    -ms-animation:fadeIn 1s normal forwards, fixedMoveUp 1s normal forwards; 

  	-webkit-animation-delay: 1.2s; 
    -o-animation-delay: 1.2s;
    -ms-animation-delay: 1.2s;
    animation-delay: 1.2s;
}
.pauseBtn:hover, .pauseBtn:focus, .pauseBtn:active {
    background:#000000;
    color:#ffffff;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    cursor:pointer;
}
i.fa.fa-play {
    padding-left: 4px;
}
i.fa.fa-pause {
    padding-left: 2px;
    padding-right: 1px;
}

/* CSS3 effects */
@keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}
@keyframes moveUp {
  0% {
    margin-top:50px;
  }
  100% {
    margin-top:0px;
  }
}
@keyframes fixedMoveUp {
  0% {
    bottom:0px;
  }
  100% {
    bottom:30px;
  }
}
/* einde CSS3 Effects */


/* Mobile styles */
@media (min-width: 768px) and (max-width: 991px) {
    /*html {
        background: url(../Content/Media/bg-fallback_ETC.jpg) #fff no-repeat center center fixed;
        }*/
    .container {
        width: 20%;
        margin: 15% auto 0 auto;
        position: relative;
        display: block;
        clear: both;
        min-width: 335px;
        z-index: 5;
    }
    video#bgvid {
        display: none;
    }
    span#vidpause {
        display: none;
    }
}
@media (max-width: 767px) {
    /*html {
        background: url(../Content/Media/bg-fallback_ETC.jpg) #fff no-repeat center center fixed;
    }*/
    h1 {font-size:70px;margin: 0px 0px 15px 0px;font-weight: 300;}
    h2 {font-size:25px;margin: 0px 0px 15px 0px;font-weight: 400;}
    h3 {font-size:21px;margin: 0px 0px 15px 0px;font-weight: 400;}
    h4 {font-size:18px;margin: 0px 0px 15px 0px;font-weight: 400;}
    h5 {font-size:16px;margin: 0px 0px 15px 0px;font-weight: 400;}
    h6 {font-size:14px;margin: 0px 0px 15px 0px;font-weight: 400;}
    [type="checkbox"]:not(:checked) + input + label, [type="checkbox"]:checked + input + label {
        font-size: 13px;
    }
    .validation-summary-errors ul {
        font-size: 14px;
    }
    form span.UserIcon {
        top: 157px;
    }
    form span.PassIcon {
        top: 205px;
    }
    video#bgvid {
        display: none;
    }
    .container {
        width: 90%;
        margin: 18% auto 0 auto;
        min-width: inherit;
    }
    span#vidpause {
        display: none;
    }
    input[type="text"].input-validation-error + span {
        top: 204px;
    }
    input[type="password"].input-validation-error + span {
        top: 252px;
    }
}