﻿@import url('site.css');

.tox-statusbar__branding {
    display: none;
}
.tox-promotion {
    display: none;
}

/* Cargando */

.loading-progress-box {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 3000;
}

.loading-progress {
    display: flex;
    overflow: hidden;
    height: 30px;
    border-radius: 50px;
    background-color: #ecf0f1;
}

.loading-progress-bar {
    overflow: hidden;
    text-align: center;
    border-radius: inherit;
    background-color: dodgerblue;
    color: whitesmoke;
    vertical-align: middle;
    font-size: medium;
}

.loading-progress-bar-animated {
    position: relative;
}

    .loading-progress-bar-animated::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: inherit;
        background: linear-gradient(to right,transparent,rgba(255, 255, 255, 0.7));
        transform: translateX(-100%);
        animation: loading-progress-bar-shine 2s infinite;
    }

@keyframes loading-progress-bar-shine {
    to {
        transform: translateX(0);
        opacity: 0.1;
    }
}

/* img-fondo */

.img-fondo {
    position: fixed;
    /*left: 50%;*/
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    /*background-image: url('/images/recepcion2.jpg');*/
    background-repeat: no-repeat;
    background-position: center center;
}

/* ancho de las columnas en tablas */
th, td {
    white-space: nowrap;
}

/* texto con ... */
.text-truncated {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}