#modulo-chat .wrapper-bubble {
    position: fixed;
    z-index: 101;
    max-width: 1920px;
    width: 100%;
    height: 100px;
    bottom: 0;
    pointer-events: none;
  }
  
  #cont-captcha-bubble{
    display: none!important;
  }
  
  /* MOBILE BUBBLE*/
  
  #modulo-chat .container-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  #modulo-chat .container-mobile .container-buttons {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 80%;
    margin-right: 10px;
  }
  
  #modulo-chat .container-mobile .container-buttons > * {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 187px;
    height: 55px;
    margin: 0 5px;
    border-radius: 40px;
    font-family: Lato-Bold;
    font-size: 16px;
    -webkit-box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.16);
    cursor: pointer;
  }
  
  #modulo-chat .container-mobile .container-buttons .btn-ctc {
    border: solid 1px #2F6852;
    background-color: #FFFFFF;
    color: #2F6852;
  }
  
  #modulo-chat .container-mobile .container-buttons .btn-ctc a {
    color: #2F6852;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  
  #modulo-chat .container-mobile .container-buttons .btn-ctc .mbl {
    display: none;
  }
  
  #modulo-chat .container-mobile .container-buttons .btn-ctc p {
    margin: 0;
  }
  
  #modulo-chat .container-mobile .container-buttons .btn-cmb {
    border: solid 1px #2F6852;
    background-color: #2F6852;
    color: #ffffff;
  }
  
  #modulo-chat .container-mobile .container-buttons .btn-cmb p {
    margin: 0;
  }
  
  #modulo-chat .container-mobile .btn-bubble {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20%;
    max-width: 50px;
    height: 50px;
    border-radius: 50%;
    -webkit-box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.16);
    cursor: pointer;
    background-color: #ffffff;
    pointer-events: auto;
  }
  
  #modulo-chat .container-mobile .btn-bubble .img-close {
    width: 0px;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }
  
  #modulo-chat .container-mobile .btn-bubble .img-phone {
    width: 28px;
    opacity: 1;
    visibility: visible;
    transition: 0.5s;
  }
  
  /* ANIMATIONS */
  
  #modulo-chat .container-mobile .btn-bubble.active .img-close {
    width: 15px;
    opacity: 1;
    visibility: visible;
    transition: 0.5s;
  }
  
  #modulo-chat .container-mobile .btn-bubble.active .img-phone {
    width: 0px;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }
  
  #modulo-chat .container-mobile .container-buttons .btn-ctc {
    opacity: 0;
    visibility: hidden;
    transition: 0.8s;
    right: -172px;
  }
  
  #modulo-chat .container-mobile .container-buttons .btn-cmb {
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    right: -70px;
  }
  
  #modulo-chat .container-mobile .container-buttons.active .btn-ctc {
    right: 0;
    opacity: 1;
    visibility: visible;
    transition: 0.8s;
    pointer-events: auto;
  }
  
  #modulo-chat .container-mobile .container-buttons.active .btn-cmb {
    right: 0;
    opacity: 1;
    visibility: visible;
    transition: 0.5s;
    pointer-events: auto;
  }
  
  /* ANIMATIONS */
  
  /* MOBILE BUBBLE*/
  
  /************************** MODAL ******************************/
  
  #modulo-chat #modal-chat {
    z-index: 1050;
    justify-content: center;
    align-items: center;
  }
  
  #modulo-chat .modal-content {
    width: 320px;
    border-radius: 28px;
    margin: 0 auto;
  }
  
  #modulo-chat #modal-chat .box-click-to-call {
    width: 320px;
    border-radius: 28px;
    box-shadow: 0 32px 64px 0 rgba(0, 0, 0, 0.14);
    background-color: #ffffff;
    color: #ffffff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 16px;
  }
  
  #modulo-chat #modal-chat .box-click-to-call p {
    margin: 0;
  }
  
  #modulo-chat #modal-chat .box-click-to-call .header-cmb {
    color: #2c2c2c;
    font-size: 24px;
  }
  
  #modulo-chat #modal-chat .box-click-to-call .header-cmb .close {
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 35px;
    font-family: Lato-Regular;
    font-weight: normal;
  }
  
  #modulo-chat #modal-chat .box-click-to-call .line-separator {
    height: 1px;
    background-color: #cdcdcd;
    margin: 10px 0px;
  }
  
  #modulo-chat #modal-chat .box-click-to-call .content-cmb {
    color: #2c2c2c;
  }
  
  #modulo-chat #modal-chat .box-click-to-call .content-cmb .text-one {
    margin-top: 5px;
  }
  
  #modulo-chat #modal-chat .box-click-to-call .content-cmb .text-two {
    margin-bottom: 10px;
  }
  
  #modulo-chat #modal-chat .box-click-to-call .content-cmb .text-one a {
    color: #5c8819;
    margin: 0 5px;
    font-size: 20px;
    font-family: Lato-Bold;
  }
  
  #modulo-chat #modal-chat .box-click-to-call .content-cmb .form-group {
    margin: 10px 0;
    padding: 0;
    width: 100%;
  }
  
  #modulo-chat #modal-chat .box-click-to-call .content-cmb .form-group > * {
    width: 100%;
    padding: 0;
  }
  #modulo-chat #modal-chat .box-click-to-call .content-cmb .input-telefono {
    height: 40px;
    border-radius: 100px;
    border: solid 1px #cdcdcd;
    background-color: #ffffff;
    font-size: 12px;
    color: #9b9b9b;
    padding-left: 20px;
  }
  
  #modulo-chat #modal-chat .box-click-to-call .content-cmb .privacy {
    display: flex;
    width: 100%;
    justify-content: center;
  }
  
  #modulo-chat
    #modal-chat
    .box-click-to-call
    .content-cmb
    .form-group.has-error
    .input-telefono {
    border-color: #a94442;
  }
  
  #modulo-chat
    #modal-chat
    .box-click-to-call
    .content-cmb
    .form-group.has-error
    p,
  #modulo-chat
    #modal-chat
    .box-click-to-call
    .content-cmb
    .form-group.has-error
    p
    > a {
    color: #a94442;
  }
  
  #modulo-chat
    #modal-chat
    .box-click-to-call
    .content-cmb
    .privacy
    .checkbox-custom {
    display: none;
  }
  
  #modulo-chat
    #modal-chat
    .box-click-to-call
    .content-cmb
    .privacy
    .checkbox-custom-label {
    width: 90%;
    display: inline-flex;
    position: relative;
    cursor: pointer;
    text-align: start;
    font-family: Lato-Regular;
    font-size: 12px;
    color: #a1a1a1;
    text-align: start;
    font-weight: normal;
  }
  
  #modulo-chat
    #modal-chat
    .box-click-to-call
    .content-cmb
    .privacy
    .checkbox-custom-label
    a {
    color: #a1a1a1;
    text-decoration: underline;
  }
  
  .checkbox-custom + .checkbox-custom-label:before {
    content: "";
    background: #fff;
    border-radius: 3px;
    border: 1px solid #a1a1a1;
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-top: 5px;
    margin-right: 15px;
    text-align: center;
    flex-shrink: 0;
  }
  
  .checkbox-custom:checked + .checkbox-custom-label:after {
    font-family: "FontAwesome";
    content: "\2714";
    font-size: 13px;
    border-radius: 2px;
    text-align: center;
    position: absolute;
    margin-top: 5px;
    background: #8abd37;
    color: #ffffff;
    left: 0px;
    top: 0px;
    width: 18px;
    height: 18px;
  }
  
  #modulo-chat .modal-body {
    @media (max-width: 768px) {
      margin-inline: auto;
      padding-inline: 8px;
    }
  }
  #modulo-chat #modal-chat .box-click-to-call .btn {
    width: 260px;
    height: 55px;
    border-radius: 40px;
    margin: auto;
    cursor: pointer;
    /*color: #ffffff;*/
    text-transform: none;
    font-size: 16px;
  }
  
  #modulo-chat .wcom-form button.btn.wcom-button.button-orange {
    background-color: #d86600 !important;
  }
  
  /* RESPONSE */
  
  .ocultar {
    display: none;
  }
  
  .mostrar {
    display: block;
  }
  
  .error-telefono {
    color: #9c0000;
    margin-left: 50px;
  }
  
  #modulo-chat .modal-respuesta {
    width: 320px;
    border-radius: 28px;
    box-shadow: 0 32px 64px 0 rgba(0, 0, 0, 0.14);
    background-color: rgba(255, 255, 255, 255);
    position: fixed;
    z-index: 21599;
    margin: 30px auto;
    position: relative;
  }
  
  #modulo-chat .btn-cerrar {
    float: right;
    margin-right: 30px;
    color: #707070;
    margin-top: 10px;
    font-size: 30px;
  }
  
  #modulo-chat .wrapper-img-modal {
    margin: 10px auto;
    display: flex;
    justify-content: center;
  }
  
  #modulo-chat .texto-okko {
    color: #707070;
    font-size: 20px;
    text-align: center;
    margin: 10px auto;
    padding: 20px 20px 50px 20px;
  }
  
  #modulo-chat .box-btn-cerrar {
    cursor: pointer;
    margin-left: 87%;
  }
  
  #modulo-chat .capa-cargando {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.36);
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 9999;
    top: 0;
    margin-left: 0px;
  }
  
  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  
  @-webkit-keyframes rotate {
    from {
      -webkit-transform: rotate(0deg);
    }
    to {
      -webkit-transform: rotate(360deg);
    }
  }
  
  #modulo-chat .img-cargando {
    margin-top: 20%;
    -webkit-animation: 2s rotate linear infinite;
    animation: 2s rotate linear infinite;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
  }
  
  /* RESPONSE*/
  
  /******************* FIN MODAL *********************************/
  /* MEDIA QUERIES */
  
  /* Pantallas superiores a 1600px (large-desktop) */
  
  @media screen and (min-width: 100em) {
  }
  
  /* Pantallas superiores a 1280px (large-desktop) */
  
  @media screen and (min-width: 80em) and (max-width: 99.99em) {
  }
  
  /* Pantallas entre 1024px y 1280px (desktop) */
  
  @media screen and (min-width: 63.95em) and (max-width: 79.99em) {
  }
  
  /* Pantallas entre 768px y 1024px (tablet) */
  
  @media screen and (min-width: 47.96em) and (max-width: 63.95em) {
  }
  
  /* Pantallas inferior a 768px (mobile) */
  
  @media screen and (max-width: 47.95em) {
    #modulo-chat .container-mobile .container-buttons .btn-ctc .dsk {
      display: none;
    }
    #modulo-chat .container-mobile .container-buttons .btn-ctc .mbl {
      display: block;
    }
  }
  
  @media screen and (max-width: 576px) {
    #modulo-chat .container-mobile .container-buttons .btn-ctc p {
      font-size: 0.85em;
    }
  }
  
  /* Pantallas inferior a 320px (mobile II) */
  
  @media screen and (max-width: 330px) {
    #modulo-chat .modal-dialog {
      margin: 0 auto;
      width: 100%;
    }
  
    #modulo-chat .container-mobile .container-buttons .btn-ctc p {
      font-size: 0.73em;
    }
  }
  