.f-message-container{
    border: 1px solid black;
    
}

.f-button {
    display: inline-block;
    background-color: #34A853;
    color: white;
    padding: 5px;
    margin-top: 10px;
    border: 1px solid white;
}

.f-button:link {
    color: white;
}

.f-button:visited {
    color: white;
}

.f-button:hover {
    background-color: #1C7B35;
}

.f-button-white {
    background-color: white;
    border: 1px solid whitesmoke;
    padding: 5px;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.3);
}

.f-button-white:hover {
    background-color: whitesmoke;
}

.f-button-text {
    display: inline-block;
    vertical-align: middle;
}

.f-button-img {
    width: 25px;
    height: 25px;
    display: inline-block;
    vertical-align: middle;
    padding: 5px;
}

.f-html-container {
    background-color: #F1F1F1;
}

.f-box {
    background-color: white;
    padding: 10px;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.3);
}

.f-float-box {
    display: block;
    background-color: white;
    padding: 10px;
    margin: 0 auto;
    margin-top: 10%;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.3);
}

.f-block-center {
    text-align: center;
}

.f-box-image {
    display: block;
    width: 100px;
    height: 100px;
    text-align: center;
    margin: 0 auto;
    padding: 20px;
}

.f-box-title {
    text-align: center;
    color: #383838;
}

.f-box-small {
    font-size: 16px;
}


/***********************PAGINADO************************/

.fixed-table-size {
    width: 100%;
}

#toHelpShow {
    display: none;
}

.f-div {
    position: relative;
    display: inline-block;
    box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.3);
    padding: 2px;
    text-align: center;
    color: black;
    background-color: white;
    margin: 0;
}

.f-li-example {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.3);
    font-size: 12pt;
    font-weight: bold;
    text-align: center;
    color: black;
    background-color: white;
    margin: 0;
}

.f-ulist {
    text-align: center;
    display: block;
    padding: 2px;
}

.f-ulist li {
    display: inline-block;
    padding: 5px;
    margin: 2px;
    font-size: 12pt;
    box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    user-select: none;
    min-width: 30px;
    height: 30px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    font-weight: bold;
    position: relative;
}

.f-ulist li:hover {
    cursor: pointer;
}

.f-ulist li:active {
    transform: scale(0.9);
    box-shadow: 1px 3px 5px rgba(0, 0, 0, 0);
    background-color: #ebebeb;
}

.f-ulist .f-li-active {
    background-color: #ebebeb !important;
    box-shadow: 1px 3px 5px rgba(0, 0, 0, 0) !important;
    animation: none !important;
}

.f-tbody {
    display: none;
}

.f-tbody-active {
    display: table-row-group;
}

.f-ul-title {
    display: block;
}

.material-icon-error {
    color: #BB271A;
    font-size: 28px !important;
}

.material-icon-warning {
    color: #F19E39;
    font-size: 28px !important;
}

.material-icon-correct {
    color: #4B77D1;
    font-size: 28px !important;
}

.indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    opacity: 0;
    border-radius: 100%;
    transition: all 1s;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.error-indicator {
    animation: indicatorError 1s infinite;
}

.warning-indicator {
    animation: indicatorWarn 1s infinite;
}

.error-warning-indicator {
    animation: indicatorErrorWarn 2s infinite;
}

@keyframes indicatorErrorWarn {
    0% {
        opacity: 0;
    }

    25% {
        background-color: #BB271A;
        opacity: 0.6;
    }

    50% {
        background-color: #FFF;
        opacity: 0;
    }
    
    75% {
        background-color: #F19E39;
        opacity: 0.6;
    }

    100% {
        background-color: #FFF;
        opacity: 0;
    }
}

@keyframes indicatorError {
    0% {
        opacity: 0;
    }

    50% {
        background-color: #BB271A;
        opacity: 0.6;
    }

    100% {
        opacity: 0;
    }
}

@keyframes indicatorWarn {
    0% {
        opacity: 0;
    }

    50% {
        background-color: #F19E39;
        opacity: 0.6;
    }

    100% {
        opacity: 0;
    }
}

/***********************TECH ERR MESSAGE************************/

#f-session-error-container {
    background-color: #FF9999;
    width: 300px;
    height: auto;
    z-index: 1000;
    position: absolute;
    top: 100px;
    right: 0px;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    display: -ms-flex;
    transform: scale(0.9);
    opacity: 0;
    perspective: 1000px;
    animation: showSessionError 0.5s forwards;
}

.f-session-error-icon-container {
    background-color: #FF6666;
    display: inline-block;
    width: auto;
    padding: 10px;
}

.f-session-error-icon {
    width: 20px;
    height: 20px;
    display: block;
}

.f-session-error-text-container {
    display: inline-block;
    padding: 10px;
}


/*
.f-session-error-x {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 3px;
    height: 3px;
    color: #FF9999;
    background-color: #FF6666;
    border-radius: 100%;
    padding: 2px;
}
*/


/*ANIM SESSION ERROR*/

@keyframes showSessionError {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes hideSessionError {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(0.9);
        opacity: 0;
    }
}


/*----------------------------TECH SUCCESS MESSAGE------------------------------*/

#f-session-success-container {
    background-color: #65CF83;
    width: 300px;
    height: auto;
    z-index: 1000;
    position: absolute;
    top: 100px;
    right: 0px;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    display: -ms-flex;
    transform: scale(0.9);
    opacity: 0;
    perspective: 1000px;
    animation: showSessionSuccess 0.5s forwards;
}

.f-session-success-icon-container {
    background-color: #34A853;
    display: inline-block;
    width: auto;
    padding: 10px;
}

.f-session-success-icon {
    width: 20px;
    height: 20px;
    display: block;
}

.f-session-success-text-container {
    display: inline-block;
    padding: 10px;
}


/*ANIM SESSION SUCCESS*/

@keyframes showSessionSuccess {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes hideSessionSuccess {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(0.9);
        opacity: 0;
    }
}