@keyframes running-pulse-effect
{
    0%
    {
        -webkit-box-shadow: 0 0 0 0 hsla(110, 43%, 28%, 0.4);
    }
    70%
    {
        -webkit-box-shadow: 0 0 0 10px hsla(110, 43%, 28%, 0);
    }
    100%
    {
        -webkit-box-shadow: 0 0 0 0 hsla(110, 43%, 28%, 0);
    }
}

@keyframes runningicon-pulse-effect
{
    0%
    {
        box-shadow: 0 0 0 0 hsla(255, 0%, 0%, 0.4);
    }
    70%
    {
        box-shadow: 0 0 0 20px hsla(255, 0%, 0%, 0);
    }
    100%
    {
        box-shadow: 0 0 0 0 hsla(255, 0%, 0%, 0);
    }
}
.item-file-explorer{
    width:100%;
    display:block;
    cursor:pointer;
    padding:0 5px;
    /*border-bottom:1px solid #eeeeee;*/
    font-size: 0.85rem !important;

}

.item-file-explorer.highlight > div
{
    -webkit-box-shadow: 0 0 0 1px hsl(0, 0%, 60%);
    box-shadow: 0 0 0 1px hsl(0, 0%, 60%);
}

.item-file-explorer > div {
    border-radius: 4px;
    padding: 5px;
    background-color: transparent;
    transition: all 300ms;
}


.item-file-explorer-running
{
    /*background-color: hsl(0, 100%, 38%);*/
    border-radius:40px;
    position:absolute;
    height: 1px;
    width: 1px;
    margin-top: -11px;
    margin-left: 6px;
    animation: runningicon-pulse-effect 1s infinite;
}


.item-file-explorer > div:hover{
    background-color: hsl(0, 0%, 97%);
}
.item-file-explorer.selected > div{
    background-color: hsl(0, 0%, 90%);
}
.item-file-explorer.selected:hover > div{
    background-color: hsl(0, 0%, 95%);
}
.item-file-explorer.hidden-details{
    transition: 500ms;
    border-bottom:none;
}

.item-file-explorer .details{

}

.item-file-explorer.hidden-details .details{
    display:none;
}

.item-file-explorer-col.hidden-details{
    align-self:center;
}

.item-file-explorer-col{
    align-self:start;
}

.item-file-explorer > div {
    border: solid 2px transparent;
}

/*.item-file-explorer.cut  > div {
    border: dashed 2px #000;
}*/

.item-file-explorer.cut > div{
    background-color:#eee;
    opacity:0.2;
}

.item-file-explorer.disabled > div{
    /*text-decoration:line-through;*/
    /*color:#990000;*/
    background-color: hsl(0, 60%, 98%);
}

/*
.item-file-explorer.disabled > div{
    background-color:rgba(255,0,0,0.3);
}

.item-file-explorer.disabled > div:hover{
    background-color:rgba(255,0,0,0.2);
}
.item-file-explorer.disabled.selected > div{
    background-color:rgba(255,0,0,0.6);
}
.item-file-explorer.disabled.selected:hover > div{
    background-color:rgba(255,0,0,0.4);
}*/

.item-file-explorer-bubble{
    /*background-color: #ffffff;
    border:1px solid #999;*/
    border-radius:10px;
    position:absolute;
    height:20px;
    width:20px;
    margin-top: -18px;
    margin-left: -4px;
}
/*
.item-file-explorer-bubble > i{
    margin: 3px 0 0 5px;
    padding: 0;
    font-size: 8px;
    position: absolute;
    color:#fff;
}
*/

@media (min-width: 576px) {
    .item-file-explorer.hidden-details{
        flex: 0 0 100%;
        max-width: 100%;
    }

}

@media (min-width: 768px) {
    .item-file-explorer.hidden-details{
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .item-file-explorer.hidden-details{
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }
}

@media (min-width: 1200px) {
    .item-file-explorer.hidden-details{
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (min-width: 1400px) {
    .item-file-explorer.hidden-details{
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media (min-width: 1800px) {
    .item-file-explorer.hidden-details{
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }
}
.list-group-item {
    position: relative;
    display: block;
    padding: 0;
    margin-bottom: 0;
    background-color: transparent;
    border: none;
}

.sortable-ghost{
    border: 1px dashed #999;
    padding-bottom:15px;
}
/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}


input + .slider.running {
    background-color: #dc3545;
}

input + .slider.running {
    box-shadow: 0 0 1px #dc3545;
}

input:checked + .slider.running {
    background-color: #28a745;
}

input:focus + .slider.running {
    box-shadow: 0 0 1px #28a745;
}



input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}
/*
.sequence_listing__item
{

}

.sequence_form_tasks_list__item_container.many
{
    border: 2px dotted hsl(0, 0%, 50%);
}

.sequence_form_tasks_list__item__many_actions
{
    display: none;
}

.sequence_form_tasks_list__item:hover
{
    background-color: hsl(0, 0%, 97%);
}

.sequence_form_tasks_list__item i.sequence_form_task_group_btn
{
    display: inline-block;
}

.sequence_form_tasks_list__item i.sequence_form_task_ungroup_btn
{
    display: none;
}

.sequence_form_tasks_list__item_container.many > .sequence_form_tasks_list__item i
{
    display: none;
}

.sequence_form_tasks_list__item_container.many > .sequence_form_tasks_list__item__many_actions
{
    display: flex;
}*/
/*@tailwind base;*/
/*@tailwind components;*/
/*@tailwind utilities;*/

.box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); }

/*.fa-play { color:green;}

.fa-lock {color:red;}

.fa-file-code{
    color:red;
}

.fa-fa-stopwatch{
    color:red;
}

.fa-check { color:green;}

.fa-times {color:red;}*/

html,body,main{
    height:100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}
/*
.card-body,.card-footer{
    overflow:hidden;
}
.card.hidden-details .card-body,.card.hidden-details .card-footer{
    display:none;
}

.card.hidden-details .card-header{
    height:100%;
}

.card.selected .card-header{
    height:auto;
    background-color:#bbb;
}

.card.cut .card-header{
    opacity:0.8;
}
*/


.pointer{
    cursor:pointer;
}
