
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    /* IE10+ CSS styles go here */
    
    body .chat-conv {
        position: relative;
        top: 30px;
        /*display: flex;
        flex-direction: column;*/
        height: calc(100% - 80px);
        align-items: center;
        padding-left: 0;
        padding-right: 0;
        padding-top: 20px;
        padding-bottom: 37px;
        overflow: auto;
        height: auto;
        /*imagen de fondo*/
        /*background-image: url('img/syringe.png')*/
    }


    body .chat-title {
        position: fixed;
        width: 310px;
        z-index: 1;
        border-top-left-radius: 2px;
        border-top-right-radius: 2px;
        
    }

    body .option-ul {
        padding-left: 10px;
        position: relative;
        top: 30px;
    }

    body .chat-user {
        position: fixed;
        bottom: 10px;
        z-index: 1;
        display: flex;
        align-items: flex-end;
        width: 310px;
        background-color: white;
        border-top: 1px solid #0d9ec4;
        /* border-top: 1px solid #48ae64; */
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;    
    }

    body .writing {
        margin-bottom: 20px;
        margin-top: -14%;
        position: absolute;
        color: #525252;
        left: 20px;
        bottom: 25px;
        font-size: 11px;
    }

}


body {
    background: url('../images/fondo.png') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

body * {
    box-sizing: border-box;
    user-select: none;
}

ul.topnav {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

ul.topnav li {
    float: left;
}

ul.topnav li a {
    font-size: 150%;
    font-weight: 600;
    display: block;
    color: white;
    text-align: center;
    text-decoration: none;
}

ul.topnav li span {
    font-size: 14px;
    cursor: default;
    display: block;
    color: white;
    text-align: center;
    text-decoration: none;
}

ul.topnav li a:hover:not(.active) {
    opacity: 0.5
}

ul.topnav li.right {
    padding-left: 160px;
}

.right {
    left: 95% !important;
    cursor: pointer;
    /* left: 90% !important; solo si esta habilitado el copy*/
}

.right-x {
    cursor: pointer;
}

.copy {
    left: 85% !important;
}

.copy:hover {
    cursor: pointer;
}

ul.topnav li.right-x {
    padding-left: 280px;
}

.chat {
    min-width: 310px;
    border-radius: 5px;
    margin: 0 10px;
    height: 90vh;
    /*height: 50vh;*/
    max-height: 500px;
    width: 35vw;
    /* width: 40vw; */
    /* max-width: 350px; */
    max-width: 310px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    /*
  border: 1px solid lightgray;
  */
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #fff;
    overflow: auto;
}

.chat-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    height: 35px;
    margin: 0;
    padding: 0 10px;
    color: #eee;
    background-color: #0d9ec4;
    /* background-color: #48ae64; */
    font-weight: 100;
    text-align: center;
    /*
  cursor: pointer;
  */
}

.chat-conv {
    position: relative;
    display: flex;
    height: calc(100% - 80px);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    overflow: auto;
    /*imagen de fondo*/
    /*background-image: url('img/syringe.png')*/
}

.chat-user {
    position: relative;
    bottom: 0px;
    display: flex;
    align-items: flex-end;
    width: 100%;
    background-color: inherit;
    border-top: 1px solid #0d9ec4;
    /* border-top: 1px solid #48ae64; */
}

.chat-input {
    height: 100%;
    width: 100%;
    border: none;
    font-size: 13px;
    font-weight: 300;
    padding: 12px 20px;
    outline: none;
}

.chat-send {
    width: 50px;
    padding: 8px;
    color: #0d9ec4;
    /* color: #48ae64; */
    font-size: 20px;
    text-align: center;
    cursor: pointer;
}

.chat-send:hover {
    opacity: 0.8;
}

/*.chat-title span {
    font-size: 14px;
    cursor: default;
    display: block;
    color: white;
    text-align: center;
    text-decoration: none;
    margin-top: -10px;
    position: absolute;
}

.chat-title a {
    font-size: 14px;
    display: block;
    color: white;
    text-align: center;
    text-decoration: none;
    bottom: 10px;
    position: relative;
    left: 95%;
}*/

.chat-name {
    margin-bottom: 5px;
    font-size: 12px;
    color: grey;
    margin-right: 35%;
}

.chat-send.active:before {
    background: red;
}

.chat-send.active:after {
    background: transparent;
    border: 2px solid red;
    animation: pulse .5s linear alternate infinite;
}

.chat-option {
    /*esto del margin es provisorio*/
    margin-right: 10px;
    border-radius: 5px;
    height: 90vh;
    /*height: 50vh;*/
    max-height: 500px;
    /*width: 40vw;*/
    width: 35vw;
    /* max-width: 350px; */
    max-width: 310px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    /*
  border: 1px solid lightgray;
  */
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #fff;
    overflow: hidden;
}

.option-li {
    border-radius: 10px;
    font-family: arial, sans-serif;
    font-size: 11px;
    line-height: 16px;
    display: block;
    width: calc(100% - 30px);
    padding: 10px 15px;
    color: #333;
    cursor: pointer;
}

.option-ul {
    padding-left: 10px;
}

.option-li:hover {
    color: #0d9ec4;
    /* color: #48ae64; */
    background-color: #f1f0f0;
}

.chat-option-conv {
    display: flex;
    height: calc(100% - 100px);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    overflow: auto;
}

@keyframes pulse {
    to {
        transform: scale(1.5);
    }
}

.blob {
    position: relative;
    width: 255px;
    padding: 7px 10px;
    border-radius: 10px;
    background: #f1f0f0;
    color: #000;
    font-size: 11px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.blob.user {
    max-width: 250px;
    width: auto;
    margin-bottom: 20px;
    color: #fff;
    background-color: #0d9ec4;
    /* background-color: #48ae64; */
    /* margin-left: 15px; */
    margin-left: auto;
    /* margin-right: 15px; */
    margin-right: 5px;
}

.blob.bot {
    /* width: auto; */
    margin-bottom: 20px;
    margin-top: 10px;
    background-color: #f1f0f0;
    text-align: left;
    margin-left: auto;
    margin-right: 11px;
    max-width: 250px;
    min-width: 118px;
    display: flex;
}

.blob.scroller {
    overflow: scroll;
    min-height: 270px;
}

.blob .scroller>.cardDown {
    overflow: scroll;
    min-height: 340px;
    text-align: left;
}


.blob p {
    font-family: arial, sans-serif;
    font-size: 11px;
    line-height: 16px;
    margin: 0;
    text-align: inherit;
    /*
  text-align: center;
  */
}


/*
.left{
  text-align: left !important;
}
*/


/*
.blob > i {
  color: #48ae64;
  position: absolute;
  left: -30px;
  top: 0;
  font-size: 2em;
}
*/

.blob>img {
    position: absolute;
    left: -30px;
    height: 20px;
}

.blob .chat-name {
    position: absolute;
    top: -15px;
}

.blob .scroller {
    overflow: auto;
    text-align: left;
}

.blob .button,

/* .blob .qrep {
  font-weight: 700;
  font-family: arial, sans-serif;
  font-size: 11px;
  line-height: 20px;
  display: inline-block;
  margin-top: 8px;
  border: 1px solid;
  border-radius: 8px;
  letter-spacing: 0;
  text-decoration: none;
  text-align: center;
  color: #0d9ec4;
  background-color: #fff;
  cursor: pointer;
} */


/* el que se parece al bbva */

.blob .qrep {
    font-weight: 700;
    font-family: arial, sans-serif;
    font-size: 11px;
    line-height: 23px;
    display: block;
    margin-top: 8px;
    border: 1px solid;
    border-radius: 5px;
    letter-spacing: 0;
    text-decoration: none;
    text-align: center;
    color: #0d9ec4;
    background-color: #fff;
    cursor: pointer;
}

.blob .more {
    font-weight: 700;
    font-family: arial, sans-serif;
    font-size: 11px;
    line-height: 23px;
    display: block;
    margin-top: 8px;
    border: 1px solid;
    border-radius: 5px;
    letter-spacing: 0;
    text-decoration: none;
    text-align: center;
    color: #fff;
    background-color: #0d9ec4;
    cursor: pointer;
}

.blob .button:hover,
.blob .qrep:hover {
    background-color: rgba(247, 247, 247, 0.719);
}

.blob .button:hover,
.blob .more:hover {
    background-color: #62abbd;
}


/*
.blob .button.active,
.blob .qrep.active {
  background-color: #186d2f;
}
*/


/*estilo bvva*/

.blob .qrep {
    height: auto;
    width: auto;
    padding: 0 0.5rem;
    border: 1px solid #e3e3e3;
}

.blob .more {
    height: auto;
    width: auto;
    padding: 0 0.5rem;
    /* border: 1px solid #e3e3e3; */
}


/* .blob .qrep {
  height: auto;
  width: auto;
  padding: 0 0.80rem;
  border: 1px solid #e3e3e3;
  min-height: 25px;
} */


/*
.blob .qrep:not(:first-of-type) {
margin-left: 10px;
}
*/

.blob .card {
    position: relative;
    display: inline-block;
    /*height: 230px;*/
    /* height: 255px; */
    min-height: 255px;
    width: 230px;
    margin-right: 10px;
    vertical-align: top;
    color: #000;
    background: #fff;
    /*border-radius: 4px;*/
    border-radius: 10px;
    text-align: left;
    overflow: hidden;
}

.blob .card h5 {
    margin: 5px;
    font-weight: bold;
}

.blob .card>.myImg {
    width: 100%;
    left: 0;
    height: 140px;
    cursor: pointer;
}

.blob .cardDown>.myImg {
    bottom: -75px;
    width: 100%;
    left: 0;
    height: 120px;
    cursor: pointer;
}

.blob .cardDown .content {
    position: absolute;
    padding: 0 0.5rem;
}

.blob .card .content {
    bottom: 15px;
    /* position: absolute; */
    padding: 0 0.5rem;
}

.blob .cardPDF {
    position: relative;
    display: inline-block;
    /*height: 230px;*/
    height: 255px;
    width: 230px;
    margin-right: 10px;
    vertical-align: top;
    color: #000;
    background: #fff;
    /*border-radius: 4px;*/
    border-radius: 10px;
    text-align: left;
    overflow: hidden;
}

.blob .cardPDF h5 {
    margin: 5px;
    font-weight: bold;
}

.blob .cardPDF img {
    width: 100%;
    left: 0;
    height: 145px;
    cursor: pointer;
}

.pdf-icon {
    cursor: pointer;
    opacity: 0;
    left: 43%;
    bottom: 50%;
    position: absolute;
    font-size: 50px;
    color: grey;
}

.blob .cardVideo {
    position: relative;
    display: inline-block;
    /*height: 230px;*/
    height: 255px;
    width: 230px;
    margin-right: 10px;
    vertical-align: top;
    color: #000;
    background: #fff;
    /*border-radius: 4px;*/
    border-radius: 10px;
    text-align: left;
    overflow: hidden;
}

.blob .cardVideo h5 {
    margin: 5px;
    font-weight: bold;
}

.blob .cardVideo img {
    width: 100%;
    left: 0;
    height: 145px;
    cursor: pointer;
}

.video-icon {
    cursor: pointer;
    opacity: 0;
    left: 43%;
    bottom: 50%;
    position: absolute;
    font-size: 50px;
    color: grey;
}

.opacity-effect {
    opacity: 0.5;
    transition: opacity 0.5s linear;
}

.blob .cardPDF .content {
    bottom: 20px;
    position: absolute;
    padding: 0 0.5rem;
}

.blob .cardVideo .content {
    bottom: 20px;
    position: absolute;
    padding: 0 0.5rem;
}

.collapsable {
    transition: height 0.5s;
}

.collapsed {
    height: 35px;
}

.hidden {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 1s, opacity 0.5s linear;
}

.visible {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.5s linear;
}


/*
@media only screen and (max-width: 1800px) {
.chat {
right: 0;
}
.chat-option {
right: 0;
left: 30%;
}
}
*/

.writing {
    margin-bottom: 20px;
    margin-top: -14%;
    position: absolute;
    color: #525252;
    left: 20px;
    font-size: 11px;
}

.chat-logoImg {
    /* bottom: 83px;
  position: absolute;
  width: 250px;
  background: url(img/boton_chat.png) no-repeat center;
  height: 40px; */
    left: 4%;
    bottom: 103px;
    position: absolute;
    width: 250px;
    background: url(../images/boton_chat.png) no-repeat center;
    height: 50px;
}

.chat-button :hover {
    cursor: pointer;
    opacity: 0.9;
}

.chatbot-container {
    /* height: 98vh; */
    position: fixed;
    float: left;
    bottom: 10px;
    display: flex;
    align-items: flex-end;
    z-index: 10;
}

@media only screen and (max-device-width: 667px) {
    .chat {
        position: fixed;
        bottom: 10px;
    }
}

#div-opciones {
    height: 88%;
    overflow-y: scroll;
    overflow-x: hidden;
}

.search-plus {
    opacity: 0;
    font-size: 50px;
    color: #fff;
    position: absolute;
    left: 40%;
    bottom: 65%;
    cursor: pointer;
}

.cardDown>.search-plus {
    bottom: -17% !important;
}

.cardDown>.search-circle {
    bottom: -25% !important;
}

.search-circle {
    opacity: 0;
    font-size: 80px;
    color: rgba(0, 0, 0, 0.38);
    position: absolute;
    left: 36%;
    bottom: 57%;
    cursor: pointer;
}

@media (max-width:900px) {
    .chat {
        width: 100%;
        /*The width is 100%, when the viewport is 800px or smaller*/
    }
}

@media (max-width:600px) {
    .chat-option {
        visibility: hidden;
        opacity: 0;
        transition: visibility 0s 1s, opacity 0.5s linear;
    }
}


/* #myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
} */

.myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}


/* The Modal (background) */

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */
}


/* Modal Content (image) */

.modal-content {
    height: 600px !important;
    margin-left: 20%;
    display: block;
    max-width: 1100px;
    width: 100% !important;
    left: 0 !important;
    cursor: pointer;
}

.imgDown {
    bottom: 15px;
}


/* Caption of Modal Image */


/* #caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
} */

.caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}


/* Add Animation */

.modal-content,
#caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }
    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}


/* The Close Button */

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}


/* 100% Image Width on Smaller Screens */

@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}

.qualify-span {
    margin-top: -20px;
    margin-bottom: 30px;
    margin-left: 35%;
    display: flex;
    flex-direction: row;
    color: rgba(0, 0, 0, .4);
    clear: both;
    cursor: default;
}

.qualify-text {
    font-size: 11px;
    font-family: arial, sans-serif;
    line-height: 16px;
    cursor: default;
}

.thumbUp-background {
    padding-top: 10px;
    padding-left: 3px;
    color: #999;
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 0 0 5px 5px;
    margin: 0 1px;
    background: #f1f0f0;
    cursor: pointer;
    transition: background .2s ease-in-out, color .2s ease-in-out;
}

.thumbUp-background i {
    font-size: 11px;
    transform: translate(0px, -15px);
}

.thumbUp-background:hover {
    color: rgb(255, 255, 255);
    background: #0d9ec4;
    /* background: #48ae64;   */
    transition: background .2s ease-in-out, color .2s ease-in-out;
}

.thumbDown-background {
    padding-top: 10px;
    padding-left: 3px;
    color: #999;
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 0 0 5px 5px;
    margin: 0 1px;
    background: #f1f0f0;
    cursor: pointer;
    transition: background .2s ease-in-out, color .2s ease-in-out;
}

.thumbDown-background i {
    font-size: 11px;
    transform: translate(0px, -15px);
}

.thumbDown-background:hover {
    color: rgb(255, 255, 255);
    background: #0d9ec4;
    /* background: #48ae64;   */
    transition: background .2s ease-in-out, color .2s ease-in-out;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .3);
    border-radius: 3px;
    cursor: pointer;
}

.p-not-phone {
    display: none;
}

@media only screen and (min-width: 480px) and (max-width: 1920px) {
    .phone {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
    .p-not-phone {
        display: none;
    }
}

a[href^="tel:"] {
    color: orange;
    text-decoration: none;
}

a[href^="tel:"]:before {
    content: "\260e";
    margin-right: 0.2em;
}

.roseta-urg {
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 74px;
    left: 39px;
    border-radius: 50%;
    box-sizing: border-box;
    /*animation: ctaBody 5s ease-in-out infinite;*/
    color: #535353;
    padding: 3px 0 0 0;
    font-weight: 700;
    font-family: 'Open Sans', Arial, serif;
    font-size: 12px;
    background-color: #0299c1;
    /* border-top: 1px solid #ffffff; */
    text-align: center;
    z-index: 2;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.roseta-urg>i {
    width: 35px;
    height: 45px;
    position: absolute;
    left: 12px;
    top: 8px;
    background: url(../images/boton_chat.png) no-repeat center center;
    /*background: url(img/urg_logo.png) no-repeat center center;*/
    background-size: 100%;
    box-sizing: border-box;
    opacity: 1;
}

.roseta-urg>p {
    position: absolute;
    width: 90px;
    right: 12px;
    bottom: 1px;
    line-height: 1.2;
    font-size: 15px;
    font-weight: bold;
    text-align: left;
    color: #ffffff;
    /*animation: ctaText 5s ease-in-out infinite;*/
    opacity: 0;
    box-sizing: border-box;
    margin-bottom: 8.5px !important;
}

.roseta-tab {
    border: 0;
    cursor: pointer;
    overflow: visible;
    border-radius: 4px 4px 0 0;
    font-family: 'Open Sans', Arial, serif;
}

.roseta-urg:hover {
    /*width: 80px;*/
    opacity: 1;
}

@media only screen and (min-width: 480px) {
    .roseta-urg {
        animation: ctaBody 5s ease-in-out infinite;
    }
    .roseta-urg>p {
        animation: ctaText 5s ease-in-out infinite;
    }
}

@-webkit-keyframes ctaText {
    0% {
        opacity: 0;
    }
    35% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    92% {
        opacity: 1;
    }
    93% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@-ms-keyframes ctaText {
    0% {
        opacity: 0;
    }
    35% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    92% {
        opacity: 1;
    }
    93% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes ctaBody {
    0% {
        width: 62px;
        border-radius: 45px;
    }
    17% {
        width: 62px;
        border-radius: 45px;
    }
    29% {
        width: 62px;
        border-radius: 45px;
    }
    31% {
        width: 62px;
        border-radius: 45px;
    }
    32% {
        width: 62px;
        border-radius: 45px;
    }
    37% {
        width: 170px;
        border-radius: 45px;
    }
    39% {
        width: 170px;
        border-radius: 45px;
    }
    40% {
        width: 170px;
        border-radius: 45px;
    }
    95% {
        width: 170px;
        border-radius: 45px;
    }
    98% {
        width: 62px;
        border-radius: 45px;
    }
    100% {
        width: 62px;
        border-radius: 45px;
    }
}

@-ms-keyframes ctaBody {
    0% {
        width: 62px;
        border-radius: 45px;
    }
    17% {
        width: 62px;
        border-radius: 45px;
    }
    29% {
        width: 62px;
        border-radius: 45px;
    }
    31% {
        width: 62px;
        border-radius: 45px;
    }
    32% {
        width: 62px;
        border-radius: 45px;
    }
    37% {
        width: 170px;
        border-radius: 45px;
    }
    39% {
        width: 170px;
        border-radius: 45px;
    }
    40% {
        width: 170px;
        border-radius: 45px;
    }
    95% {
        width: 170px;
        border-radius: 45px;
    }
    98% {
        width: 62px;
        border-radius: 45px;
    }
    100% {
        width: 62px;
        border-radius: 45px;
    }
}

.web-avatar {
    background: url(https://s3.amazonaws.com/agentbot/2a19e25ce0aa68b385c93c723df1986e/custom_avatar_cta.png);
    width: 62px;
    background-size: contain;
    background-repeat: no-repeat;
    height: 143px;
    position: absolute;
    left: 7px;
    bottom: 1px;
    z-index: 5;
}


/* Read more */

.read-more-state {
    display: none;
}

.read-more-target {
    opacity: 0;
    max-height: 0;
    font-size: 0;
    transition: .25s ease;
}

.read-more-state:checked~.read-more-wrap .read-more-target {
    opacity: 1;
    font-size: inherit;
    max-height: 999em;
}

.read-more-state~.read-more-trigger:before {
    content: 'Leer más..';
}

.read-more-state:checked~.read-more-trigger:before {
    content: 'Leer menos..';
}

.read-more-trigger {
    cursor: pointer;
    display: inline-block;
    /* padding: 0 .5em; */
    padding-right: 5px;
    color: rgb(52, 185, 238);
    font-size: .9em;
    line-height: 2;
    /* border: 1px solid #ddd;
  border-radius: .25em; */
}


/* provisorio */

.chatbot-comment {
    position: absolute;
    border-radius: 5px;
    height: 90vh;
    /*height: 50vh;*/
    max-height: 380px;
    min-height: 100px;
    /*width: 40vw;*/
    width: 35vw;
    max-width: 340px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    /*
  border: 1px solid lightgray;
  */
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #fff;
    overflow: hidden;
    margin-left: 70%;
}

.chatbot-comment #btn_continuar {
    width: 100px !important;
}

.chatbot-comment #mensaje {
    resize: none;
    margin-top: 10px;
    min-width: 250px;
    width: auto;
    margin-left: 10%;
    margin-bottom: -10px;
}

.chatbot-comment .g-recaptcha {
    margin-left: 1.3%;
}

.chatbot-comment .error {
    float: left;
    margin-left: 10%;
    margin-top: 3%;
}

.chatbot-comment .chat-title {
    background-color: #8abe38 !important;
    height: 50px !important;
}

.chat-input::-webkit-outer-spin-button,
.chat-input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0;
    /* <-- Apparently some margin are still there even though it's hidden */
}

.chat-human {
    width: 50px;
    padding: 8px;
    color: #0d9ec4;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
}

.chat-human:hover {
    opacity: 0.8;
}

.chat-human:hover+.chat-human-text {
    visibility: initial;
}

.chat-human-text {
    position: absolute;
    visibility: hidden;
    bottom: 40px;
    left: 20px;
}

.chat-human-text p {
    background-color: #09a8cb;
    margin-right: 15px;
    padding: 5px;
    color: white;
    border-radius: 5px;
}

.chat-human.realChatHidden {
    display: none;
}