/**Colors**/

:root {
    --primary: #08C53A;
    --secondary: #1562EA;
    --tertiary: #045FAD;
    --quternary: #DE0D0D;
    --quinary: #F5F5F5;
    --sixth: #cecece;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
}
a.disabled {
    pointer-events: none;
    color: #99abb4 !important;
}

/*
Buttons and Brand Colors
*/
/* Background Color */
.brand-bg {
    background-color: var(--primary) !important;
    background-image: linear-gradient(-90deg, #1663ea, #0bc539);
}
.brand-text {
    color: var(--primary) !important;
}
.topbar.brand-bg {
    
}

.color-bordered-table.primary-bordered-table thead th {
    background-color: var(--primary) !important;
    color: #ffffff;
}
.color-bordered-table.primary-bordered-table {
    border: 2px solid var(--primary);
}

/* Button primary */
.btn-primary,
.btn-primary:visited {
    background-color: var(--primary);
}

.bg-primary {
    background-color: var(--primary);
}
.text-primary {
    color: var(--primary);
}

/* Background and colors */
.bg-primary{
    background-color: var(--primary)!important;
}
.bg-secondary {
    background-color: var(--secondary)!important;
}
.text-primary{
    color: var(--primary)!important;
}
.text-secondary {
    color: var(--secondary)!important;
}
.rounded {
    border-radius: 1rem!important;
}

.bg-quinary {
    background-color: var(--quinary)!important;
}

.color-table.primary-table thead th {
    background-color: var(--secondary);
}
.color-table.primary-table thead th:first-child {
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}
.color-table.primary-table thead th:last-child {
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}
/* Background and colors */

/* Buttons */
.btn  {
    border-radius: 0.5rem;
}
.btn-primary, .btn-primary:visited {
    background-color: var(--primary)!important;
    border-color: var(--primary)!important;
    color: #fff;
}
.btn-secondary, .btn-secondary:visited {
    background-color: var(--secondary)!important;
    border-color: var(--secondary)!important;
    color: #fff;
}

.btn-rounded {
    border-radius: 25px;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.bg-image {
    background-size: cover;
    background-repeat: no-repeat;
}
/* Buttons */

.select2-container--default .select2-selection--single {
    border-radius: 0.5rem;
}

/* IMAGES */
/* Max sizes */
.img-h-75 {
    height: 75px;
}
/* IMAGES */

/* Product images */
#imagesContainer {
    
}
#imagesContainer > label > div {
    text-align: center;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #fff;
    transition: ease-in-out .3s all;
    cursor: grab;
}
#imagesContainer > label > div:hover {
    background: #ecf0f5;
    border-color: #ecf0f5;
}
#imagesContainer > label > div:active {
    cursor: grabbing;
    box-shadow: 0 30px 60px -12px rgba(50,50,93,.2), 0 -10px 60px -12px rgba(50,50,93,.1), 0 18px 36px -18px rgba(0,0,0,.2), 0 -12px 36px -8px rgba(0,0,0,.02);
    box-shadow: 0px 25px 25px 0px rgba(0,0,0,0.35);
}

/* HEADER */
header .navbar-header {
    overflow: hidden;
}
.sidebar-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 59px;
}
.sidebar-nav ul li a {
    white-space: break-spaces;
}
/* HEADER */

/* Dropzone */
.mdropzone {
    display: table;
    border: 2px dashed #b568ef;
    height: 90px;
    width: 100%;
    border-radius: 8px;
    background-color: #e8dcef;
    position: relative;
}
.mdropzone:after {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    content: "Da click o arrastra hasta aquí las imágenes";
    color: #b568ef;
}
.mdropzone button {
    display: block;
    border: 5px dashed #d7dee8;
    border-radius: 8px;
    background: #ecf0f5;
    width: 100%;
    padding: 35px;
    color: #bdcadb;
    font-size: 20px;
    transition: ease-in-out .3s all;
}
.mdropzone button.dragenter {
    border-color: #00a65a;
    background: #a7e1c7;
}
.mdropzone button.dragenter {
    color: #00a65a;
}
.mdropzone-list .media-upload-item,
.mdropzone .media-upload-item {
    display: block;
    padding: 8px;
    background: #f5f5f5;
    border: 1px solid #fefefe;
    margin-top: 5px;
    border-radius: 8px;
} 
.mdropzone-list .media-upload-item > img,
.mdropzone .media-upload-item > img {
    
}
.mdropzone-list .media-upload-item > .details,
.mdropzone .media-upload-item > .details {
    
}
.mdropzone-list .media-upload-item > .details > span.name,
.mdropzone .media-upload-item > .details > span.name {
    
}
.mdropzone-list .media-upload-item > .details > span.prog,
.mdropzone .media-upload-item > .details > span.prog {
    
}
.mdropzone-list .media-upload-item > .details > .prog-bar,
.mdropzone .media-upload-item > .details > .prog-bar {
    display: block;
    height: 5px;
    width: 100%;
    background: #f5f5f5;
}
.mdropzone-list .media-upload-item > .details > .prog-bar > .prog-bar-inner,
.mdropzone .media-upload-item > .details > .prog-bar > .prog-bar-inner {
    display: block;
    height: 5px;
    width: 0%;
    background: #00c0ef;
}
.mdropzone .dz-preview {
    
}
.mdropzone .dz-preview > .dz-image {
    
}
.mdropzone .dz-preview > .dz-details {
    
}
.mdropzone .dz-preview > .dz-details > .dz-size {
    
}
.mdropzone .dz-preview > .dz-details > .dz-filename {
    
}
.mdropzone .dz-preview > .dz-progress {
    
}
.mdropzone .dz-preview > .dz-progress > .dz-upload  {
    
}
.mdropzone .dz-preview > .dz-error-message {
    display: none;
}
.mdropzone .dz-preview > .dz-success-mark {
    display: none;
}
.mdropzone .dz-preview > .dz-error-mark {
    display: none;
}

/* MyToolTip */
.mytooltip,
.mytooltip1,
.mytooltip2,
.mytooltip3 {
    z-index: 10;
}
/* MyToolTip */

/* Calendar */
.calendar-activity-event {
    background: none;
    color: #67757c !important;
}
.fc .fc-toolbar {
    padding-top: 0 !important;
}
.dashboard .fc .fc-toolbar {
    display: block;
}
.fc .fc-toolbar.fc-header-toolbar {
    margin-bottom: 0 !important;
}
.calendar-activity-event {
    padding: 0 5px !important;
}
.gantt-container .popup-wrapper {
    background: none !important;
    box-shadow: 1px 1px 2px rgb(0 0 0, .1);
}
.gantt-container .popup-wrapper .bg-white {
    width: 250px !important;
}
.gantt-container .popup-wrapper .pointer {
    margin: 0 0 0 -3px !important;
    border-top-color: #fff !important;
}
.gantt .bar-progress {
    fill: rgb(76, 209, 55, 1) !important;
}
.gantt .bar-wrapper.active .bar-progress {
    fill: rgb(76, 209, 55, .8) !important;
}
/* Calendar */

.card {
    border-radius: 0.75rem !important;
}

/* Assistance */
.check {
    border-radius: 8px;
    padding: 8px 10px;
    margin-bottom: 10px;
    transition: ease-in-out .3s all;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(3, 94, 171, 0);
}
.check:last-child {
    box-shadow: none;
    margin-bottom: 0px;
}
.check:active,
.check:focus,
.check:hover,
.check.checked {
    box-shadow: 0 3px 5px rgba(3, 94, 171, .28);
    margin-top: -2px;
    margin-bottom: 12px;
}
.check2:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
}

/* Order View */
#tabsInfoPacket .nav-link {
    color: var(--dark);
}
#tabsInfoPacket .nav-link.active {
    background: none;
    border-bottom: 3px solid var(--secondary);
    border-radius: 0;
}
#tabsContentPacket .switch label .lever,
.switch.photo-delete label .lever {
    margin-left: 0;
}
/* Order View */


/* Order New */
.order-products-add {
    list-style: none;
    padding: 0;
    height: 300px;
    overflow: hidden;
    overflow-y: auto;
}
.order-products-add > li {
    margin: 0;
    cursor: pointer;
    padding: 5px;
    border-bottom: 1px solid #ddd;
    border-radius: .25rem;
    transition: ease-in-out .3s all;
}
.order-products-add > li:last-child {
    border-bottom: 0;
}
.order-products-add > li:hover {
    background: #f5f5f5;
}
.order-products-add > li p:first-child {
    font-size: 15px;
    margin-bottom: 5px;
    line-height: 100%;
}
.order-products-add > li p:last-child(2) {
    font-size: 13px;
    margin-bottom: 0px;
    line-height: 100%;
}
#inScheduleTomorrow + label {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0 !important;
} 
#step-4 .service {
    background-color: var(--primary);
    color: #fff;
    text-align: center;
    border-radius: 0.5rem;
    padding: 0.75rem 0;
}
/* Order New */

/* Order view */
.ribbon-service {
    clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 8% 50%, 0% 0%);
    color: #fff;
    padding: 0.2rem 1rem 0.2rem 1.9rem;
    text-align: center;
}
/* Order view */

.w-60 {
    width: 60%;
}

/* Header & Topbar */
.topbar .navbar-header {
    /*background-color: var(--secondary) !important;*/
}
/* Header & Topbar */

/* Customer Cart */
.customer-card {
    position: relative;
    border-color: #d7dfe3;
    border-width: 1px;
    border-style: solid;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
    background: #fff;
    -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
    transition: ease-in-out .3s all;
}
.customer-card:hover {
    -webkit-box-shadow: 0px 5px 20px #035eab57;
    box-shadow: 0px 5px 20px #035eab57;
}
.customer-card > .ribbon {
    font-size: 12px;
    top: 10px;
}
.customer-card > .ribbon-right {
    border-radius: 4px 0 0 4px;
}
.customer-card > h4 {
    color: #222;
    font-size: 15px;
    font-weight: bold;
}
.customer-card > h5 {
    color: #222;
    font-size: 14px;
    font-weight: normal;
}
.customer-card > p.act {
    font-size: 12px;
    margin-bottom: 0px;
}
.customer-card .btn-txt {
    display: inline-block;
    padding: 7px 12px;
    font-size: 14px;
    vertical-align: middle;
    line-height: 28px;
}
.customer-card .btn {
    font-size: 18px;
}
/* Customer Cart */

/* Funnel */
.funnel {
    overflow-x: auto;
}
.funnel .header {
    
}
.funnel .header > .head {
    position: relative;
    width: 280px;
    min-width: 280px;
    max-width: 280px;
    display: table-cell;
    height: 44px;
    padding: 5px 10px;
    padding-left: 25px;
    vertical-align: middle;
    background-color: #fff;
    border: 1px solid #d7dfe2;
    border-left: none;
}
.funnel .header > .head::after {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    z-index: 1;
    border-style: solid;
    border-color: transparent #ffffff;
    border-width: 22px 0 22px 20px;
    top: 50%;
    right: -20px;
    margin-top: -22px;
}
.funnel .header > .head::before {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    z-index: 1;
    border-style: solid;
    border-color: transparent #d7dfe2;
    border-width: 22px 0 22px 20px;
    top: 50%;
    right: -22px;
    margin-top: -22px;
}
.funnel .header > .head:first-child {
    border-radius: 8px 0 0 8px;
    border: 1px solid #d7dfe2;
}
.funnel .header > .head:last-child {
    border-radius: 0 8px 8px 0;
}
.funnel .header > .head:last-child::after,
.funnel .header > .head:last-child::before {
    border: none;
}
.funnel .header > .head > .circle-status {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}
.funnel .header > .head > .name {
    display: inline-block;
    vertical-align: middle;
    font-size: 20px;
    line-height: 20px;
}

.funnel > .funnel-col {
    display: table-cell;
    width: 280px;
    min-width: 280px;
    max-width: 280px;
    vertical-align: top;
    padding: 10px 0;
    padding-right: 10px;
}
.funnel > .funnel-col:last-child {
    padding-right: 0;
}
.funnel .funnel-container {
    min-height: 200px;
}
.funnel > .funnel-col .customer-card {
    cursor: pointer;
}
.funnel > .funnel-col .customer-card:active {
    cursor: move;
}
.funnel > .funnel-col .customer-card.ghost {
    background-color: #f6f6f6;
    opacity: .5;
}
/* Funnel */

/* Funnel Edit */
#modalStatusEditor .status-preview {
    min-height: 35px;
    border-radius: 8px;
    background-color: #f6f6f6;
}
#modalStatusEditor .status-preview > span {
    font-size: 18px;
    padding: 5px 10px;
    display: block;
}

.status-list {
    list-style: none;
    margin: 10px 0;
    padding: 0;
}
.status-list > li {
    margin: 0;
    padding: 5px 10px;
    border: 1px solid #d7dfe3;
    border-bottom: none;
    background: #fff;
}
.status-list > li:last-child {
    border-bottom: 1px solid #d7dfe3;
}
.status-list > li.ghost {
    background: #f6f6f6;
    opacity: .6;
}
.status-list > li span {
    display: inline-block;
    vertical-align: middle;
    padding: 7px 12px;
}
.status-list > li span > span {
    padding: 0 10px;
    font-size: .9rem;
}
.status-list > li .circle-status {
    border-radius: 50%;
    width: 20px;
    height: 20px;
    padding: 0;
}
/* Funnel Edit */

/* Activity Cart */
.activity-card {
    position: relative;
    border-color: #d7dfe3;
    border-width: 1px;
    border-style: solid;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
    background: #fff;
    -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
    transition: ease-in-out .3s all;
}
.activity-card:hover {
    -webkit-box-shadow: 0px 5px 20px #035eab57;
    box-shadow: 0px 5px 20px #035eab57;
}
.activity-card > .ribbon {
    font-size: 12px;
    top: 10px;
}
.activity-card > .ribbon-right {
    border-radius: 4px 0 0 4px;
}
.activity-card > h4 {
    color: #222;
    font-size: 15px;
    font-weight: bold;
}
.activity-card > h5 {
    color: #222;
    font-size: 14px;
    font-weight: normal;
}
/* Activity Cart */


/* Tabs */
.vtabs {
    width: 100%;
    display: flex;
}
.vtabs .tab-content {
    width: calc(100% - 150px);
}

.card > .nav-tabs > .nav-item > .nav-link.active {
    background-color: transparent;
}

/* Rates */
#tabsRates .nav-item {
    width: 15%;
}
#tabsRates .bg-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 30px;
    width: 30px;
}
#tabsRates .tab-title {
    display: flex;
    justify-content: center;
    align-items: center;
}
#tabsRates .nav-link {
    box-shadow: 0px 1px 10px -5px rgb(0 0 0 / 50%);
}
/* Rates */

@media only screen and (max-width: 992px) {
    .vtabs {
        width: 100%;
        display: block;
    }
    .vtabs .tabs-vertical {
        width: auto;
        border-right: 0px;
        border-bottom: 1px solid rgba(120, 130, 140, 0.13);
        display: block;
        vertical-align: bottom;
    }
    .vtabs .tabs-vertical .nav-item {
        display: inline-block;
    }
    .vtabs .tabs-vertical .nav-link {
        border-radius: 4px 4px 0 0 !important;
        margin-bottom: 0 !important;
        margin-right: 10px;
    }
    .vtabs .tab-content {
        width: calc(100% - 0px);
    }
}
.clearfix { clear: both; }
/* Tabs */

/* Comments */
.comment-text .text-container {
    max-height: none;
    font-size: .9rem;
}
.comment-footer .pull-right {
    font-size: .8rem;
}
.comment-media {
    padding: 5px;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #f6f6f6;
    display: inline-block;
}
/* Comments */

/* Tables */
.table {
    font-size: 0.95rem;
}
/* Tables */

/* Hover */
.hover-buttons {
    
}
.hover-buttons .btn {
    opacity: 0;
    transition: ease-in-out .3s all;
}
.hover-buttons:hover .btn {
    opacity: 1;
}
@media only screen and (max-width: 790px) {
    .hover-buttons .btn {
        opacity: 1;
    }
}
/* Hover */

/* Fullscreen */
.fullscreen {
    position: relative;
    transition: ease-in-out .3s all;
}
.fullscreen .CodeMirror {
    transition: ease-in-out .3s all;
}
.fullscreen.active {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 100;
}
.fullscreen.active .CodeMirror {
    height: 100%;
}
.fullscreen .btn-group {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 101;
    opacity: .5;
    transition: ease-in-out .3s all;
}
.fullscreen .btn-group:hover {
    opacity: 1;
}
.fullscreen .btnToggleFullscreen i:after {
    font-family: "Font Awesome 5 Free";
    content: "\f065";
}
.fullscreen.active .btnToggleFullscreen i:after {
    font-family: "Font Awesome 5 Free";
    content: "\f066";
}
/* Fullscreen */
#carriersList {
    left: 30px;
    top: 20px;
    position: absolute;
}
#ordersList {
    right: 30px;
    top: 20px;
    position: absolute;
}

.content-list ul > li {
    cursor: pointer;
    width: 100%;
}
.content-list .tab-content ul {
    max-height: 300px;
    overflow-y: auto;
}
#carriersList > div > button,
#ordersList > div > button {
    border: none;
    background-color: #fff;
    border-radius: 1rem;
    min-width: 16rem;
    padding: 0.25rem 1.5rem;
}
#carriersList > div > button:focus,
#ordersList > div > button:focus {
    outline: none;
}

#carriersList .content-list,
#ordersList .content-list {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 16rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
}

#carriersList .content-list .nav-pills .nav-link.active, 
#carriersList .content-list .nav-pills .show >.nav-link,
#ordersList .content-list .nav-pills .nav-link.active, 
#ordersList .content-list .nav-pills .show >.nav-link {
    background-color: #51aae4;
}

.order .content-img {
    max-height: 350px;
    display: flex;
    width: 100%;
}
.order .content-img img {
    object-fit: cover;
}

.content-list .content-img {
    display: inline;
}
.content-list .content-img img{
    max-width: 30px;
}

/* Map */
.map-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f5f5f5;
}
.map-container > .map-view {
    width: 100%;
    height: 100%;
}
.map-container > .marker {
    position: absolute;
    height: 50px;
    width: 50px;
    top: calc(50% - 50px);
    left: calc(50% - 25px);
}
/* Map */

/* Overflow */
.text-lines[data-lines]:not(.opened) > div:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    transition: ease-in .3s all;
}
.text-lines[data-lines="1"]:not(.opened) > div:first-child {
    -webkit-line-clamp: 1;
}
.text-lines[data-lines="2"]:not(.opened) > div:first-child {
    -webkit-line-clamp: 2;
}
.text-lines[data-lines="3"]:not(.opened) > div:first-child {
    -webkit-line-clamp: 3;
}
.text-lines[data-lines="4"]:not(.opened) > div:first-child {
    -webkit-line-clamp: 4;
}
.text-lines[data-lines="5"]:not(.opened) > div:first-child {
    -webkit-line-clamp: 5;
}
.text-lines[data-lines] > small {
    display: none;
    cursor: pointer;
    color: var(--primary);
    cursor: pointer;
}
.text-lines[data-lines].can-collapse > small {
    display: block;
}
.text-lines[data-lines].can-collapse > small:before {
    display: inline-block;
    font: normal normal normal 24px/1 "Material Design Icons";
    content: "\f6cf";
    font-size: 80%;
    margin-right: 3px;
}
.text-lines[data-lines].can-collapse.opened > small:before {
    content: "\f6d0";
}
.text-lines[data-lines].opened {
    
}
/* Overflow */

/* Product categories */
.product-category {
    clear: both;
    border: 1px solid #f5f5f5;
    padding: 5px 10px;
    margin-bottom: 5px;
    transition: ease-in-out .3s all;
}
.product-category:hover {
    border-color: #ddd;
}
/* Product categories */

/* Gantt */
.gantt-item-success .bar-progress {
    fill: rgb(76, 209, 55, .8) !important;
}
.gantt-item-warning .bar-progress {
    fill: #ffb22b !important;
}
.gantt-item-danger .bar-progress {
    fill: #fc4b6c !important;
}
.gantt-item-info .bar-progress {
    fill: #1e88e5 !important;
}
/* Gantt */

/* Empty */
.empty-msg:empty:after {
    content: attr(data-empty);
    text-align: center;
    width: 100%;
    display: block;
    color: #99abb4 !important;
    font-style: italic;
}
/* Empty */

/* ToDo */
.todo {
    position: relative;
}
.todo .progress {
    
}
.todo .list {
    
}
.todo .counter {
    font-size: .8rem;
}

/* Group */
.todo .list .todo-group {
    counter-reset: todoListItems;
    margin-bottom: 1rem;
    border-radius: .5rem;
}
.todo .list .todo-group .title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: .4rem;
}
.todo .list .todo-group .title h3 {
    font-size: 1rem;
    margin-bottom: 0;
    border-bottom: 2px solid transparent;
}
.todo .list .todo-group .title h3:empty {
    display: none;
}
.todo .list .todo-group:last-child {
    margin-bottom: 0;
}
.todo .list .todo-group:hover .title h3{
    /*background-color: #fbfbfb;*/
    border-color: var(--primary);
}
.todo .list .todo-group > .title > .action {
    margin-left: 8px;
    display: none;
    opacity: 0;
    transition: ease-in .3s opacity;
}
.todo .list .todo-group > .title > .action .hidden {
    font-size: 80%;
}
.todo .list .todo-group > .title:hover > .action {
    display: flex;
    opacity: 1;
}
/* Group */

/* Item */
.todo .list .todo-item {
    position: relative;
    counter-increment: todoListItems;
    display: flex;
    border-radius: .5rem;
    margin-bottom: 0px;
    padding: 5px 8px 0px 8px;
    transition: ease-in-out .5s all;
    font-size: .9rem;
}
.todo .list .todo-item:hover {
    background: #f5f5f5;
}
.todo .list .add:before,
.todo .list .todo-item:before {
    content: counter(todoListItems) ".";
    width: 22px;
    margin-right: 3px;
}
.todo .list .todo-item:hover:before {
    color: var(--primary);
}
.todo .list .todo-item label {
    display: flex;
    flex-direction: row;
    align-items: flext-start;
    flex: 1;
    height: auto;
    font-size: .9rem;
}
.todo.hide-completed .list .todo-item:has(input[type=checkbox]:checked) {
    display: none;
}
/* Item */

/* Comment */
.todo .list .todo-item .comments {
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.todo .list .todo-item .comments > a,
.todo .list .todo-item .comments > a:visited {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #777;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    transition: ease .3s all;
}
.todo .list .todo-item .comments > a[data-total]:before {
    content: "\F36A";
    font: normal normal normal 24px/1 "Material Design Icons";
    font-size: .9rem;
    color: #777;
    transition: ease .3s all;
}
.todo .list .todo-item .comments > a[data-total='0']:before {
    content: "\F10BB";
}
.todo .list .todo-item .comments > a[data-total]:after {
    content: attr(data-total);
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    font-size: .65rem;
    border-radius: 50%;
    top: 0;
    right: 0;
    line-height: .65rem;
    height: .8rem;
    width: .8rem;
    transition: ease .3s all;
}
.todo .list .todo-item .comments > a[data-total='0']:after {
    display: none;
}
.todo .list .todo-item .comments > a:hover {
    color: #fff;
    background-color: var(--primary);
}
.todo .list .todo-item .comments > a:hover:before {
    color: #fff;
}
.todo .list .todo-item .comments > a:hover:after {
    color: var(--primary);
    background: #fff;
}

#vComments:empty + .row {
    display: none;
}
/* Comment */

/* Add */
.todo .list .add {
    position: relative;
    counter-increment: todoListItems;
    padding: 5px 8px 0px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.todo .list .add > form {
    display: flex;
    flex: 1;
}
/* Add */

/* Empty */
.todo .list .empty {
    border-radius: .5rem;
    border-color: #99abb4;
    color: #99abb4;
    display: none;
}
.todo .list .todo-group > .todo-group-items > .empty:first-child {
    display: block;
}
/* Empty */

/* Task */
.todo .list .todo-item .task {
    
}
/* Task */

/* Action */
.todo .list .todo-item .action {
    display: none;
    justify-content: flex-end;
}
.todo .list .todo-item:hover .action {
    display: flex;
}
.todo .list .todo-item .action a,
.todo .list .todo-item .action a:visited {
    display: flex;
    align-items: center;
    justify-content: center;
}
.todo .list .todo-item .action .hidden {
    font-size: 80%;
}
/* Action */

/* Members */
.todo .list .todo-item .members {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 10px;
}
.todo .list .todo-item .members .member {
    position: relative;
    margin-left: -8px;
    transition: ease-in-out .3s all;
}
.todo .list .todo-item .members .member:first-child,
.todo .list .todo-item .members:hover .member {
    margin-left: 0;
}
.todo .list .todo-item .members .member > img,
.todo .list .todo-item .members .member > span {
    height: 25px;
    width: 25px;
    border-radius: 50%;
}
.todo .list .todo-item .members .member > a,
.todo .list .todo-item .members .member > a:visited {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    background: var(--primary-transparent);
    opacity: 0;
    display: none;
    transition: ease-in .3s all;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
    line-height: 17px;
    transition: ease .3s all;
}
.todo .list .todo-item .members .member:hover > a {
    opacity: 1;
    display: flex;
}
.todo .list .todo-item .members > a,
.todo .list .todo-item .members > a:visited {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #777;
    height: 25px;
    width: 25px;
    border-radius: 50%;
}
.todo .list .todo-item .members > a:hover,
.todo .list .todo-item .members > a:focus,
.todo .list .todo-item .members > a:active {
    color: #fff;
    background-color: var(--primary);
}
/* Members */

#vTodoMembers {
    position: absolute;
    width: 200px;
    flex-direction: column;
    background: #fff;
    padding: .5rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    z-index: 99;
    border-radius: .5rem;
    opacity: 0;
    display: none;
    transition: ease-in-out .3s opacity;
}
#vTodoMembers.shown {
    opacity: 1;
    display: flex;
}
#vTodoMembers > a,
#vTodoMembers > a:visited {
    position: relative;
    display: flex;
    padding: .25rem .35rem;
    font-size: .9rem;
    flex-direction: row;
    align-items: center;
    border-radius: .33rem;
    transition: ease-in-out .3s all;
}
#vTodoMembers > a > img {
    margin-right: .2rem;
}
#vTodoMembers > a:hover {
    background-color: var(--primary);
    color: #fff !important;
}
/* ToDo */