:root {
    --green: #61bd4f;
    --red: #eb5a46;
    --sky: #00c2e0;
    --blue: #0079bf;
    --orange: #ff9f1a;
    --yellow: #f2d600;
}

.green{background-color:#61bd4f!important;}
.red{background-color:#eb5a46!important;}
.sky{background-color:#00c2e0!important;}
.blue{background-color:#0079bf!important;}
.orange{background-color:#ff9f1a!important;}
.yellow{background-color:#f2d600!important;}

#board {
    width: 100%;
    height: 100%;
    background: #0079bf;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

#board {
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    position: relative;
}

.boardPresentation {
    height: 60px;
}

.boardPresentation > .name {
    background: #ffffff3d;
    display: inline-block;
    padding: 8px;
    margin-top: 8px;
    margin-left: 8px;
    font-size: 18px;
    font-weight: 700;
    color: white;
    border-radius: 8px;
}

.boardPresentation > .name > .selector {
    text-transform: capitalize;
}

#board .scroll {
    height: calc(100% - 60px);
    padding: 8px 0;
    width: auto;
    position: absolute;
    white-space: nowrap;
}

.listContainer {
    height: 100%;
    width: 272px;
    display: inline-block;
    vertical-align: top;
}

#board .list {
    overflow-x: hidden;
    overflow-y: auto;

    vertical-align: top;
    margin: 0 4px;

    background: #ebecf0;
    border-radius: 4px;
    padding: 10px;

    max-height: 100%;

    position: relative;

    line-break: auto;
    white-space: initial;
}

#board .list:first-child {
    margin-left: 8px;
}

#board .list > .title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

#board .list > .cardCount {
    position: absolute;
    top: 8px;
    right: 8px;
    color: white;
    background: gray;
    border-radius: 10px;
    text-align: center;
    padding: 4px 8px;
}

#board .list > .content > .card {
    background: white;
    border-radius: 3px;
    padding: 10px;
    margin-bottom: 8px;
    box-shadow: 0 1px 0 #091e4240;

    font-size: 14px;
    font-weight: 400;
}

.card > .title {

}

.card > .labels {
    margin-top: 8px;
}

.card > .labels > .label {
    display: inline-block;
    padding: 0 8px;
    color: white;
    margin-right: 8px;
    margin-bottom: 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}

.card > .progress {
    min-height: 10px;
    width: 100%;
    background: #e5e5e5;
    border-radius: 4px;
    position: relative;
    text-align: center;
}

.card > .progress > .progressAdvancement {
    background: #00c2e0;
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
}

.card > .progress > span.label {
    position: relative;
    color: white;
    font-size: 12px;
    font-weight: 700;
}

.card > .due {
    margin-top: 8px;
    display: inline-block;
    padding: 4px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 4px;
    border: 1px solid gray;
}

.card > .due.late {
    background: #eb5a46;
    color: white;
    border: none;
}

.card > .due.soon {
    background: #f2d600;
    color: white;
    border: none;
}

.card > .due.completed {
    background: #61bd4f;
    color: white;
    border: none;
}

.cuttedText {
    overflow: hidden;
    white-space: nowrap; /* Don't forget this one */
    text-overflow: ellipsis;
}
