body {
    /*background-color: #F6F8FB;*/
    /*background-color: #E3F2EB;*/
    background-color: white;
    font-family: 'Palatino';
    margin: 0px;
    padding: 0px;
}
button, input, select {
    font-family: inherit;
}

.task {
    display: inline-block;
}
.main-task {
    max-width: 825px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
}
.overdue {
    color: red;
}

.screen-centerer{
    display: flex;
    width: 100%;
    height: 100%;
    background-color: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tab-navigator {
    padding: 4px;
    background-color: #f1f1f1;
    min-height: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;    
    overflow: auto;       
}

.tab-navigator button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
            
    transition: 0.3s;
}

.tab-navigator button:hover {
    background-color: #ddd;
}

.tab-navigator button.active {
    background-color: #bbb;
}
            
.tabcontent {
    display: none;
}
    
.tablink {
    color: grey;
    height: 30px;
    width: 150px;
    text-align: center;
    font-size: 15px;
}
        
.tablink.active {
    color: black;
}

.tablink .tablink-child-display-name{
    margin: 10px;
    overflow-x: auto;
    overflow-y: hidden;
}

.kick-button {
    display: inline-block;
}

.deletion-button {
    display: inline-block;
}

.complete-button {
    border: none;
    color: white;
    background-color: #00B1CC;
    border: 1px solid #00B1CC;
}

.give-up-button {
    border: 1px solid red;
    color: red;
    background-color: inherit;
}

@media only screen and (max-width: 767px) {
    .complete-button-form, .give-up-button-form {
        margin: 0;
    }
    .complete-button, .give-up-button {
        margin-left: 10px;
        padding: 5px;
        border-radius: 5px;
    }
    .complete-button span, .give-up-button span{
        font-size: 18px; 
    }
}

.purchase-button {
    display: inline-block;
}

.all-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.add-task-btn {
    position: absolute;
    z-index: 9;
    padding: 0px 30px;
}
@media only screen and (min-width: 768px) {
    .add-task-btn {
        top: 0;
        left: 0;
    }
}

.add-task-btn button {

    background-color: white;
    color: #FF0000;
    border: none;
    
    box-shadow: 0px 0px 5px 1px grey;

    padding: 10px 15px;
    
    cursor: pointer;
    border-radius: 30px;
    overflow: hidden;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    position: relative;
    transition: ease 0.3s transform;
}

@media only screen and (max-width: 767px) {
    .all-header {
        position: static;
    }
    .add-task-btn {
        padding: 15px;
        bottom: 0;
        right: 0;
        position: fixed;
    }
    .add-task-btn button {
        padding: 10px;
    }
    .add-task-btn button {
        border-radius: 100%;
    }
    #new-task-text{
        display: none;
    }
    #cancel-task-text{
        display: none;
    }
    .add-task-btn button i {
        font-size: 35px !important;
    }
}

.add-task-btn .cancel-task-btn {
    display: none;
}

.add-task-btn button span {
    padding: 5px;
    font-size: 15px;
}

.add-task-btn button i {
    font-size: 25px;
}

.add-task-btn button:hover {
    transform: translateY(-2px);
}

.child-user-header {
    word-wrap: break-word;
    overflow: auto;
    width: 100%;
}

.task-dataset {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.task-data {
    padding: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
/*
.task-data .data-expanded {
    display: block;
}
.task-data .data-compressed {
    display: none;
}

@media only screen and (max-width: 767px) {*/
    .task-dataset {
        padding: 0px;
        flex-direction: row;
        margin-bottom: 10px;
        border: 1px solid black;
        border-left: none;
    }
    .task-data {
        border-left: 1px solid black;
    }
    .task-data .data-expanded {
        display: none;
    }
    .task-data .data-compressed {
        display: block;
    }
    
/*}*/

.ontime-select {
    padding: 3px;
    margin: 0px 3px;
    border: none;
    background-color: inherit;
    border-radius: 5px;
    font-size: 14px;
    width: auto;
}

.ontime-select:hover, .ontime-select:focus {
    background-color: rgb(234, 234, 234);
    outline: none;
}

.task-grid{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    margin: 10px;
    padding: 10px;
}

.child-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.child-info .child-family-name-info {
    font-size: 15px !important;
    color: grey;
    font-style: italic;
}

.child-info p {
    margin: 5px;
}

.child-info .starstreak-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.row {
    width: 75%;
    background-color: white;
    margin: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
}
@media only screen and (max-width: 767px) {
    .row {
        width: 95%;
    }
}

.row h3{
    display: block;
    text-align: center;
    margin: 0px;
}
.no-tasks-remaining {
    display: block;
    text-align: center;
    margin: 10px;
}
.row .streak-and-stars {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 5px;
    padding: 5px;
}

.row .today-task, .row .getahead-task, .row .noduedate-task, 
.row .all-task{
    display: flex;
    flex-direction: row;
}
@media only screen and (max-width: 767px) {
    .row .header {
        display: none;
    }
}


.row .today-task .today-task-col, .row .noduedate-task .noduedate-task-col
{
    width: 20%;
    margin: 1px;
    background-color: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    overflow: auto;
}

.row .getahead-task .getahead-task-col  {
    width: 20%;
    margin: 1px;
    background-color: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    overflow: auto;
}

.row .all-task .all-task-col, .row .all-task #task-btns {
    width: 20%;
    margin: 1px;
    background-color: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    overflow: auto;
}

.row .all-task #task-functions {
    overflow: visible !important;
}


.row #task-description {
    justify-content: flex-start;
    padding-left: 30px;
}

.row .today-task .today-task-col p, .row .today-task .today-task-col form ,
.row .getahead-task .getahead-task-col p, .row .getahead-task .getahead-task-col form,
.row .noduedate-task .noduedate-task-col p, .row .noduedate-task .noduedate-task-col form,
.row .all-task .all-task-col p, .row .all-task .all-task-col form
{
    margin: 16px 0; 
}

.task-dropbtn {
    color: black;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    background-color: inherit;
    
}

.task-dropbtn-compressed {
    color: black;
    padding: 3px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    background-color: inherit;
}

.dropbtn-icon {
    padding: 0px !important;
}

.material-icons {
    margin: 0 5px;
}

.task-compressed {
    display: none !important;
}
.repeat-task {
    color: grey;
    font-size: 20px !important;
}

@media only screen and (max-width: 767px) {
    .all-task {
        display: none !important;
    }
    .today-task {
        display: none !important;
    }
    .getahead-task {
        display: none !important;
    }
    .task-compressed {
        display: flex !important;
        flex-direction: row;
        justify-content: space-between;
        padding: 12px;
    }
    .task-info-compressed {
        display: flex;
        flex-direction: column;
        overflow: auto;
    }
    .task-info-compressed-upper, .task-info-compressed-lower {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: start;
        padding: 1px;
    }
    .task-info-compressed-upper {
        color: black;
        font-size: 16px;
        white-space: auto;
    }
    .task-info-compressed-lower{
        color: grey;
        font-size: 14px !important;
        white-space: nowrap;
    }
    .task-star-value-compressed{
        color: #00B1CC;
    }
    .task-dropdown-compressed {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    .task-actions-compressed {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
}
.compressed-dot-separator {
    margin: 0px 5px;
}

.task-display-handler{
    margin-left: auto;
}
.row .btn {
    padding: 10px 15px;
    cursor: pointer;
    width: 100%;
    margin-bottom: 0px;
    opacity: 1;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.row .btn:hover {
    transform: scale(1.1);
}

.star-icon, .star-icon-num, .star-icon-compressed{
    color: #00B1CC !important;
}
.star-icon-compressed {
    font-size: 16px !important;
    margin: 0;
}

.streak-icon-active, .streak-icon-active-num {
    color: #FF9100;
}

.streak-icon-deactive, .streak-icon-deactive-num {
    color: grey;
}

.streak-reset-message{
    color: red;
}

.screen-centerer-horizontal {
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: none;
}

.family-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    margin: 10px;
    padding: 10px;
}

.family-info p {
    margin: 0;
    padding: 5px;
}

.family-name {
    font-size: 20px;
}

.family-timezone {
    font-style: italic;
    font-size: 16px;
}

.family-row {
    width: 80%;
    margin: 10px;

    font-size: 16px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.family-col {
    background-color: inherit;
    color: black;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;

    box-shadow: 0px 0px 5px 1px grey;
    border-radius: 10px;
    padding: 10px;
}

@media only screen and (max-width: 767px) {
    .family-col {
        width: 70%;
    }
}

@media only screen and (max-width: 444px) {
    .family-col {
        width: 90%;
    }
}

.family-col-upper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.family-col-upper a {
    position: absolute;
    align-self: end;
}
.family-col-lower {
    width: 100%;
    padding-top: 5px;
    word-wrap: break-word;
}
.family-col-lower-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.family-identity-holder {
    width: 100%;
    text-align: center;
    margin: 3px;
}
.family-col-lower-add {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.family-title {
    font-size: 20px;
    font-weight: bolder;
    margin: 0;
    display: inline;
    color: #00B1CC;
}
.family-title-sub {
    font-style: italic;
    font-size: 14px;
    color: #2667FF;
}

.family-col a {
    text-decoration: none;

    /*border: 1px solid #00B1CC;*/
    
    /*color: #2667FF;*/
    background-color: #00B1CC;
    padding: 8.5px;
    border-radius: 50%;
    color: white;
    text-align: center;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;

    text-decoration: none;
    
    cursor: pointer;

    transition: transform 0.3s ease;
    
}

.family-col a:hover {
    transform: scale(1.2);
}

.tutorial-info {
    margin-bottom: 0 !important;
    text-align: center;
}
.reward-tab-word-ref {
    color: #FF9100;
}

.my-family-tab-word-ref {
    color: #00B1CC;
}

.contact-us, .contact-us-sub {
    margin: 0px;
    padding: 5px;
}
.contact-us {
    text-decoration: #00B1CC wavy overline;
    transition: ease 0.3s;
}
.contact-us:hover {
    transform: translateY(-3px);
}
.contact-us-sub {
    margin-bottom: 20px;
}
.contact-us-container{
    max-width: 90%;
}
.contact-us-container p {
    margin: 2px;
}
#feedback-word {
    text-decoration: #FF0000 underline;
}
.contact-email {
    background-color: #FF9100;
    color: white;
    font-weight: bolder;
}
.thank-you {
    text-decoration: #C767F4 dotted underline;
    transition: ease 0.3s;
}
.thank-you:hover {
    transform: translateY(3px);
}