@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,900);

body,
html {
    font-family: 'Roboto', sans-serif !important;
}

#sidebar {
    float: left;
    height: 100vh;
    z-index: 1;
    width: 5%;
}

#myKanban {
    margin-top: 10px;
}

#myKanban .kanban-board .kanban-title-board {
    color: rgb(255, 255, 255) !important;
}

#main-content {
    margin-left: 5%;
    height: 89vh;
    overflow-x: auto;
    overflow-y: hidden;
}

.kanban-board {
    height: 80vh;
    border-radius: 10px 10px 0px 0px;
    display: flex;
    flex-direction: column;
}

.kanban-drag {
    overflow-y: auto;
    flex: 1;
}

.kanban-board-header {
    text-align: center;
    background: rgb(150, 18, 18);
    border-radius: 10px 10px 0px 0px;
}

.kanban-item {
    border-radius: 5px;
    cursor: grab !important;
}

.btn-nova-atividade {
    margin-top: 15px;
    margin-left: 15px;
    background: rgb(150, 18, 18);
    color: white;
    width: auto;
    --bs-btn-hover-bg: #dc3545;
    --bs-btn-hover-color: #000000;
}

.btn-gerar-lead {
    margin-top: 15px;
    margin-left: 15px;
    background: rgb(0, 63, 114);
    color: white;
    width: auto;
    --bs-btn-hover-bg: #0093c0;
    --bs-btn-hover-color: #000000;
}

.text-span {
    background: rgb(150, 18, 18);
    border-radius: 50%;
    height: 52px;
    width: 52px;
    line-height: 50px;
    display: inline-block;
    text-align: center;
    margin-right: 6px;
    margin-left: 15px;
    font-size: 15px;
    color: white;
    cursor: pointer;
    font-weight: 500;
}

.item-title {
    font-size: larger;
    font-weight: 600;
    color: #0062d1;
    text-align: center;
    margin-bottom: 10px;
}

.item-title:hover {
    cursor: pointer;
    color: red;
}

.item-header {
    font-size: small;
    font-weight: 500;
}

.item-body {
    font-size: smaller;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.shadow-right {
    box-shadow: 2px 0 4px 0 rgba(33, 32, 64, .12);
}

.item.value {
    margin-top: 10px;
}

.ico-value {
    margin-right: 5px;
}