html, body, .container-table {
    height: 100%;
    font-family: inherit;
    
    font-family: arial,sans-serif;
}
.container-table {
    display: table;
}
.vertical-centerer {
    display: table-cell;
    vertical-align: middle;
}

.horizontal-center {
    margin-left: auto;
    margin-right: auto;
    float: none;
}

body {
    background-color: #11a9e2;
    text-rendering: optimizeLegibility;
    text-shadow: 2px 2px slategrey;
    /*
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;    
    font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
    */
}

h1, h2, h3, h4 {
    color: white;
}

h1 {
  text-shadow: 0 1px 0 #ccc,
               0 2px 0 #c9c9c9,
               0 3px 0 #bbb,
               0 4px 0 #b9b9b9,
               0 5px 0 #aaa,
               0 6px 1px rgba(0,0,0,.1),
               0 0 5px rgba(0,0,0,.1),
               0 1px 3px rgba(0,0,0,.3),
               0 3px 5px rgba(0,0,0,.2),
               0 5px 10px rgba(0,0,0,.25),
               0 10px 10px rgba(0,0,0,.2),
               0 20px 20px rgba(0,0,0,.15);
}

.task-parent {

    display: none;
    /*
    transition: opacity 3s ease-in-out;
    */
}

.task-parent .row {
    display: flex;
}

.task-parent .row .panel {

    flex-grow: 1;
    flex-basis: 0;

    margin-left: 20px;
    margin-right: 20px;

    cursor: pointer;
    
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    background-position: center;
}

.task-parent .row .panel span {
    font-size: 4em;
    line-height: 2em;
    padding: 10%;
}

.task-parent .row .panel span.emoji {
    font-size: 25vmin;
    line-height: 1em;
    padding: 0;
}

.profile-panel-placeholder {

    background-color: gray;
    opacity: .85;
    border-radius: 12px;
    width: 100%;
    height: 30vh;
}

.task-parent .panel-default {
  box-shadow: 0 4px 10px 0 rgba(0,0,0,0.2), 0 4px 20px 0 rgba(0,0,0,0.19);
  /* border-radius: 2px; */
}

.sortable {
    list-style-type: none;
}

.sortable li {

    margin-bottom: 20px;
}

.profile-pic {

    background-size: 100%;
    height: 24vh;
    max-width: 80vh;
    /* min-height: 300px; */
    border-radius: 3px;
}

.ui-autocomplete, .comment-card {
    text-shadow: none;
}

.comment-card .panel-body {
    padding: 8px;
}

.task-parent span.glyphicon {
    font-size: .5em !important;
    line-height: .5em !important;
}

.ui-autocomplete {
    max-height: 50%;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
}

.ui-autocomplete-category {
  font-weight: bold;
  padding: .2em .4em;
  margin: .8em 0 .2em;
  line-height: 1.5;
}

.ui-autocomplete li:not(.ui-autocomplete-category) {
    padding-left: 1em;
}
