/*$green: #008744;
$blue: #0057e7;
$red: #d62d20;
$yellow: #ffa700;
$white: #eee;

// scaling... any units
$width: 100px;*/

.showbox {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 5%;
}


.loader {
    position: relative;
    margin: 0 auto;
    width: 100px;
    &:before {
        content: '';
        display: block;
        padding-top: 100%;
    }
}

.circular {
    animation: rotate 2s linear infinite;
    height: 100%;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

@keyframes color {
    100%,
    0% {
        stroke: #d62d20;
    }
    40% {
        stroke: #0057e7;
    }
    66% {
        stroke: #008744;
    }
    80%,
    90% {
        stroke: #ffa700;
    }
}

.custom-combobox {
    position: relative;
    display: inline-block;
}
.custom-combobox-toggle {
    position: absolute;
    top: 0;
    bottom: 0;
    margin-left: -1px;
    padding: 0;
}
.custom-combobox-input {
    margin: 0;
    padding: 5px 10px;
}
.ui-draggable, .ui-droppable {
    background-position: top;
}
.ui-autocomplete {
    max-height: 300px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
    z-index: 2000;
}
.ui-autocomplete {

}
/* Autocomplete
----------------------------------*/

.ui-menu-item  {
    position: relative;
    width: 500px;
    height: 100%;
    font-weight: normal;
    text-decoration: none;
    padding: 3px;
    font-size: 14;
    font-family: "Open Sans",sans-serif;
    border: 0.01px solid #f5f5f5;
}
.ui-menu-item-wrapper{
    position: relative;
    background-color: #eeeeee;
    display: block;
    width: 100%;
    padding: 0px;
    border: 0.2px solid #e2e2e2;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-state-active.ui-button:hover {
    /* your rules */
    background-color: #e0e0e0;
    border: 0.2px solid #bcbcbc;
    color: black;
}

.cbp-popup-loadingBox {
    background-color: white;
}

.ui-autocomplete-loading {
    background: white url("../../images/ui-anim_basic_16x16.gif") right center no-repeat;
}

.ui-tooltip {
    max-width: 200px;
}
.portlet.light .dataTables_wrapper .dt-buttons {
    margin-top: 0px;
}
div.btn-group.open{
    position: absolute;
}
table.collapsed tr.child td.child {
    padding-bottom: 100px;
}