body {
    background: #3498db;
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

label {
    font-weight: bold;
}

.btn {
    border: none;
    padding: 10px 20px;
    text-transform: capitalize;
    background: #e74c3c;
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
}

.success, .danger {
    background: #2ecc71;
    border-radius: 10px;
    padding: 5px 10px;
    color: #ffffff;
    font-weight: bold;
    margin: 10px;
}

.danger {
    background: #e74c3c;
}

.header {
    background: #318ECC;
    padding: 15px;
    text-align: center;
    font-size: 50px;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Segoe UI, Arial, sans-serif;
    font-weight: lighter;
}

table {
    border: solid 2px #d3d3d3;
    margin-bottom: 20px;
}

table td {
    padding: 20px 5px;
}

table p {
    font-size: 12px;
}

.btn:hover {
    opacity: .7;
}

.alert {
    padding: 10px 10px;
    display: block;
    margin: 10px 0;
}

.alert-error {
    background: #FBE1DE;
    border: solid 1px #EF897E;
    color: #000000;
    font-weight: bold;
}

.alert-info {
    background: #EAECED;
    border: solid 1px #C3CACD;
    color: #61737B;
}

.alert-success {
    background: #E4F4E7;
    border: solid 1px #73C484;
    color: #0F9A2C;
}

.container {
    width: 800px;
    margin: 70px auto auto;
    min-height: 400px;
    background: white;
    box-shadow: 0 1px 1px 0 rgba(58, 87, 149, 0.16), 0 10px 10px 0 rgba(58, 87, 149, 0.12);
    border-radius: 10px;
}

.container .title {
    background: #318ECC;
    font-size: 20px;
    padding: 15px 10px;
    font-weight: bold;
    color: #ffffff;
}

.container .content {
    padding: 10px 15px;
}

.container .content .terms-container {
    height: 200px;
    width: 100%;
    overflow: scroll;
    overflow-x: hidden;
    padding: 15px;
    margin: 20px 0;
    box-sizing: border-box;
    border: solid 2px #d3d3d3;
}

input[type=text],
input[type=password] {
    display: block;
    margin: 10px 0;
    padding: 10px 5px;
    width: 100%;
    border: solid 2px #d3d3d3;
}

.container .content .footer {
    position: relative;
    border-top: solid 1px lightgrey;
    margin-top: 20px;
    padding: 15px 0;
    min-height: 50px;
}

.container .content .footer .buttons {
    position: absolute;
    top: 10px;
    right: 0;
}

.meter {
    height: 20px;
    position: relative;
    background-color: rgba(0, 0, 0, .1);
    border-radius: 25px;
    padding: 10px;
    box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
}

.meter > span {
    display: block;
    height: 100%;
    -webkit-border-radius: 20px 8px 8px 20px;
    border-radius: 20px 8px 8px 20px;
    background-color: rgb(43, 194, 83);
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, rgb(43, 194, 83)), color-stop(1, rgb(84, 240, 84)));
    background-image: linear-gradient(left bottom, rgb(43, 194, 83) 37%, rgb(84, 240, 84) 69%);
    box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3), inset 0 -2px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    transition: width 1s ease-in-out;
}

.meter > span:after, .animate > span > span {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.25, rgba(255, 255, 255, .2)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255, 255, 255, .2)), color-stop(.75, rgba(255, 255, 255, .2)), color-stop(.75, transparent), to(transparent));
    background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
    z-index: 1;
    -webkit-background-size: 50px 50px;
    -moz-background-size: 50px 50px;
    -webkit-animation: move 2s linear infinite;
    -webkit-border-radius: 20px 8px 8px 20px;
    border-radius: 20px 8px 8px 20px;
    overflow: hidden;
}

.animate > span:after {
    display: none;
}

@-webkit-keyframes move {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

.orange > span {
    background-color: #f1a165;
    background-image: -moz-linear-gradient(top, #f1a165, #f36d0a);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f1a165), color-stop(1, #f36d0a));
    background-image: -webkit-linear-gradient(#f1a165, #f36d0a);
}

.red > span {
    background-color: #f0a3a3;
    background-image: -moz-linear-gradient(top, #f0a3a3, #f42323);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f0a3a3), color-stop(1, #f42323));
    background-image: -webkit-linear-gradient(#f0a3a3, #f42323);
}

.blue > span {
    background-color: #00CCFF;
    background-image: -moz-linear-gradient(top, #00CCFF, #0099FF);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #00CCFF), color-stop(1, #0099FF));
    background-image: -webkit-linear-gradient(#00CCFF, #0099FF);
}

.nostripes > span > span, .nostripes > span:after {
    -webkit-animation: none;
    background-image: none;
}

#database-form {
    position: relative;
}

.form-progress {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .5);
    z-index: 1;
    display: none;
}

.form-progress.active {
    display: block;
}

.form-progress .meter {
    top: calc(100% - 30px);
}

.form-progress .loading-animation {
    position: absolute;
    top: calc(50% - 64px);
    left: 0;
    width: 100%;
    text-align: center;
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

.lds-ellipsis div {
    position: absolute;
    top: 27px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-roller {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 32px 32px;
}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #888888;
    margin: -3px 0 0 -3px;
}

.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
    top: 50px;
    left: 50px;
}

.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 54px;
    left: 45px;
}

.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 57px;
    left: 39px;
}

.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 58px;
    left: 32px;
}

.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 57px;
    left: 25px;
}

.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 54px;
    left: 19px;
}

.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 50px;
    left: 14px;
}

.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 45px;
    left: 10px;
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#notify-container {
    position: fixed;
    left: 0;
    bottom: 0;
    padding: 20px;
}

#notify-container .notify-pop {
    position: relative;
    padding: 10px 20px 10px 10px;
    background-color: #000000;
    color: #FFFFFF;
    margin: 4px 0;
    border-radius: 0px;
    font-weight: normal;
}

#notify-container .notify-pop.success {
    background-color: #2ECC71;
}

#notify-container .notify-pop.info {
    background-color: #009999;
}

#notify-container .notify-pop.warning {
    background-color: #FF9900;
}

#notify-container .notify-pop.danger {
    background-color: #E74C3C;
}

#notify-container .notify-pop .close-button {
    position: absolute;
    top: 4px;
    right: 4px;
    margin: 0;
    padding: 0;
    border: none;
    background-color: transparent;
    font-size: 10px;
    pointer-events: all;
}

.loading-animation > .percent {
    position: relative;
    top: -55px;
}