/* GENERAL */
:root{
    --colorFilasGrilla: Aquamarine;
    --colorCeldasGrilla: #FD57FFC9;
}
.noSelectable
{
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer */
    -khtml-user-select: none; /* KHTML browsers (e.g. Konqueror) */
    -webkit-user-select: none; /* Chrome, Safari, and Opera */
    -webkit-touch-callout: none; /* Disable Android and iOS callouts*/
}
/* EWOK TOGGLE BUTTON */
.ewokToggleButton
{
    display: inline-block;
    text-align: center;
    padding: 6px;
    border: thin solid #ccc;
    border-radius: 4px;
    min-width: 65px;
    height: 32px;
    cursor: pointer;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
}
.toggleOn
{
    background-color: #33CC99;
    color: white;
    border-right: solid 8px #ccc;
    font-weight: bold;
    padding-left: 14px;
}
.toggleOff
{
    background-color: #666;
    color: white;
    border-left: solid 8px #ccc;
}
/* EWOK DATA LIST */
.dataList_txtInput
{
    
}
.dataList_divList
{
    
}
/* EWOK BUTTON SELECT */
.ewok_buttonSelectDefault
{
    background-color: #444;
    color: whitesmoke;
    padding: 7px;
    border: none;
}
.ewok_buttonSelectSelected
{
    background-color: #33CC99;
}
.ewok_buttonSelectNoVisibility
{
    display: none;
}
.ewok_buttonSelectContainer
{
    display: inline-block;
    cursor: pointer;
    margin-right: 7px;
    margin-bottom: 7px;
    padding: 0px;
}
.ewok_buttonSelectContainerBorder
{
    border: thin solid #dddddd;
    padding-left: 5px;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}
.ewok_buttonSelectContainerBorderRight
{
    border: thin solid #dddddd;
    padding-right: 5px;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}
/* CONTENEDOR DE TEMPLATE DENTRO DE UNA VISTA */
.ewok_templateContainerInView
{
    display: none;
}
/* BOTONES PARA EWOK VIRTUAL KEYBOARD */
.ewokVK_defaultButton
{
    display: inline-block;
    vertical-align: top;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 18px;
    width: 48px;
    height: 36px;
    text-align: center;
    background-color: #33CC99;
    color: whitesmoke;
    /* padding-top: 18px; */
    border: thin solid whitesmoke;
    border-radius: 5px;
}
.ewokVK_specialButton
{
    vertical-align: top;
    background-color: darkorange;
}
.ewokVK_doubleSizeButton
{
    width: 96px;
}
.ewokVK_defaultButton:active
{
    background-color: whitesmoke;
    color: #33CC99;
    font-weight: bold;
}
.ewokVK_buttonSeparation
{
    display: inline-block;
    vertical-align: top;
    width: 48px;
    height: 36px;
}
.ewokVK_halfSeparation
{
    width: 24px;
}
.ewokVK_doubleSeparation
{
    width: 96px;
}
.ewokVK_placeholder
{
    text-align: center;
    color: #33CC99;
    font-size: 16px;
    font-weight: bold;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
/* ADAPTATIVO */
@media screen and (min-width: 1280px)
{
    /* EWOK GRIDS */
    .ewokGrid_columnMinPriority
    {
        display: table-cell;
    }
    .ewokGrid_columnMedPriority
    {
        display: table-cell;
    }
    .ewokGrid_columnMaxPriority
    {
        display: table-cell;
    }
    /* DIVS INLINE BLOCK */
    .ewokDivIB_maxPriotiry
    {
        display: inline-block;
    }
    .ewokDivIB_medPriotiry
    {
        display: inline-block;
    }
    .ewokDivIB_minPriotiry
    {
        display: inline-block;
    }
}
@media screen and (min-width: 900px) and (max-width: 1280px)
{
    /* EWOK GRIDS */
    .ewokGrid_columnMinPriority
    {
        display: none;
    }
    .ewokGrid_columnMedPriority
    {
        display: table-cell;
    }
    .ewokGrid_columnMaxPriority
    {
        display: table-cell;
    }
    /* DIVS INLINE BLOCK */
    .ewokDivIB_maxPriotiry
    {
        display: inline-block;
    }
    .ewokDivIB_medPriotiry
    {
        display: inline-block;
    }
    .ewokDivIB_minPriotiry
    {
        display: none;
    }
}
@media screen and (max-width: 900px)
{
    /* EWOK GRIDS */
    .ewokGrid_columnMinPriority
    {
        display: none;
    }
    .ewokGrid_columnMedPriority
    {
        display: none;
    }
    .ewokGrid_columnMaxPriority
    {
        display: table-cell;
    }
    /* DIVS INLINE BLOCK */
    .ewokDivIB_maxPriotiry
    {
        display: inline-block;
    }
    .ewokDivIB_medPriotiry
    {
        display: none;
    }
    .ewokDivIB_minPriotiry
    {
        display: none;
    }
}
/* EWOK FORMS */
.ewokForm
{
    display: inline-block;
    position: absolute;
    width: 500px;
    height: 250px;
    border: thin solid #33CC99;
    box-shadow: 5px 5px #888888;
    background-color: whitesmoke;
}
.ewokFormTitle
{
    display: inline-block;
    /* width: calc(100% - 7px); */
    width: 100%;
    background-color: #33CC99;
    color: whitesmoke;
    font-size: 16px;
    padding: 7px;
    cursor: move;
}
.ewokFormCloseButton
{
    display: inline-block;
    float: right;
    margin-right: 0px;
    top: -25px;
    color: whitesmoke;
    position: relative;
    cursor: pointer;
    width: 28px;
    text-align: center;
    /* background-color: red; */
}
.ewokFormContent
{
    display: inline-block;
    padding: 7px;
    /* background-color: whitesmoke; */
    /* width: calc(100% - 14px);
    height: calc(100% - 0px); */
}
.ewokFormActionButtonsContainer
{
    display: inline-block;
    border-top: thin solid #33CC99;
    padding-top: 7px;
    /* float: bottom;
    margin-bottom: 0px; */
    width: 100%;
    text-align: center;
}
.ewokFormDefaultActionButton
{
    background-color: whitesmoke;
    border: thin solid #33CC99;
    padding: 7px;
    color: #33CC99;
    margin-right: 3px;
}
.ewokFormDefaultActionButton:hover
{
    font-weight: bold;
}
/* --- */
.ewokGeneric_abmRow
{
    text-align: left;
}
.ewokGeneric_abmFieldName
{
    display: inline-block;
    vertical-align: top;
    width: 130px;
    font-weight: bold;
}
.ewokGeneric_abmFieldValue
{
     display: inline-block;
     vertical-align: top;
}
.ewokGeneric_oddRowClass
{
    background-color: whitesmoke;
}
.ewokColorFilasGrilla {
    background-color: var(--colorFilasGrilla);
}
.ewokColorCeldasGrilla {
    background-color: var(--colorCeldasGrilla);
    font-weight: bold;
}

/* ROUNDED TOGGLE BUTTON */
.ewokToggleButtonRoundedOff {
    position: relative;
    border-radius: 30px;
    background-color: #cccccc;
}
.ewokToggleButtonRoundedOn {
    position: relative;
    border-radius: 30px;
    background-color: #33cc99;
}
.ewokSpanToggleBtnOn {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: white ;
    border-radius: 50%;
    bottom: 0;
    right: 1px;
}
.ewokSpanToggleBtnOff {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: 50%;
    bottom: 0;
    left: 0;
}

/* EWOK EDITABLE SPAN */
.ewokEditableSpan_spanContainer
{
    margin-top: 5px;
}
.ewokEditableSpan_span
{
    /* */
}
.ewokEditableSpan_input
{
    /* */
}
.ewokEditableSpan_inputError
{
    background-color: lightcoral;
}
/* --- */
.ewokContextMenu_menu
{
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    padding: 5px 0;
}
.ewokContextMenu_menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ewokContextMenu_menu li {
    padding: 8px 15px;
    cursor: pointer;
}

.ewokContextMenu_menu li:hover {
    background: #f0f0f0;
}


/* ANIMACIONES PARA MARCADORES */

/* DROP */
.drop {
    opacity: 0;
    transform: translateY(-200px);
    animation: dropMarker 0.4s ease-in-out;
    animation-fill-mode: forwards;
}
@keyframes dropMarker {
    60% {
        transform: translateY(0)
    }
    90% {
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

/* BOUNCE */
.bounce {
    animation: bounceMarker 1s infinite ease-in-out;
}
@keyframes bounceMarker {
    0% { transform: translateY(0) }
    40% { transform: translateY(-20px) }
}