.root {
    box-shadow: 1px 1px 4px #ccc;
    display: inline-block;
    margin: 10px;
    width: 220px;
    margin: 5px;
    margin-top: 3px;
    margin-bottom: 3px;
    position: relative;
}

.rootClickable {
    cursor: pointer;
}

.draggable {
    cursor: pointer;
    background: #eff;
}

.highlightedNormal {
    background: #eff;
    /* box-shadow: 1px 1px 4px #666; */
}

.highlightedGood {
    background: #efe;
    /* box-shadow: 1px 1px 4px #666; */
}

.highlightedDrop {
    background: #efe;
    box-shadow: 1px 1px 4px #666;
}

.highlightedWarning {
    background: #fee;
    /* box-shadow: 1px 1px 4px #666; */
}

.highlightedHighlight {
    background: #74C2E1;
    /* box-shadow: 1px 1px 4px #666; */
}

.heading {
    display: flex;
    width: 100%;
    box-sizing: border-box;
}

.headingClickable {
    cursor: pointer;
}

.title {
    flex: 1;
    padding: 10px;
    box-sizing: border-box;
}

.titleCheckSpacing {
    margin-left: 22px;
}

.titleText {

}

.actions {
    box-sizing: border-box;
    padding: 10px;
}

.actions:hover {
    
}

.hr {
    margin-top: 0px;
    margin-bottom: 5px;
}

.contentWrapper {
    overflow: hidden;
    transition: height .2s ease-out;
}

.inactive {
    height: 0px;
}

.active {
    height: 150px;
}

.invisible {
    display:none;
}

.content {
    padding: 15px;
    padding-top: 2px;
}

.checkIcon {
    position: absolute;
    top: 10px;
    left: 5px;
}

.checkIconCircle {
    background-color: rgb(0,150,0,1);
    border-radius: 50%;
    padding-left: 4px;
    padding-right: 4px;
    padding-top: 2px;
    padding-bottom: 2px;
}

.checkIconCircleEmpty {
    background-color: rgb(255,255,255,0);
    border: 1px solid rgb(0,0,0,1);
    border-radius: 50%;
    padding-left: 4px;
    padding-right: 4px;
    padding-top: 0px;
    padding-bottom: 0px;
}

.iconStyles {

}

.noIcon {
    width: 11px;
    display: inline-block;
}