body {
    font-family: Arial, sans-serif;
    margin: 0;
    overflow: scroll;
    color: #212529;
}
div.user {
    width: 100%;
    padding: 15px 0;
    background: #5fb2ba;
}
div.user .add {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    height: 100%;
    z-index: 3;
}
div.user .add .content {
    width: 90%;
    margin: auto;
    padding-top: 20px;
}
div.user .add label {
    font-size: 18px;
    display: block;
}
div.user .add input {
    height: 30px;
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    margin-top: 10px;
    outline: none;
    font-size: 16px;
    color: gray;
    padding: 0 10px;
}
div.user .add button {
    height: 33px;
    background: #007bff;
    border: 0;
    color: #fff;
    border-radius: 5px;
    padding: 3px 30px;
}
div.user>.content {
    width: 90%;
    margin: auto;
    font-size: 14px;
    color: #fff;
}
span.edit-user {
    display: inline-block;
    float: right;
    font-size: 16px;
    cursor: pointer;
}
div.stats {
    display: block;
    height: 30px;
    margin: 10px auto;
    width: 90%;
    text-align: center;
}
div.stats .current {
    background: #5fb2ba;
    padding: 10px;
    border-radius: 4px;
    float: left;
    display: inline-block;
    color: #fff;
    font-weight: bold;
}
div.all-words {
    background: #a5a5a5;
    padding: 10px;
    border-radius: 4px;
    float: right;
    display: inline-block;
    color: #fff;
    font-weight: bold;
}
div.today {
    background: #ababab;
    padding: 10px;
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
    display: inline-block;
}
div.today .fa-star {
    display: none;
}
div.today.achieved {
    background: #DABC56;
}
div.today.achieved .fa-star {
    display: inline;
}
.hidden {
    display: none;
}
div.progress {
    width: 100%;
}
div.progress .bar {
    width: 90%;
    background: #fff;
    height: 10px;
    margin: 20px auto;
    position: relative;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    text-align: center;
    font-size: 10px;
}
div.progress .bar .number {
    position: absolute;
    z-index: 2;
    color: #000;
    width: 100%;
    text-align: center;
    line-height: 10px;
}
div.progress .bar div.completed {
    position: absolute;
    left: 0;
    top: 0;
    background: orange;
    height: 10px;
    z-index: 1;
}
div.words {
    width: 100%;
}
div.word > div.title {
    background: #5fb2ba;
    padding: 30px;
}
div.word > div.title div.text {
    max-width: 500px;
    margin: auto;
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    font-weight: bold;
    color: #5fb2ba;
    position: relative;
    overflow: hidden;
}
div.learned {
    background: #5fb2ba;
    padding: 10px;
    border-radius: 4px;
    display: inline-block;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}
div.learned.blocked {
    background: #a5a5a5;
}
div.answer {
    color: #5fb2ba;
    border-bottom: 1px solid #5fb2ba;
    padding: 40px 20px;
}
div.answer.incorrect{
    background: #CD5C5CFF;
    color: #fff;
}
div.answer.correct{
    background: #64a286;
    color: #fff;
}
div.new-words-container {
    margin: 10px;
}
textarea.add-word{
    width: 100%;
    height: 400px;
    resize: none;
}
span.continued-days {
    float: right;
    margin-right: 20px;
}
