﻿h1, h2, h3, h4, h5, h6 {
}

body {
    padding-top: 40px;
    padding-bottom: 20px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    /*max-width: 280px;*/
}

.action-button {
    color: #ccc;
    cursor: pointer;
}

    .action-button:hover {
        color: #333;
        cursor: pointer;
    }

a.focus-button {
    color: #8a3232;
}

a.action-button i.material-icons {
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    font-style: italic;
    font-size: 0.85em;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    font-style: italic;
    font-size: 0.85em;
    opacity: 1;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    font-style: italic;
    font-size: 0.85em;
    opacity: 1;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    font-style: italic;
    font-size: 0.85em;
}

::-ms-input-placeholder { /* Microsoft Edge */
    font-style: italic;
    font-size: 0.85em;
}

::placeholder { /* Most modern browsers support this now. */
    font-style: italic;
    font-size: 0.85em;
}

.card-plans {
    border-left: 5px solid #32648a;
}

.card-focus {
    border-left: 5px solid #8a3232;
}

.card-backlog {
    border-left: 5px solid #999;
}

.card-repeat {
    border-left: 5px solid #999;
}

.timeframe-divider {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #999;
    font-size: 0.7em;
    font-weight: bold;
}

.additem-div {
    background-color: #eee;
    border: 1px solid #bbb;
}

.completed-item {
    opacity: 0.4;
}

.strike {
    text-decoration: line-through;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        text-shadow: 0 0 0 rgba(200, 0, 0, 0);
    }

    100% {
        transform: scale(1.15);
        text-shadow: 0 0 0.5em rgba(200, 0, 0, 0.6);
    }
}

.important-indicator {
    color: #d22;
    animation: pulse 1s ease-in-out infinite alternate;
}

    .important-indicator:hover {
        color: #f00;
    }

.next-indicator {
    color: #88d;
    animation: pulse 1s ease-in-out infinite alternate;
}

    .next-indicator:hover {
        color: #44f;
    }

.timeframe-link {
    text-decoration: none;
    color: inherit;
}

    .timeframe-link:hover {
        text-decoration: none;
        color: #333;
    }

a.item-link {
    color: inherit;
    text-decoration: none;
}

    a.item-link:hover {
        text-decoration: none;
        color: #555;
    }

.todo-url {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 14em;
}

span.todo-option {
    padding: 0 0.5em;
    border: 1px dotted #888;
    font-size: 0.65em;
    text-transform: uppercase;
}

.last-completed {
    font-size: 0.6em;
    font-style: italic;
    text-transform: capitalize;
}

.disabled {
    cursor: not-allowed !important;
    /*pointer-events: none !important;*/
}

.headerbar {
    background-color: #555;
    /*border-bottom: 1px solid #111;*/
    position: fixed; /* Set the navbar to fixed position */
    top: 0; /* Position the navbar at the top of the page */
    left: 0;
    width: 100%; /* Full width */
    z-index: 99999;
    font-size: 0.7em;
    text-align: center;
    padding: 0.5em;
    color: #fff;
    letter-spacing: 0.03em;
}

.tiny-text {
    font-size: 0.7em;
    opacity: 0.5;
}

.tiny {
    font-size: 0.7em;
}

.subtle {
    opacity: 0.5;
}

@keyframes colorfade {
    from {
        background: #ffff66;
    }

    to {
        background: transparent;
    }
}

.new-item {
    animation-name: colorfade;
    animation-duration: 20s;
}

.clear-btn {
    font-size: 0.6em;
    font-weight: normal;
    border: 0;
    background-color: #888;
}

a.is-private {
    color: #666;
}

#loadingModal {
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-ellipsis div {
        position: absolute;
        top: 33px;
        width: 13px;
        height: 13px;
        border-radius: 0%;
        background: #bbb;
        animation-timing-function: cubic-bezier(0, 1, 1, 0);
    }

        .lds-ellipsis div:nth-child(1) {
            left: 8px;
            animation: lds-ellipsis1 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(2) {
            left: 8px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(3) {
            left: 32px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(4) {
            left: 56px;
            animation: lds-ellipsis3 0.6s infinite;
        }

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}

.absolute-center {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.subtle-link {
    text-decoration: none;
    color: black;
    border-bottom: 1px dotted black;
}

    .subtle-link:hover {
        text-decoration: none;
        color: #999;
        border-bottom: 1px dotted #999;
    }

.parental-rating {
    text-transform: uppercase;
    border: 1px solid #999;
    color: #888;
    font-family: 'Times New Roman', Times, serif;
    font-size: 0.7em;
    font-weight: bold;
    display: inline-block;
    padding: 0px 3px;
    margin-left: 3px;
}

.no-store {
    background: repeating-linear-gradient(45deg, #f1f1f1, #f1f1f1 1px, #fff 2px, #fff 10px);
    font-weight: lighter;
}

.material-icons {
    vertical-align: middle !important;
}

a.tag {
    font-weight: normal;
    font-size: 0.7em;
}

th.rotated-text {
    height: 140px;
    white-space: nowrap;
    padding: 0 !important;
}

    th.rotated-text > div {
        transform: translate(13px, 0px) rotate(310deg);
        width: 30px;
    }

        th.rotated-text > div > span {
            padding: 5px 10px;
        }

a.material-icons {
    text-decoration: none;
}

    a.material-icons:hover {
        text-decoration: none;
    }

    a.badge {
        text-decoration: none;
    }

.bg-highlight {
    background-color: #ffffdd;
}

.subtask-icon {
    font-size: 1em;
}

.subtask-sortable-placeholder {
    height: 1.75em;
    line-height: 1.2em;
    border: 1px dotted #ccc;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    background-color: #eee;
}

.mztag-check, .mztag-check:focus {
    background-color: #eee !important;
    color: #111 !important;
}

    .mztag-check.active, .mztag-check.active:focus {
        background-color: #333 !important;
        color: #fff !important;
    }

.mztag-display {
    font-size: 0.75em;
    color: #777;
    /*background-color: #ddd;*/
    /*padding: 0 0.6em;*/
    /*border-radius: 0.25em;*/
    font-style: italic;
}

.mztag-display a {
    color: #777;
}

.mztag-display > .material-icons {
    font-size: 1.1em;
}

input.tdl-checkbox {
    transform: scale(1.25);
}

.iteration-text {
    font-size: 0.8em;
    background-color: #ddd;
    text-transform: capitalize;
    font-weight: normal;
}

.scale-14 {
    transform: scale(1.4);
}

.buy-li {
    padding: .33em .75em;   
    text-transform: capitalize;
}

.rotation-text {
    font-size: 0.85em;
    font-weight: 500;
    color: #777;
}

.display-7 {
    font-weight: 350;
    font-size: 1.5em;
}

.side-button {
    width: 30px;
    height: 120px;
    position: fixed;
    top: 45%;
    left: 100px;
    margin-top: -50px;
    margin-left: -100px;
    border-radius: 0px 10px 10px 0px;
    padding-left: 6px;
}

td {
    vertical-align: middle;
}

