@import 'https://fonts.googleapis.com/css?family=Open+Sans';
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.right {
    text-align: right;
}

.left {
    text-align: left;
}

html {
    height: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.75em;
    font-size: 16px;
    height: 100%;
    margin: 2px;
    background-color: black;
    color: white;
    max-width: 400px;
    position: relative;
}

button,
a {
    border-radius: 5px;
    border: 0px;
    padding: 15px 32px;
    background-color: #00235A;
    color: white;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    display: block;
    width: 100%;
    margin-bottom: 2px;
    line-height: 1em;
}

button:disabled {
    background: #dddddd;
}

a {
    font-size: 17px;
    font-weight: bold;
}

.hide {
    display: none;
}

.show {
    display: block;
}

textarea {
    border-radius: 5px;
    border: 2px solid #00235A;
    padding: 15px 32px;
    height: 50px;
    font-size: 18px;
    display: block;
    width: 100%;
    margin-bottom: 2px;
    line-height: 1em;
}

input {
    border-radius: 5px;
    border: 2px solid #00235A;
    padding: 15px 32px;
    height: 50px;
    font-size: 18px;
    display: block;
    width: 100%;
    margin-bottom: 2px;
    line-height: 1em;
}

button:active,
a:active {
    background-color: black;
    color: #FFC107;
    border: 0px;
}

.yellow {
    color: #FFC107;
}

.center {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #FFC107;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #FFC107 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

*:focus {
    outline: none;
}

.bottom-right {
    position: fixed;
    bottom: 10px;
    right: 10px;
}

.bottom-left {
    position: fixed;
    bottom: 10px;
    left: 10px;
}

.is-green {
    background-color: green;
}