﻿body {
    background-color: #EEEEEE;
}

/*MC para poder ver el texto sin opacidad en el carrusel*/ 
.carrusel {
    position: relative;
    z-index: 1;
    height:100%
}

 .carrusel .bg {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: .8;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*Altura máxima de una página restando la TopBarMenu*/
.alturamax{
    height: calc(100vh - 65px);
}

/*Estilo para el botón de Whatsapp*/
.whatsapp {
    z-index: 10000;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 6px;
    right: 6px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
}

/*Tabla de la página de Siniestros*/
.tablasiniestros {
    overflow-x: auto;
    border: 3px solid;
    border-color: #ED1C24;
    border-radius: 15px
}

/*Clases para sobreescribir el modal cuando se desconecta la página */
.my-reconnect-modal > div {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100000;
    overflow: hidden;
    background-color: #fff;
    opacity: 0.8;
    text-align: center;
    font-weight: bold;
}

.components-reconnect-hide > div {
    display: none;
}

.components-reconnect-show > div {
    display: none;
}

.components-reconnect-show > .show {
    display: block;
}

.components-reconnect-failed > div {
    display: none;
}

.components-reconnect-failed > .failed {
    display: block;
}

.components-reconnect-rejected > div {
    display: none;
}

.components-reconnect-rejected > .rejected {
    display: block;
}

/*Ocultar logo de Recaptcha de Google v3*/
.grecaptcha-badge {
    visibility: hidden;
}