.tvh-form-carga {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: #fff;
    z-index: 99999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 20px;
}
.tvh-form-carga .tvh-form-tvh-logos {
    max-width: 500px;
    width: 100%;
    padding: 0;
    min-height: 70px;
}
.tvh-form-mensajes {
    margin-bottom: 20px;
    max-width: 500px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 10px;
    width: 100%;
    padding: 20px;
}
.tvh-form-mensaje {
    font-size: 25px;
    color: #000;
    line-height: 32px;
    font-weight: bold;
    letter-spacing: -1px;
}
.tvh-form-carga .tvh-form-tvh-logo {
    width: 20%;
    max-width: none!important;
    background: #fff;
    border-radius: 10px;
    margin: 20px 20px 20px 0px;
}
.tvh-logo-compania-wrapper {
    display: flex;
    align-items: center;
}
.tvh-logo-compania-loading-bar {
    background: #f0f0f0;
    border-radius: 50px;
    width: 80%;
    height: 32px;
    line-height: 32px;
    overflow: hidden;
}
.tvh-logo-compania-loading-bar .tvh-logo-compania-inner-loading-bar {
    color: #fff;
    font-weight: bold;
    border-radius: 50px 0px 0px 50px;
    width: 0;
    height: 100%;
    background: #0ec3c3;
    transition: all 0.1s cubic-bezier(0.42, 0, 0, 0.97) 0s;
    text-align: right;
    padding-right: 10px;
    padding-left: 10px;
}
.tvh-loading-svg {
    animation: tvh-gear 3s infinite linear;
    width: 60px;
    height: 60px;
    fill: #061363;
}
@media (max-width: 767px) {
    .tvh-form-mensajes {
        min-height: 140px;
    }
    .tvh-form-mensaje {
        font-size: 18px;
        color: #000;
        line-height: 21px;
    }
    .tvh-form-carga h3.tvh-text-primary {
        font-size: 20px;
        margin-bottom: 0;
    }
    .tvh-form-carga .tvh-form-tvh-logos {
        min-height: 130px;
    }
    .tvh-form-carga .tvh-form-tvh-logo {
        width: 37%;
    }
    .tvh-logo-compania-wrapper {
        flex-direction: column;
    }
    .tvh-logo-compania-loading-bar .tvh-logo-compania-inner-loading-bar {
        font-size: 14px;
    }
}

@-webkit-keyframes tvh-gear {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes tvh-gear {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}