* {
    margin: 0; padding: 0;
}
html {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}
body {
    font-size: 1.2em;
    color: #9b9b9b;
    font-family: sans-serif;
    background-color: #f6f6f6;
}
#container {
    display: table;
    margin: 0 auto;
    padding: 1em;
    max-width: 250px;
}
#logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1em;
}
a {
    color: #d41042;
}
p {
    display: block;
    text-align: center;
}
h2 {
    margin: 0 0 1em 0;
}
.logo {
    padding: 15px;
}
.location-table {
    font-size: 1.1em;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 1em;
}
.arm-toggle {
    color: white;
    width: 2em;
    height: 2em;
    border-radius: 1em;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
.locked {
    background-color: #c0392b;
}
.unlocked {
    background-color: #bfbfbf;
}
input {
    font-size: 1.1em;
    border-color: #c6c6c6;
    border-width: 1px;
    padding: 3px;
    width: 220px;
}
button {
    outline : 0;
    -moz-outline : 0;
    border: none;
    font-size: 1em;
    font-weight: bold;
    border-radius: 5px;
    color: white;
    background-color: #d41042;
    height: 50px;
    width: 220px;
    margin: 0 auto;
}
.form-field {
    margin-top: 20px;
}
#error, #success {
    padding: 1em;
}
.error {
    text-align: center;
    padding: 1em;
}
.location {
    font-size: 1.5em;
};
#form {
    width: 220px;
    margin: 0 auto;
}
#form label {
    display: block;
}

.spinner {
    margin: 0 auto;
    text-align: center;
    disabled;
}
.spinner > div {
    width: 15px;
    height: 15px;
    background-color: white;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: bouncedelay 1.0s infinite ease-in-out;
    animation: bouncedelay 1.0s infinite ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.spinner .b1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}
.spinner .b2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}
@-webkit-keyframes bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0.0);
    }
    40% {
        -webkit-transform: scale(1.0)
    }
}
@keyframes bouncedelay {
    0%, 80%, 100% { 
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    } 40% { 
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

.circlespinner {
    margin: 50px auto;
    width: 20px;
    height: 20px;
    position: relative;
}

.circle {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.circle:before {
    content: '';
    display: block;
    margin: -12 auto;
    width: 10px;
    height: 10px;
    background-color: #9b9b9b;

    border-radius: 100%;
    -webkit-animation: circlebouncedelay 1s infinite ease-in-out both;
    animation: circlebouncedelay 1s infinite ease-in-out both;
}

td .circlespinner {
    margin: 0px auto;
    width: 8px;
    height: 8px;
}

td .circlespinner .circle:before {
    width: 7px;
    height: 7px;
    background-color: white;
}

.circle2  { -webkit-transform: rotate(45deg);  transform: rotate(46deg)  }
.circle3  { -webkit-transform: rotate(90deg);  transform: rotate(90deg)  }
.circle4  { -webkit-transform: rotate(135deg);  transform: rotate(135deg)  }
.circle5  { -webkit-transform: rotate(180deg); transform: rotate(180deg) }
.circle6  { -webkit-transform: rotate(225deg); transform: rotate(225deg) }
.circle7  { -webkit-transform: rotate(270deg); transform: rotate(270deg) }
.circle8  { -webkit-transform: rotate(315deg); transform: rotate(315deg) }
.circle2:before  { -webkit-animation-delay: -0.875s; animation-delay: -1.1s }
.circle3:before  { -webkit-animation-delay: -0.750s; animation-delay: -1.0s }
.circle4:before  { -webkit-animation-delay: -0.625s; animation-delay: -0.9s }
.circle5:before  { -webkit-animation-delay: -0.500s; animation-delay: -0.8s }
.circle6:before  { -webkit-animation-delay: -0.375s; animation-delay: -0.7s }
.circle7:before  { -webkit-animation-delay: -0.250s; animation-delay: -0.6s }
.circle8:before  { -webkit-animation-delay: -0.125s; animation-delay: -0.5s }

@-webkit-keyframes circlebouncedelay {
    0%, 80%, 100% { -webkit-transform: scale(0.5) }
    5% { -webkit-transform: scale(1.0) }
}

@keyframes circlebouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    } 5% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}
