:root {
    --color-texto: #4d4d4d;
    --color-claro: #ffffff;
    --blue-2: #005b80;
}

.flotante {
    background: rgba(0, 91, 128, 0.85);
    bottom: 30px;
    right: 30px;
    padding: 8px 15px;
    width: 250px;
    position: fixed;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    align-items: center;
    border: solid 1px #fff;
    border-radius: 35px;
    box-shadow: 0 0 8px rgba(0, 0, 0, .3);
    cursor: pointer;
    animation: .8s linear 3 animacion1;
    transition: .5s
}

.flotante__texto {
    font-family: LatoBlack, Arial, Helvetica, sans-serif;
    font-size: 13px;
    color: var(--color-claro)
}

.flotante__img {
    width: 40px;
    height: 40px
}

@keyframes animacion1 {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }
}

.form-box {
    border: 1px solid rgba(0, 0, 0, .1);
    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: 0;
    right: 0;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: #f5f5f7;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    box-sizing: border-box;
    transition: .25s ease-in-out
}

.form-box.open {
    z-index: 10000 !important;
    transform: translate(10px, -70px);
    height: 100%;
    width: 415px;
    opacity: 1
}

.frameChat {
    border-width: 0;
    display: block;
    height: 100%;
    width: 100%
}