:root{
    --color-texto: #4d4d4d;
    --color-claro: #ffffff;
}
/* Flotante nuevo chat */
.flotante{
    background: #002536;
    bottom: 35px;
    right: 35px;
    padding: 8px 15px;
    width: 290px;
    position: fixed;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    border-radius: 35px;
    box-shadow: 0 0 8px rgba(0,0,0,.3);
    cursor: pointer;
    animation: animacion1 .8s linear 3;
    transition: all .5s ease;
}
.flotante__texto{
    font-family: 'LatoBlack', Arial, Helvetica, sans-serif;
    font-size: 18px;
    
    color: var(--color-claro);
}
.flotante__img{
    width: 48px;
    height: 48px;
}

@keyframes animacion1 {
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.05);
    }
    100%{
        transform: scale(1);
    }
}

.form-box {
    border: none;
    transition-duration: 150ms;
    max-height: 92vh;
    min-height: 150px;
    margin-left: 8px;
    margin-right: 8px;
  font-size: 16px;
  border-radius: 9px;
  position: fixed;
  opacity: 0;
  overflow: hidden;
  bottom: 0px;
  right: 0px;
  transform: translate(-50%,-50%);
  width: 30px;
  height: 30px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  box-sizing: border-box;
  background-color: #f5f5f7;
  transition: all .25s ease-in-out;
}

.form-box.open {
  z-index: 10000 !important;
  transform: translate(10px, -70px);
  height: 100%;
  /* width: 357px; */
  width: 415px;
  opacity: 1;
}

.frameChat {
    border-width: 0;
    display: block;
    height: 100%;
    width: 100%;
}