



/*Todo de aqui abajo es del chat*/

@media (max-width: 500px) {
    #ImageHeading img {
        width: 100%;
        
        /* Reducir el tamaño de la imagen en un 30% */
    }

    #ImageHeading {

        width: 80%;
       
    }

    body {
        flex-direction: column;
        align-items: center;
    }
}

@media (min-width: 1300px) {
   .ContenedorTexto{

    max-width: 50%;


   }
   #TextoTelefono{

    width: 50%;

   }

    body {
        flex-direction: column;
        align-items: center;
    }
}



@media (min-height: 900px) {
    #ImageHeading img {
        margin-top: 100px;
        /* Reducir el tamaño de la imagen en un 30% */
    }

    

    body {
        flex-direction: column;
        align-items: center;
    }
}   

/*Forma del boton del chat*/

#ChatCont {
    padding: 10px;
    background: #A3E407;
    border-top-right-radius: 20%;
    border-top-left-radius: 20%;
    border-bottom-left-radius: 20%;
    border-bottom-right-radius: 20%;
    width: 150PX;
    height: 40px;
    cursor: pointer;
    box-shadow: 0px 0px 1px #000;
    display: inline-block;
    position: fixed;
    color: white;
    
    font-weight: bolder;
    text-align: center;
}

#CloseChatButton {
    background: none;
    border-radius: 50%;
    position: absolute;
    top: 15px;
    right: 15px;
}

#ChatCont:hover {
    opacity: .8;
}

.chatContainer {
    width: 20%;
    position: fixed;
    top: 5%;
    left: 50%;
}

h1.ChatTitulo {
    font-size: 16px;
    font-family: Segoe UI;
    line-height: 20px;
    color: #3498DB;
    display: table-cell;
    position: relative;
}

h3.SubChatTitulo {
    font-size: 10px;
    font-family: Segoe UI;
    flex-wrap: nowrap;
    line-height: 20px;
    color: #3498DB;
    display: table-cell;
    padding: 0px 0px 0px 70px;
}

#heading {
    background-color: #A3E407;
    height: 75px;
    visibility: hidden;
    border-top-right-radius: 15%;
    border-top-left-radius: 15%;
}

.main {
    margin: 18px;
    border-radius: 4px;
}

div[role="form"] {
    background-color: white;
    text-wrap: wrap;
}

#webchat {
    position: fixed;
    height: calc(0% - 50px);
    width: 20%;
    overflow: hidden;
    transition: height 2s;
    z-index: 9999;

}

#chatContainer{
    z-index: 9999;
}