.sdtdl-dialog-content, .sdtdl-front,.sdtdl-list .dashicons-sort {
    display: none;
}

.sdtdl-front.sdtdl-open{
    display: block;
}

.sdtdl-collapsed{
    height: 60px;
    width: 60px;
    color: #fff;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 50%;
    cursor: pointer;
    left: 10px;
    bottom: 10px;
    background: var(--sdtdl-color);
}
.sdtdl-collapsed.sdtdl-right{
    left:auto;
    right:10px;
}

.sdtdl-collapsed.sdtdl-open{
    display: none;
}

.sdtdl-collapsed .dashicons-editor-ul{
    font-size: 40px;
    height: 40px;
    width: 40px;
}

.sdtdl-counter{
    position: absolute;
    background: red;
    height: 18px;
    line-height: 18px;
    font-size: 14px;
    text-align: center;
    width: 18px;
    top: -5px;
    right: 0;
}
.sdtdl-right .sdtdl-counter{
    right:auto;
    left:0
}

.sdtdl-item-title {
    font-weight: bold;
}

.sdtdl-dialog {
    padding: 3px;
}

.sdtdl-dialog .ui-dialog-buttonset button {
    color: white;
    background: var(--sdtdl-color);
    border-radius: 5px;
    text-align: center;
    border: 2px solid var(--sdtdl-color);
    box-shadow: none;
}

.sdtdl-dialog .ui-dialog-buttonset button:hover {
    color: white;
    background: var(--sdtdl-color);
    box-shadow: 0 0 10px 0 var(--sdtdl-bg-color);
}

.sdtdl-dialog .ui-dialog-buttonset button:focus{
    border-color:black;
}

.sdtdl-added {
    font-style: italic
}

textarea.sdtdl-content-text {
    display: block;
    width: 100%;
}

.sdtdl-content-text {
    white-space: pre-line;
    font-size: 13px;
}

.sdtdl-content-text a:focus-visible{
    outline: 2px solid black;
    outline-offset: 2px;
}

#new-sdtdl-title.error::placeholder, #edit-sdtdl-title.error::placeholder {
    color: #e65054;
    opacity: 1
}

.sdtdl-front {
    position:fixed;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
    background-color: #fff;
    z-index: 100;
    width:300px;
    left:10px;
    bottom:10px;
    border:1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}
.sdtdl-front.sdtdl-right{
    left:auto;
    right:10px;
}
.sdtdl-list, .sdtdl-assigned-intro {
    padding: 0 10px;
    font-size: 13px;
}
.sdtdl-list {
    visibility: hidden;
}
.sdtdl-assigned-task-info{
    margin-top:20px;
    font-style:italic;
    font-size: 10px;
}
.sdtdl-assigned-task-info ul {
list-style: none;
}
.sdtdl-assignment-icons .dashicons-yes,.sdtdl-assigned-task-info .dashicons-yes{
    color:green;
}
.sdtdl-assignment-icons .dashicons-clock,.sdtdl-assigned-task-info .dashicons-clock{
    color:orange;
}
.sdtdl-assigned-task-complete,.sdtdl-self-complete{
    opacity: 0.5;
}
.sdtdl-list .sdtdl-self-complete .sdtdl-item-title{
    text-decoration: line-through;
    text-decoration-color: green;
    text-decoration-thickness: 3px;
}

.sdtdl-front h3{
    font-size: 20px;
    line-height: 30px;
    font-family: inherit;
    background-color: var(--sdtdl-color);
    display: flex;
    align-items: center;
    text-transform: uppercase;
    pointer-events: none;
    padding: 10px;
    color:#fff;
    margin-top: 0;
}

.sdtdl-front h3 .dashicons-arrow-down-alt2{
    cursor: pointer;
    margin-left: auto;
    pointer-events: auto;
}

.sdtdl-front h3:before{
    content: "\f203";
    font-family: dashicons;
    margin-right: 10px;
}

.sdtdl-list li {
    list-style: none;
    cursor: pointer;
    display: block;
    width: 100%;
    background: #fff;
    box-sizing: border-box;
    align-items: center;
    border-radius: 5px;
    padding: 10px 13px;
    margin-bottom: 11px;
    margin-left: 0;
    border: 1px solid #ccc;
    justify-content: space-between;
}

.sdtdl-dialog .ui-dialog-titlebar {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    background: var(--sdtdl-bg-color);
    border: 1px solid var(--sdtdl-color);
    position: relative;
}

.sdtdl-dialog .ui-dialog-titlebar-close {
    background: white;
    position: absolute;
    right: 0.3em;
    top: 50%;
    width: 20px;
    margin: -10px 0 0 0;
    padding: 1px;
    height: 20px;
    border-radius: 3px;
    border: 1px solid var(--sdtdl-color);
}

.sdtdl-dialog .ui-dialog-titlebar-close:hover, .sdtdl-dialog .ui-dialog-titlebar-close:focus {
    background: transparent;
    color: #000;
}

.sdtdl-dialog .ui-dialog-titlebar-close:active {
    background: var(--sdtdl-color);
    color: #000;
}

.sdtdl-dialog .ui-dialog-titlebar-close:before {
    position: absolute;
    margin-top: -10px;
    margin-left: -18px;
}

.sdtdl-dialog .ui-icon-closethick {
    width: 16px;
    height: 16px;
}

.sdtdl-dates {
    margin-top: 20px;
    font-size: 10px;
    font-style: italic;
    line-height: 20px;
}

.sdtdl-date-added, .sdtdl-date-edited{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.sdtdl-dates .dashicons {
    width: 14px;
    height: 14px;
    font-size: 14px;
    margin-right: 3px;
}

.sdtdl-view-item .sdtdl-content-text li{
    margin-left:16px;
}
.sdtdl-view-item .sdtdl-content-text ul,.sdtdl-view-item .sdtdl-content-text ol{
    white-space: normal;
    margin: 10px 0;
}
.sdtdl-nothing-to-see{
    margin: 10px;
}