/* -------------------- TEMPORARY ------------------- */

.chart {
    border: 1px solid orange;
    border-radius: 4px;
    color: orange;
    font-size: 150px;
    padding: 10px;
    margin: 10px;
    background: white;
}

.debugger {
    position: fixed;
    top: 85%;
    left: 0px;
    width: 100%;
    background: yellow;
    z-index: 1000;
    transform: translateY(-50%);
    text-align: center;
}

.debugger .tab {
    padding: 5px;
    display: inline-block;
}

.debugger .tab.active {
    background: black;
    color: white;
}

.notification-bar {
    text-align: left;
    background: cornflowerblue;
    padding: 5px 20px;
    color: white;
    width: 100%;
    z-index: 200;
    position: fixed;
}

.intro-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.intro-text {
    width: 100%;
    padding: 10px;
    font-size: 7.5vw;
    font-family: "Sigmar One";
    color: white;
    -webkit-text-stroke: 1px black;
    text-shadow: 0px 3px 10px grey;
}

.intro-indices {
    position: fixed;
    width: 100%;
    color: white;
    text-shadow: 0px 0px 2px black;
    bottom: 20px;
    z-index: 100;
}

.intro-indices i {
    margin: 3px;
}

.header-replica {
    position: absolute;
    top: 20%;
    left: 50%;
    width: 70%;
    margin: auto;
    background: cornflowerblue;
    color: white;
    padding: 10px;
    transform: translateX(-50%);
    border: 1px solid white;
    border-radius: 4px;
}












.mood-map {
    padding: 10px;
}

.table-type5 {
    width: 100%;
    border-collapse: collapse;
}

.table-type5 .q {
    padding: 10px;
    border-radius: 4px;
}

.mood-map .q1 {
    background: crimson;
}

.mood-map .q2 {
    background: gold;
}

.mood-map .q3 {
    background: cornflowerblue;
}

.mood-map .q4 {
    background: lightgreen;
}

.mood-map .q1-2 {
    background: linear-gradient(to right, crimson, gold);
}

.mood-map .q1-3 {
    background: linear-gradient(crimson, cornflowerblue);
}

.mood-map .q3-4 {
    background: linear-gradient(to right, cornflowerblue, lightgreen);
}

.mood-map .q2-4 {
    background: linear-gradient(gold, lightgreen);
}

.mood-map .q1-2-3-4 {
    background: linear-gradient(to right, crimson, gold);
    position: relative;
}

.mood-map .q1-2-3-4:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(to right, cornflowerblue, lightgreen);
    -webkit-mask: linear-gradient(#0000, #000);
}

.mood-map td.active:before {
    position: relative;;
}

.table-type5 .active {
    background: white;
    color: black;
}

.table-type5 td {
    position: relative;
}

.table-type5 .handle {
    background: transparent;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    z-index: 10;
}

.table-type5 .handle.active {
    background: white;
    border: 1px solid black;
}

.table-type5 .space.vert {
    width: 1px;
}

.table-type5 .skip-row td {
    height: 1px;
}

.table-type5 .label-cont {
    padding: 10px;
}

.mood-map .label-cont.vert .label {
    transform: rotate(180deg);
    writing-mode: vertical-lr;
    display: inline-block;
}

.table-type5 .tic-row {
    height: 20px;
}

.mood-map td {
    position: relative;
}

.mood-map .q {
    color: transparent;
}

.table-type6  {
    width: 100%;
}

.table-type6 td.q {
    padding: 10px;
    font-size: 15px;
}

.table-type6 td.active {
    background: #555;
    color: white;
}

.table-type6 .tic,
.table-type6 .label {
    color: #555;
}

.mood-map .table-type6 {
    padding-right: 20px;
}













/* --------------------------------------------------- */


body {
    background: #EEE;
    margin: 0px;
    font-family: "Museo Slab 300";
    color: black;
    font-size: 12px;
}

div,
input,
textarea {
    box-sizing: border-box;
}

textarea {
    resize: none;
    width: 100%;
    padding: 10px;
    margin: 10px 0px;
    border: 1px solid cornflowerblue;
    border-radius: 2px;
    font-size: 15px;
    font-family: "Museo Slab 300";
}

input[type=text] {
    width: 100%;
    padding: 10px;
    margin: 10px 0px;
    border: 1px solid cornflowerblue;
    border-radius: 2px;
    font-size: 15px;
    font-family: "Museo Slab 300";
}

input[type=text]:focus {
    border: 1px solid transparent;
}

input[type=text].off {
    background: #EEE;
    color: cornflowerblue;
    border: 1px solid black;
}

input.display {
    text-align: center;
    background: cornflowerblue;
    color: white;
    border: 1px solid #DDD;
}

.xy-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main {
    text-align: center;
    position: relative;
    height: 100vh;
}

#screens {
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

.screen {
    display: inline-block;
    width: 100%;
    padding: 60px 0px 150px;
    position: absolute;
    left: 100%;
    top: 0%;
    min-height: 100%;
}

.splash {
    background: white;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.splash .xy-center {
    width: 100%;
}

.splash .presents {
    color: #3F7DBA;
    width: 100%;
    padding: 20px 0px;
    font-size: 10px;
}

.splash .rep {
    font-family: Sansarah Regular;
    font-size: 20px;
    display: inline-block;
}

.splash .presents img {
    width: 25px;
}

.splash .logo img {
    width: 75%;
}

.swipe .swipe-dir {
    position: fixed;
    background: rgba(33, 150, 243, 0.15);
    border-radius: 50%;
    top: 50%;
    font-size: 25px;
    color: rgba(33, 150, 243, 0.5);
    width: 75px;
    height: 75px;
}

.swipe .swipe-left {
    left: 0px;
    transform: translate(-50%, -50%);
}

.swipe .swipe-right {
    right: 0px;
    transform: translate(50%, -50%);
}

.arrow {
    position: absolute;
    top: 50%;
}

.swipe-left .arrow {
    right: 10%;
    transform: translate(-50%, -50%);
}

.swipe-right .arrow {
    left: 10%;
    transform: translate(50%, -50%);
}

.table-type1 {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.table-type2 {
    width: 100%;
    table-layout: fixed;
}

.table-type4 {
    width: 100%;
    border-collapse: collapse;
}

.shadow-card {
    box-shadow: 0px 4px 6px rgba(0,0,0,0.30);
}

.font-xs {
    font-size: 8px;
}

.font-sm {
    font-size: 12px;
}

.font-md {
    font-size: 15px;
}

.font-lg {
    font-size: 20px;
}

.header {
    background: cornflowerblue;
    color: white;
    padding: 15px;
    position: fixed;
    width: 100vw;
    top: 0px;
    z-index: 100;
    box-shadow: 0px 3px 10px 0px rgba(0,0,0,0.25);
}

.btn-cont {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.btn-cont .btn {
    padding: 7px 10px;
    margin: 0px 5px;
}

.btn-cont.left {
    left: 0px;
}

.btn-cont.right {
    right: 0px;
}

.navigation {
    /* background: #DDD; */
    background: white;
    position: fixed;
    bottom: 0px;
    width: 100vw;
    box-shadow: 0px -3px 10px 0px rgba(0,0,0,0.25);
}

.navigation td {
    position: relative;
}

.navigation .btn {
    padding: 15px 0px;
}

.navigation .btn.active {
    /* background: crimson; */
    /* color: white; */
    color: crimson;
}

.navigation .btn.xactive {
    /* background: lightcoral; */
    /* color: white; */
    color: lightcoral;
}

.navigation .btn .text {
    display: inline-block;
    padding: 4px 0px 0px 5px;
    vertical-align: top;
}

.add {
    width: 100%;
}

.journal-card {
    border: 1px solid cornflowerblue;
    padding: 15px;
    background: white;
    border-radius: 4px;
    margin: 2vw;
    width: 45vw;
    height: 30vw;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.journal-card .stripe {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 20px;
}

.journal-card .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 10px;
}

.quick.journal-card {
    border: 1px solid black;
    border-radius: 30px;
    background: black;
    position: relative;
}

.quick.journal-card .plus {
    position: absolute;
    top: 15px;
    right: 15px;
    color: crimson;
    font-weight: bold;
}

.quick.journal-card .text {
    color: white;
    width: 75%;
}

.blank.journal-card {
    background: transparent;
}

/* TODO
.popups .journal-card {
    padding: 15px;
    margin: 5px;
    width: 45%;
    height: 65px;
    text-align: center;
    font-size: 12px;
}

.popups .journal-card .stripe {
    height: 10px;
}

.popups .quick.journal-card {
    border-radius: 20px;
}

.popups .quick.journal-card .plus {
    top: 7px;
    right: 7px;
}
*/

.instr {
    padding: 10px;
    color: cornflowerblue;
}

.form-card {
    margin: 10px;
    padding: 10px;
    background: white;
    border: 1px solid cornflowerblue;
    border-radius: 4px;
}

.form-card .title{
    font-weight: bold;
    padding: 5px 0px;
}

.big-btn {
    font-size: 50px;
    display: inline-block;
    margin: 10px;
}

.big-btn.submit {
    color: #DDD;
}

.big-btn.submit.active {
    color: lightgreen;
}

.big-btn.finish {
    color: mediumpurple;
}

.collapse-outer {
    margin: 20px 0px;
}

.divider {
    border-top: 1px solid cornflowerblue;
    border-bottom: 1px solid cornflowerblue;
    color: cornflowerblue;
    background: white;
    position: relative;
    padding: 10px 0px;
}

.includeds {
    padding: 0px 10px;
}

.table-type3 {
    width: 100%;
    border-spacing: 0px 4px;
    text-align: left;
}

.table-type3 tr {
    border-radius: 4px;
}

.table-type3 .left {
    border-width: 1px 0px 1px 1px;
    border-radius: 4px 0px 0px 4px;
}

.table-type3 .right {
    border-width: 1px 1px 1px 0px;
    border-radius: 0px 4px 4px 0px;
}

.includeds tr {
    overflow: hidden;
}

.includeds td {
    border-style: solid;
    border-color: #555;
    padding: 10px;
}

.includeds .icon {
    border-width: 1px 0px 1px 1px;
    border-radius: 4px 0px 0px 4px;
    width: 10%;
}

.includeds .text {
    border-width: 1px 1px 1px 0px;
    border-radius: 0px 4px 4px 0px;
}

.includeds .discreet {
    background: crimson;
    color: white;
}

.includeds .goal {
    background: gold;
    color: #555;
}

.includeds .rating {
    background: lightgreen;
    color: #555;
}

.includeds .time {
    background: cornflowerblue;
    color: white;
}

.includeds .duration {
    background: orange;
    color: #555;
}

.includeds .count {
    background: mediumpurple;
    color: white;
}

.includeds .yesno {
    background: cadetblue;
    color: white;
}

.includeds .free {
    background: coral;
    color: white;
}

.community-journal .included-card {
    color: #555;
    font-style: italic;
}

.quick-menu .push .icon-btn {
    margin-top: 15px;
}

.icon-btn {
    padding: 10px;
    color: white;
    border-radius: 10px;
    display: inline-block;
}

.discreet-icon {
    color: crimson;
}

.goal-icon {
    color: gold;
}

.rating-icon {
    color: lightgreen;
}

.time-icon {
    color: cornflowerblue;
}

.duration-icon {
    color: orange;
}

.count-icon {
    color: mediumpurple;
}

.yesno-icon {
    color: cadetblue;
}

.free-icon {
    color: coral;
}

.discreet-icon-btn {
    background: crimson;
}

.goal-icon-btn {
    background: gold;
}

.rating-icon-btn {
    background: lightgreen;
}

.time-icon-btn {
    background: cornflowerblue;
}

.duration-icon-btn {
    background: orange;
}

.count-icon-btn {
    background: mediumpurple;
}

.yesno-icon-btn {
    background: cadetblue;
}

.free-icon-btn {
    background: coral;
}

.sample-form-cards {
    padding: 15px 0px;
}

.sample-form-card {
    margin: 15px 10px;
    background: white;
    border: 1px solid cornflowerblue;
    border-radius: 4px;
}

.sample-form-card.discreet {
    border: 1px solid crimson;
}

.sample-form-card.goal {
    border: 1px solid gold;
}

.sample-form-card.rating {
    border: 1px solid lightgreen;
}

.sample-form-card.duration {
    border: 1px solid orange;
}

.sample-form-card.count {
    border: 1px solid mediumpurple;
}

.sample-form-card.yesno {
    border: 1px solid cadetblue;
}

.sample-form-card.free {
    border: 1px solid coral;
}

.sample-form-card .selector {
    text-align: right;
    position: relative;
    padding: 15px;
}

.sample-form-card.discreet .selector {
    background: crimson;
    color: white;
}

.sample-form-card.goal .selector {
    background: gold;
    color: #555;
}

.sample-form-card.rating .selector {
    background: lightgreen;
    color: #555;
}

.sample-form-card.time .selector {
    background: cornflowerblue;
    color: white;
}

.sample-form-card.duration .selector {
    background: orange;
    color: #555;
}

.sample-form-card.count .selector {
    background: mediumpurple;
    color: white;
}

.sample-form-card.yesno .selector {
    background: cadetblue;
    color: white;
}

.sample-form-card.free .selector {
    background: coral;
    color: white;
}

.sample-form-card .title {
    font-weight: bold;
    padding: 5px 0px;
}

.sample-form-card .content {
    padding: 5px;
}

.sample-form-card .discreet-answer {
    border: 1px solid cornflowerblue;
    border-radius: 2px;
    padding: 5px;
    margin: 5px;
}

.sample-form-card textarea {
    width: 70%;
    font-size: 12px;
}

.form-card .discreet-answer {
    border: 1px solid cornflowerblue;
    border-radius: 2px;
    padding: 15px;
    margin: 10px 5px;
}

.big-btn.success {
    color: lightgreen;
}

.big-btn.failure {
    color: crimson;
}

.form-card .rating-elem {
    display: inline-block;
    border: 2px solid black;
    border-radius: 50%;
    width: 15vw;
    height: 15vw;
    margin: 10px 0px;
    font-weight: bold;
    position: relative;
}

.sample-form-card .rating-elem {
    display: inline-block;
    border: 2px solid black;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: 10px 3px;
    font-weight: bold;
    position: relative;
}

.rating-elem.r1 {
    background: lightcoral;
}

.rating-elem.r2 {
    background: orange;
}

.rating-elem.r3 {
    background: gold;
}

.rating-elem.r4 {
    background: yellow;
}

.rating-elem.r5 {
    background: lightgreen;
}

.table-type2 .hour {
    background: #EEE;
}

.table-type2 td {
    border: 1px solid black;
    border-radius: 4px;
    padding: 10px;
}

.incrementer {
    padding: 15px 0px;
}

.incrementer input[type=text] {
    text-align: center;
    display: inline-block;
    width: 30%;
    vertical-align: top;
    margin: 0px 0px;
    border-radius: 0px;
    height: 40px;
    background: white;
}

.duration-entry .incrementer input[type=text] {
    border: 1px solid orange;
    color: orange;
}

.count-entry .incrementer input[type=text] {
    border: 1px solid mediumpurple;
    color: mediumpurple;
}

.incrementer .increment {
    font-size: 20px;
    display: inline-block;
    color: white;
    width: 40px;
    height: 40px;
    position: relative;
}

.duration-entry .incrementer .increment {
    background: orange;
}

.count-entry .incrementer .increment {
    background: mediumpurple;
}

.incrementer .decrease {
    border-radius: 50% 0% 0% 50%;
}

.incrementer .increase {
    border-radius: 0% 50% 50% 0%;
}

.incrementer2 .increment {
    padding: 10px;
    font-weight: bold;
}

.duration-entry .incrementer2 .increment {
    background: orange;
    color: white;
}

.count-entry .incrementer2 .increment {
    background: mediumpurple;
    color: white;
}

.incrementer2 .increment {
    padding: 10px;
    background: mediumpurple;
    color: white;
    font-weight: bold;
}

.incrementer2 .decrease {
    border-radius: 20px 0 0 20px;
}

.incrementer2 .increase {
    border-radius: 0 20px 20px 0;
}

.discreet-form input[type=text] {
    margin: 3px 0px;
}

td.rating-direction {
    padding: 10px 0px;
    color: cornflowerblue;
    border: 1px solid cornflowerblue;
}

td.rating-direction.active {
    color: white;
    background: cornflowerblue;
}

.beginning-btn {
    display: inline-block;
    border-radius: 30px;
    margin: 20px;
    padding: 15px;
    width: 75vw;
}

.beginning-btn.bb1 {
    background: orange;
    color: white;
}

.beginning-btn.bb2 {
    background: cornflowerblue;
    color: white;
}

.beginning-btn.bb3 {
    background: crimson;
    color: white;
}

.beginning-btn.bb4 {
    background: lightgreen;
    color: white;
}

.beginning-btn .icon {
    font-size: 100px;
}

.popup .blur {
    position: absolute;
    top: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    width: 100%;
    z-index: 200;
}

.popup .content {
    position: absolute;
    top: 100%;
    height: 70%;
    overflow-y: scroll;
    background: white;
    width: 100%;
    box-shadow: 0px -5px 6px rgba(0,0,0,0.30);
    z-index: 210;
    text-align: left;
    padding: 0px 0px 100px 0px;
    border-radius: 5px 5px 0px 0px;
}

.popup.prompt-popup .content {
    padding: 10px 10px 100px 10px;
    text-align: center;
}

.popup .chapter {
    border-bottom: 1px dashed cornflowerblue;
    padding: 10px 0px;
}

.delete-journal {
    color: crimson;
    margin: 30px 0px;
}

.option {
    text-align: left;
    padding: 10px;
}

.option .checkbox {
    margin-right: 10px;
}

.option .checkbox.checked {
    color: cornflowerblue;
}

.keypad .key {
    padding: 15px 30px;
    color: white;
    border-radius: 10px;
    display: inline-block;
    background: black;
}

.keypad.small .key {
    padding: 3px 20px;
}

.keypad .key.special {
    background: crimson;
}

table.keypad {
    width: 75%;
    margin: auto;
}

.rotate-down {
    -o-transform: rotate(1deg);
    -ms-transform: rotate(1deg);
    -moz-transform: rotate(1deg);
    -webkit-transform: rotate(1deg);
    transform: rotate(1deg);
    transition: 0.5s;
}

.rotate-up {
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    transition: 0.5s;
}

.calendar {
    margin: 10px;
    border: 1px solid mediumpurple;
    background: white;
    border-radius: 4px;
}

.calendar .table-header {
    background: mediumpurple;
    color: white;
    position: relative;
}

.calendar table {
    padding: 5px;
}

.calendar .month {
    padding: 10px;
}

table .space {
    border: none;
}

table .even td {
    background: #EEE;
}

.table-type2 .active,
.table-type2 .hour.active,
.table-type2 .even td.active,
.table-type2 .odd td.active {
    background: cornflowerblue;
    color: white;
}

.edit-mode.active {
    color: black;
    background: crimson;
    border: 1px solid black;
}

.entry-card {
    border: 1px solid cornflowerblue;
    border-radius: 4px;
    padding: 10px;
    margin: 10px;
    background: white;
    text-align: left;
}

.entry-card .date {
    color: #555;
}

.entry-card .source {
    font-weight: bold;
}

.entry-card .mood {
    padding-right: 10px;
    font-size: 35px;
    width: 15%;
}

.divider2 {
    margin: 10px 0px;
    border-top: 1px dashed cornflowerblue;
    color: cornflowerblue;
}

.push-right {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
}

.entry-card .highlights ul {
    margin: 0px;
}

.entry-card img {
    width: 100%;
}

.view-entry .image-cont {
    width: 100%;
    padding: 10px;
}

.view-entry .image {
    border-radius: 4px;
}

.view-entry .image img {
    width: 100%;
    border-radius: 4px;
}

.view-entry .note {
    border: 1px solid black;
    border-radius: 4px;
    background: antiquewhite;
    margin: 10px;
    padding: 10px;
}

.view-entry .note .text {
    text-align: left;
    margin-top: 10px;
    font-style: italic;
}

.end-of-feed {
    margin-top: 30px;
    color: cornflowerblue;
}

.journal-filter-card {
    border: 1px solid black;
    border-radius: 4px;
    margin: 5px 0px;
    padding: 10px;
    text-align: left;
}

.goal-entry .goal-answer {
    display: inline-block;
    font-size: 75px;
    margin: 10px;
}

.view-entry .goal-answer {
    display: inline-block;
    font-size: 20px;
    /* make this font-lg later */
}

.goal-answer.success {
    color: lightgreen;
}

.goal-answer.failure {
    color: crimson;
}

table .column {
    font-weight: bold;
    border: none;
}

.table-title {
    padding: 10px;
    font-weight: bold;
}

.add-image {
    color: cornflowerblue;
    font-size: 125px;
    margin-top: 10px;
}

.trendnote td {
    color: cornflowerblue;
    padding: 5px;
    text-align: right;
}

.entry-details {
    padding: 0px 10px;
}

.entry-detail-card {
    overflow: hidden;
    background: white;
    border-radius: 4px;
}

.entry-detail-card td {
    vertical-align: top;
    border-style: solid;
    border-color: #555;
    padding: 10px;
    vertical-align: middle;
}

.entry-detail-card .icon {
    border-width: 1px 0px 1px 1px;
    border-radius: 4px 0px 0px 4px;
    position: relative;
    padding: 10px 15px;
}

.entry-detail-card .icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.entry-detail-card .title {
    border-width: 1px 0px;
    font-weight: bold;
}

.entry-detail-card.discreet-card .icon {
    background: crimson;
    color: white;
}

.entry-detail-card.goal-card .icon {
    background: gold;
    color: #555;
}

.entry-detail-card.rating-card .icon {
    background: lightgreen;
    color: #555;
}

.entry-detail-card.time-card .icon {
    background: cornflowerblue;
    color: white;
}

.entry-detail-card.duration-card .icon {
    background: orange;
    color: #555;
}

.entry-detail-card.count-card .icon {
    background: mediumpurple;
    color: white;
}

.entry-detail-card.yesno-card .icon {
    background: cadetblue;
    color: white;
}

.entry-detail-card.free-card .icon {
    background: coral;
    color: white;
}

.entry-detail-card.edc2 .submission {
    margin-top: 10px;
}

.entry-detail-card.unanswered,
.entry-detail-card.unanswered .icon,
.entry-detail-card.unanswered .title {
    background: #EEE;
    color: #AAA;
    font-style: italic;
    font-weight: normal;
}

.entry-detail-card.unanswered td {
    border-style: dashed;
    border-color: #AAA;
}

.popup-btns {
    margin-bottom: 10px;
    font-size: 40px;
}

.popup-btns .icon {
    display: inline-block;
    margin: 0px 10px;
}

.filter-menu .filter {
    display: inline-block;
    position: relative;
    margin: 10px;
    padding: 10px;
    width: 50px;
    height: 50px;
    border-radius: 20px;
    font-size: 30px;
    color: orange;
}

.filter-menu .filter.active {
    background: orange;
    color: white;
}

.filter-menu .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.journal-card2 {
    position: relative;
    border: 1px solid cornflowerblue;
    background: white;
    padding: 15px;
    border-radius: 4px;
    margin: 2vw;
    width: 45vw;
    height: 25vw;
    display: inline-block;
}

.journal-card2 .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.prompt-selection {
    padding: 0px 10px;
}

tr.prompt-card {
    background: white;
}

tr.prompt-card.journal-itself {
    background: yellow;
}

.prompt-card td {
    border-style: solid;
    border-color: cornflowerblue;
}

.prompt-card .icon {
    border-width: 1px 0px 1px 1px;
    border-radius: 4px 0px 0px 4px;
    position: relative;
    padding: 10px 15px;
}

.prompt-card .text {
    border-width: 1px 1px 1px 0px;
    border-radius: 0px 4px 4px 0px;
    padding: 15px;
}

.back {
    text-align: left;
}

.graph {
    font-size: 200px;
    color: orange;
    margin: 20px 0px;
}

.results .title {
    border: 2px solid black;
    border-radius: 5px;
    padding: 5px;
    margin: 10px;
}

.legend table {
    padding: 0px 10px;    
}

tr.legend-card {
    background: white;
}

.legend-card td {
    border-style: solid;
    border-color: cornflowerblue;
    padding: 15px 10px;
}

.legend-card .icon {
    border-width: 1px 0px 1px 1px;
    border-radius: 4px 0px 0px 4px;
    position: relative;
    padding: 10px 15px;
}

.legend-card .title {
    border-width: 1px 0px;
}

.legend-card .sort {
    border-width: 1px 1px 1px 0px;
    border-radius: 0px 4px 4px 0px;
    position: relative;
}

.chapter2 {
    padding: 10px;
    color: cornflowerblue;
    position: relative;
    text-align: left;
}

.cross-cont {
    margin-bottom: 15px;
}

.sub-chapter {
    color: orange;
    padding: 3px 0px;
}

.legend-card .parent {
    font-style: italic;
}

.legend-card .child {
    border-top: 1px dashed cornflowerblue;
    padding-top: 5px;
    margin-top: 5px;
}

.drag-open {
    border: 2px dashed orange;
    border-radius: 2px;
    margin: 10px;
    padding: 20px 0px;
    color: orange;
}

.prompts .prompt-elem {
    border: 1px solid black;
    border-radius: 2px;
    padding: 10px;
    text-align: left;
}

.prompts .prompt-elem.active {
    background: orange;
}

.prompts .parent {
    margin: 5px 0px;
}

.prompts .child {
    margin: 5px 0px 5px 50px;
}

.entry-detail-options {
    text-align: right;
    color: cornflowerblue;
}

.entry-detail-options .option {
    display: inline-block;
    border: 1px solid cornflowerblue;
    border-radius: 4px;
    padding: 10px;
    margin: 5px;
}

.detail-trends .title {
    border-radius: 4px;
    padding: 10px;
    margin: 0px 10px;
    background: cornflowerblue;
    color: white;
}

.yesno-answer {
    display: inline-block;
    border: 2px solid black;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: 10px;
    font-weight: bold;
    position: relative;
}

.yesno-answer .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.yesno-entry .yesno-answer {
    font-size: 30px;
    margin: 10px;
    width: 80px;
    height: 80px;
}

.popup-header {
    padding: 20px 10px;
    border-bottom: 1px solid #BBB;
    position: relative;
}

.popup-header .text {
    display: inline-block;
    color: #BBB;
}

.popup-header .icon {
    font-size: 40px;
}

.popup-row {
    border-bottom: 1px solid #BBB;
    padding: 10px;
    position: relative;
}

.popup-row .left,
.popup-row .right {
    width: 10%;
    padding: 10px;
    vertical-align: top;
}

.add-popup .edit .icon,
.entries-popup .edit .icon,
.edit-journal-popup .edit .icon, 
.save-popup .edit .icon,
.finished-entry-popup .edit .icon {
    color: gold;
}

.add-popup .create .icon {
    color: cornflowerblue;
}

.add-popup .samples .icon {
    color: crimson;
}

.add-popup .community .icon,
.edit-journal-popup .community .icon {
    color: mediumpurple;
}

.popup-row.FBJ .icon {
    color: gold;
}

.popup-row.FBD .icon {
    color: cornflowerblue;
}

.popup-row.FBK .icon {
    color: lightgreen;
}

.popup-row.FBT .icon {
    color: orange;
}

.popup-row.FBB .icon {
    color: coral;
}

.popup-row.empty .icon {
    color: cornflowerblue;
}

.popup-row.delete .icon {
    color: crimson;
}

.popup-row .row-text {
    padding: 10px;
}

.popups .disable .icon {
    color: cornflowerblue;
}

.popups .drawer.pad1 {
    padding: 0px 0px 10px 0px;
}

.popups .drawer.pad2 {
    padding: 0px 10px;
}

.popups .drawer.pad3 {
    padding: 0px 10px 10px;
}

.blur .big-btn {
    position: absolute;
    left: 50%;
    top: 15%;
    transform: translate(-50%, -50%);
    margin: 0px;
}

.highlight .title {
    font-weight: bold;
}

.highlight .submission {
    text-align: right;
}

.extras-menu {
    margin: 0px 10px;
}

.view-entry .more-entry-options {
    display: inline-block;
    color: #555;
    padding: 10px;
}

.view-entry .bookmark {
    display: inline-block;
    color: #555;
    padding: 10px;
}

.TAL {
    text-align: left;
}

.TAC {
    text-align: center;
}

.TAR {
    text-align: right;
}

.empty .drawer .text,
.create .drawer .text {
    color: cornflowerblue;
}

.delete .drawer .text {
    color: crimson;
}

.disable .drawer .text {
    color: cornflowerblue;
}

.edit-journal-popup .community .drawer .text,
.add-popup .community .drawer .text {
    color: mediumpurple;
}

.confirm-btn {
    color: white;
    padding: 10px 30px;
    display: inline-block;
    border-radius: 4px;
    margin: 10px;
}

.empty .confirm-btn,
.create .confirm-btn {
    background: cornflowerblue;
}

.delete .confirm-btn {
    background: crimson;
}

.disable .confirm-btn {
    background: cornflowerblue;
}

.community .confirm-btn {
    background: mediumpurple;
}

.template .confirm-btn {
    background: lightcoral;
}

.toggle {
    color: #BBB;
}

.toggle.active {
    color: lightgreen;
}

.quick-counter .date-separator {
    border-bottom: 1px solid #BBB;
}

.quick-counter .date {
    display: inline-block;
    background: cornflowerblue;
    color: white;
    border-radius: 20px;
    padding: 5px 20px;
    margin: 10px auto;
}

.quick-counter .moment {
    text-align: left;
    color: #BBB;
    border-bottom: 1px solid #BBB;
    padding: 10px;
    background: white;
}

.quick-counter .total {
    font-weight: bold;
}

.drawer .table-type3 td {
    border-style: solid;
    background: white;
}

.drawer .table-type3 .left {
    color: crimson;
}

.drawer .table-type3 .right {
    width: 100%;
}

.time-entry .half-table {
    display: inline-block;
    width: 49%;
    margin-bottom: 10px;
}

.popups .color-swatch {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: inline-block;
    margin: 10px;
    position: relative;
}

.popup-journal-card .stripe {
    position: relative;
}

.popup-journal-card .badge {
    color: black;
}

.popup-journal-card .sub {
    font-style: italic;
    color: #BBB;
    text-align: right;
}

.loader {
    font-size: 30px;
    color: #CCC;
    width: 100%;
    padding: 10px;
}

.splash .loader {
    position: absolute;
    bottom: 10px;
}

.first-time {
    color: #AAA;
    width: 100%;
    padding: 10px;
}

.communities {
    padding: 0px 10px;
}

.communities .table-type3 {
    border-spacing: 0px 10px;
}

.community-journal-card {
    background: white;
}

.community-journal-card td {
    border-style: solid;
}

.community-journal-card .left {
    width: 10%;
    position: relative;
}

.community-journal-card .right {
    padding: 10px;
}

.community-journal-card .sub {
    font-style: italic;
    color: #BBB;
    margin-bottom: 5px;
}

.community-journal .table-type3 {
    border-spacing: 0px 4px;
}

.use-btn {
    background: #555;
    border: 1px dashed lightgreen;
    border-radius: 10px;
    padding: 10px 0px;
    margin: 10px;
    color: white;
}

.use-btn .left {
    vertical-align: top;
    width: 100%;
    text-align: left;
    border-right: 1px dashed lightgreen;
    padding: 0px 20px;
}

.use-btn .right {
    padding: 0px 20px;
}

.use-btn .author {
    font-style: italic;
    margin-bottom: 10px;
    color: lightgreen;
}

.use-btn .download {
    font-size: 60px;
}

.loom-alert .curtain {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    z-index: 950; /* just in case */
}

.loom-alert .alert {
    background: white;
    padding: 20px;
    border: 5px solid cornflowerblue;
    border-radius: 4px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.30), inset 0px 0px 7px rgba(0,0,0,0.7);
}

.loom-alert .icon {
    font-size: 30px;
    color: crimson;
    padding: 5px;
}

.loom-alert .text {
    padding: 5px;
}

.loom-alert .btn {
    border: 1px solid cornflowerblue;
    color: white;
    padding: 10px;
    margin: 5px;
    border-radius: 4px;
}

.loom-alert .btn.ok {
    background: cornflowerblue;
    color: white;
}

.loom-alert .btn.cancel {
    background: white;
    color: cornflowerblue;
}

.edit-journal .quick-menu.new-user td .text {
    padding-top: 5px;
}

.divider3 {
    color: cornflowerblue;
    margin-top: 10px;
}

.sleeve {
    background: #EEE;
    border-top: 1px solid black;
    border-radius: 67px;
    padding: 30px 10px;
}

.labelled-text-input {
    position: relative;
    margin-top: 2px;
}

.labelled-text-input .field {
    /* font-family: "courier"; */
    border: 1px solid #bbb;
    background: white;
}

.labelled-text-input .field::placeholder {
    color: #bbb;
}

.labelled-text-input .field:focus,
.labelled-text-input.full .field:focus {
    border: 1px solid transparent;
}

.labelled-text-input.full .field {
    color: cornflowerblue;
    border: 1px solid cornflowerblue;
}

.labelled-text-input .field-instr {
    position: absolute;
    right: 20px;
    background: white;
    padding: 0px 7px;
    color: #bbb;
}

.labelled-text-input.single-line .field-instr {
    top: -1px;
}

.labelled-text-input.multi-line .field-instr {
    top: 6px;
}

.labelled-text-input.full .field-instr {
    color: cornflowerblue;
}

.labelled-text-input .field-instr.focused {
    color: #E59700;
}



















