/*------------------------------------------------------------------------------------------------------------------------------------------
    INPUTS/MIXER/OUTPUTS WINDOW
------------------------------------------------------------------------------------------------------------------------------------------*/
#inputsWindow, #outputsWindow {
    display: flex;
    white-space: nowrap;
    padding: 0;
    clear: both;
}

#inputsWindow, #outputsWindow {
    overflow: hidden;
}

/*------------------------------------------------------------------------------------------------------------------------------------------
    OUTPUTS TAB
------------------------------------------------------------------------------------------------------------------------------------------*/
.slicesDelayValueType {
    position: absolute;
    width: inherit;
}

.slicesDelayValueTypeDiv {
    margin: 5px;
    border-radius: var(--border-radius);
}

/*------------------------------------------------------------------------------------------------------------------------------------------
    SLICES --- NOT SELECTED
------------------------------------------------------------------------------------------------------------------------------------------*/
/* Fader Slice */
.slices {
    margin-right: 2px;
    display: inline-block;
    border-radius: var(--border-radius);
    height: fit-content;
}

/* Fader Background */
.faderContener-notselected{
    background-color: var(--background-color-secondary-bis);
}

/* Fader Bar */
.slices .ui-widget-content {
    background: none;
    background-color: var(--background-color-tertiary);
}

/*------------------------------------------------------------------------------------------------------------------------------------------
    SLICES --- SELECTED
------------------------------------------------------------------------------------------------------------------------------------------*/
.slices.selectedSlice{
    border: 1px solid var(--background-color-tertiary);
}
.slices.selectedSlice.hightlightedSlice {
    border: 1px solid var(--background-color-secondary-bis);
}

/* Fader Background */
/*.faderContener-selected{*/
/*    background-color: var(--brand-color-darker-50);*/
/*}*/

/* Fader Bar */
.slices.selectedSlice .ui-widget-content {
    background-color: var(--brand-color-darker-90);
}


.slicesMixerMaster {
    text-align: center;
    margin-right: 5px;
    margin-bottom: 0px;
    display: inline-block;
    /* float: left; */
    width: 100px;
}

.slicesTitle/* , .slicesValue */ {
    padding: 5px 0;
}

.tooltipDialogs, .tooltipDialogs .ui-dialog-content {
    padding: 0;
}

.tooltipDialogs .ui-dialog-titlebar {
    display: none;
}

.emptyDiv {
    /* background-color: black; */
    border-radius: var(--border-radius);
    /* width: 96% ; */
    margin: 2px 2px;
    height: 30px; /* mandotory for bob with or whitout fx */
    /*border: 2px solid #282828;*/
}

.disabledSliceDiv {
    display: inline-block;
    width: 96%;
    /* float: left; */
    margin-right: 5px;
}

/*------------------------------------------------------------------------------------------------------------------------------------------
    BOTTOM --- ON / OFF
------------------------------------------------------------------------------------------------------------------------------------------*/
.slicesButtons {
    display: table;
    /* padding-bottom: 4px; */
}

.slicesMuteButton,
.slicesPhaseButton,
.slicesPhantomButton,
.slicesDelayButton,
.slicesLinkButton,
.slicesLockButton,
.slicesPadButton,
.slicesFxButton {
    border: none;
    font-weight: bold;
    margin: 2px ;
    display: inline-block;
    position: relative;
    float: left;
    color: white;
}

.customSliceButtonsWithPng {
    background-size: 18px 18px;
    background-repeat: no-repeat;
    background-position: center;
    visibility: visible;
}

/*------------------------------------------------------------------------------------------------------------------------------------------
    BOTTOM --- FADER / VIEWMETER
------------------------------------------------------------------------------------------------------------------------------------------*/
.slicesFaderViewmeter {
    /* text-align: center; */
    width: 95%;
    border-radius: var(--border-radius);
}

.slicesBottomDiv {
    padding-top: 0.2rem;
}

.slicesFaderCursorImage {
    position: relative;
    width: 20px;
    height: 27px;
    left: -56px;
    top: -50px;
}

.viewmeterLabelsDiv {
    position: relative;
    width: 20px;
    float: left;
    /* margin-left: 3px; *//* pour coller */
}

.viewmeterLabels {
    position: relative;
    clear: both;
    display: block;
    line-height: 30px;
    width: inherit;
    vertical-align: middle;
    font-size: 8px;
}

.faderLabelsDiv {
    position: relative;
    width: 20px;
    float: left;
}

.faderLabels {
    position: relative;
    clear: both;
    display: block;
    line-height: 30px;
    font-size: 9px;
    text-align: right;
    text-align: left;
    padding-left: 4px;
}

.faderImage {
    float: left;
}

.FaderCatched {
    -webkit-filter: drop-shadow(12px 12px 7px rgba( 0, 0, 0, 0.5));
    filter: drop-shadow(12px 12px 7px rgba(0, 0, 0, 0.5));
}

