@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body{
    margin: 0;
    padding:0;
    font-family: 'Poppins';
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    overflow-x: hidden !important;
}
a:hover {
  color: #000000;
}
#section-ads {
    display: none;
  text-align: center;
  padding: 30px 0 30px;
  filter: brightness(0) invert(1);
}
::-webkit-scrollbar {
  display: none;
}
.nav {
  background-color: #f9f9f9;
  padding: 20px 0;
}

:root{
  --primaryColor: #152539;
  --secondaryColor: #f90080;
  --terciaryColor: #faa80c;
}
.nav .position-absolute img{
  width: 150px;
  margin-top: -15px;
}
.nav h5 { 
  color: var(--secondaryColor); 
  padding: 10px 20px;
  width: 180px;
  font-size: 14px;
  border-radius: 15px; 
  margin: 0 15px; 
  text-align: center;
  position: relative;
  z-index: 1; 
  display: flex;
  align-items: center;
  justify-content: center;
} 
.nav h5:first-child{
  color: #fff;
  background-color: var(--secondaryColor);
}
.nav .col-12 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}  
#sendIcon{
    --sendIcon: #f90080aa;
}
/* Chatbot styling */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  background: linear-gradient(180deg, #152539 0%, #152539 100%);
  background-size: cover;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  line-height: 1.3;
  overflow-x: hidden;
-ms-overflow-style: none;  
  scrollbar-width: none; 
}

.bg {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: url("https://www.pikpng.com/pngl/b/109-1099794_ios-emoji-emoji-iphone-ios-heart-hearts-spin.png") no-repeat 0 0;
  filter: blur(80px);
  transform: scale(1.2);
}

/*--------------------
Chat
--------------------*/
.chat {
  position: relative;
  margin: 10px 0;  
  width: 95%;
  height: 80vh;
  max-height: 500px;
  z-index: 2;
  overflow: hidden;   
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

/*--------------------
Chat Title
--------------------*/

.chat-title {
  flex: 0 1 45px;
  position: relative;
  z-index: 2; 
  color: #fff;
  text-transform: uppercase;
  text-align: left;
  padding: 10px 10px 10px 50px;
}

.chat-title h1,
.chat-title h2 {
  font-weight: normal;
  font-size: 10px;
  margin: 0;
  padding: 0;
}

.chat-title h2 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  letter-spacing: 1px;
}

.chat-title .avatar {
  position: absolute;
  z-index: 1;
  top: 8px;
  left: 9px;
  border-radius: 30px;
  width: 30px;
  height: 30px;
  overflow: hidden;
  margin: 0;
  padding: 0; 
}

.chat-title .avatar img {
  width: 100%;
  height: auto;
}

.chat-container {
    display: flex;
    flex-direction: column-reverse;  
    height: 100%;                  
}

/*--------------------
Messages
--------------------*/
.messages {
  flex: 1 1 auto;
  color: #fff;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.messages .messages-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%; 
  padding-bottom: 20px;
  overflow-y: auto; 
  overflow-x: hidden;
}

.messages .message {
  clear: both;
  float: left;
  padding: 20px 20px 20px;
  border-radius: 10px 10px 10px 0;
  background: rgba(255, 255, 255, 1);
  margin: 8px 0;
  font-size: 16px;
  line-height: 1.4;
  margin-left: 55px;
  color: #000;
  position: relative;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.messages .message .timestamp {
  position: absolute;
  bottom: -20px;
  font-size: 11px;
  color: #fff;
  text-shadow: none;
}
.message::after {
  content: "";
  display: block;
  clear: both;
}
.messages .message::before {
  content: "";
  position: absolute;
  bottom: -6px;
  border-top: 6px solid rgba(0, 0, 0, 1);
  left: 0;
  border-right: 7px solid transparent;
}
.messages .message.radio-options.new::before, .messages .message.radio-options.new::after{
  display: none;
}
.message-submit{
  background-color: transparent;
  border: none;
}
.temporary-input{
  border: none;
  background: transparent;
  outline: none;
  font-size: 16px;
  padding-left: 10px;
  width: 80%;
}
label.error{
  color: red;
  font-size: 11px;
}
.temporary-input-container{
  margin-top: 5px;
  background-color: #fff;
  width: 250px;
  display: flex;
  min-height: 30px;
  justify-content: space-between;
  border-radius: 5px;
  border: 1px solid var(--secondaryColor);
}
.messages .message .avatar {
  position: absolute;
  z-index: 1;
  bottom: -35px;
  left: -65px;
  border-radius: 30px;
  width: 60px;
  height: 60px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.24);
}

.messages .message .avatar img {
  width: 100%;
  height: auto;
}

.messages .message.message-personal {
  float: right;
  color: #f90080;
  text-align: right;
  background: linear-gradient(120deg, #ffe5f2, #ffe5f2);
  border-radius: 10px 10px 0 10px;
}

.messages .message.message-personal::before {
  left: auto;
  right: 0;
  border-right: none;
  border-left: 5px solid transparent;
  border-top: 4px solid #257287;
  bottom: -4px;
}

.messages .message:last-child {
  margin-bottom: 30px;
}

.messages .message.new {
  transform: scale(0);
  transform-origin: 0 0;
  -webkit-animation: bounce 500ms linear both;
  animation: bounce 500ms linear both;
}

.messages .message.loading::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--secondaryColor);
  z-index: 2;
  margin-top: 4px;
  -webkit-animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
  animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
  border: none;
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

.messages .message.loading span {
  display: block;
  font-size: 0;
  width: 20px;
  height: 10px;
  position: relative;
}

.messages .message.loading span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--secondaryColor);
  z-index: 2;
  margin-top: 4px;
  -webkit-animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
  animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
  margin-left: -7px;
}

.messages .message.loading span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--secondaryColor);
  z-index: 2;
  margin-top: 4px;
  -webkit-animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
  animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
  margin-left: 7px;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

/*--------------------
Message Box
--------------------*/
.message-box {
  flex: 0 1 40px;
  width: 100%;
  background: rgba(255, 255, 255, 0.3);
  padding: 10px;
  position: relative;
}

.message-box .message-input {
  background: none;
  border: none;
  outline: none !important;
  resize: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  height: 17px;
  margin: 0;
  padding-right: 20px;
  width: 95%;
}

.message-box textarea:focus:-webkit-placeholder {
  color: transparent;
}

.message-box .message-submit {
  position: absolute;
  z-index: 1;
  top: 9px;
  right: 10px;
  color: #fff;
  border: none;
  background: #248a52;
  font-size: 10px;
  text-transform: uppercase;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 10px;
  outline: none !important;
  transition: background 0.2s ease;
}

.message-box .message-submit:hover {
  background: #1d7745;
}

/*--------------------
Custom Srollbar
--------------------*/
.mCSB_scrollTools {
  margin: 1px -3px 1px 0;
  opacity: 0;
}

.mCSB_inside>.mCSB_container {
  margin-right: 0px;
  padding: 0 10px; 
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: rgba(255, 255, 255, 0.5) !important;
}

/*--------------------
Bounce
--------------------*/
@-webkit-keyframes bounce {
  0% {
    transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  4.7% {
    transform: matrix3d(0.45, 0, 0, 0, 0, 0.45, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  9.41% {
    transform: matrix3d(0.883, 0, 0, 0, 0, 0.883, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  14.11% {
    transform: matrix3d(1.141, 0, 0, 0, 0, 1.141, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  18.72% {
    transform: matrix3d(1.212, 0, 0, 0, 0, 1.212, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  24.32% {
    transform: matrix3d(1.151, 0, 0, 0, 0, 1.151, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  29.93% {
    transform: matrix3d(1.048, 0, 0, 0, 0, 1.048, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  35.54% {
    transform: matrix3d(0.979, 0, 0, 0, 0, 0.979, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  41.04% {
    transform: matrix3d(0.961, 0, 0, 0, 0, 0.961, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  52.15% {
    transform: matrix3d(0.991, 0, 0, 0, 0, 0.991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  63.26% {
    transform: matrix3d(1.007, 0, 0, 0, 0, 1.007, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  85.49% {
    transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  100% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}

@keyframes bounce {
  0% {
    transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  4.7% {
    transform: matrix3d(0.45, 0, 0, 0, 0, 0.45, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  9.41% {
    transform: matrix3d(0.883, 0, 0, 0, 0, 0.883, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  14.11% {
    transform: matrix3d(1.141, 0, 0, 0, 0, 1.141, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  18.72% {
    transform: matrix3d(1.212, 0, 0, 0, 0, 1.212, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  24.32% {
    transform: matrix3d(1.151, 0, 0, 0, 0, 1.151, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  29.93% {
    transform: matrix3d(1.048, 0, 0, 0, 0, 1.048, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  35.54% {
    transform: matrix3d(0.979, 0, 0, 0, 0, 0.979, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  41.04% {
    transform: matrix3d(0.961, 0, 0, 0, 0, 0.961, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  52.15% {
    transform: matrix3d(0.991, 0, 0, 0, 0, 0.991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  63.26% {
    transform: matrix3d(1.007, 0, 0, 0, 0, 1.007, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  85.49% {
    transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }

  100% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}

@-webkit-keyframes ball {
  from {
    transform: translateY(0) scaleY(0.8);
  }

  to {
    transform: translateY(-10px);
  }
}

@keyframes ball {
  from {
    transform: translateY(0) scaleY(0.8);
  }

  to {
    transform: translateY(-10px);
  }
}
.radio-options{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: 90%;
  border-radius: 10px !important;
  row-gap: 10px;
}
.radio-options input{
  display: none;
}
.residenciaLabel, .facturacionLabel{
  width: 100%;
  margin-bottom: 5px;
}
.radio-options label{
  padding: 10px 8px;
  width: 28%;
  min-width: 80px;
  text-align: center;
  line-height: 1.3;
  color: #fff;
  font-weight: 300;
  font-size: 18px;
  background-color: var(--secondaryColor);
  border-radius: 15px;
}
.compania{
  display: flex;
    align-items: center;
    justify-content: center;
  width: 125px !important;
  border: 1px solid var(--secondaryColor);
    height: 65px;
    margin: 0 1px;
    background-color: #fff !important;
    color: var(--secondaryColor) !important;
    transition: all 0.3s ease;
}
.compania img{
  width: 100%;
}
.compania:hover{
  background-color: var(--secondaryColor) !important;
  color: #fff !important;
}
.compania:hover img{
  filter: brightness(0) invert(1);
}
/*Term animation */
.termContainer {
  width: 100%;
  font-size: 12px;
  color: var(--primaryColor);
  margin-top: 5px;
  cursor: pointer;
  padding: 0;
}
.termContainer a {
  color: var(--primaryColor);
}
  
.termContainer a:hover {
  color: var(--primaryColor) !important;
}
 
.faux-checkbox::before {
    content: 'x';
    background-color: #fc0328;
    display: inline-flex;
    height: 20px;
    width: 20px;
    border: 1px solid #000;
    border-radius: 2px;
    margin-right: 5px;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

.faux-checkbox.checked::before {
    content: "✓";
    background-color: #02cc71;
}

#mariaTop{
    margin-top: 25px;
} 

/* funnel */
.rp-link-click {
  color: #fff;
}
.rp-link-click:hover {
  color: #e5721d;
}
.disc {
  margin: 30px auto 0 auto;
  font-size: 7px;
  max-width: 70%;
  line-height: 1.1;
  font-weight: 300;
}

.disc #politica-link{
    color: black;
    text-decoration: none;
}


.scale {
  animation: scale 1s ease-out forwards;
}
@keyframes scale {
    0% {
        transform: scale(1.0);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1.0);
    }
}
.funnel {
    position: fixed;
    bottom: 0;
    z-index: 1000;
    width: 100%;
    min-height: 100vh;
    background: url('/img/chatbot/ty-bg.jpg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.over {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  justify-content: center;
  align-items: center;
}
#funnelform {
  background: #fff;
  border-radius: 30px;
  padding: 60px 40px;
  width: 650px;
  margin: 0 auto;
  position: relative;
  z-index: 99;
  text-align: center;
  box-shadow: 0 2px 10px rgba(211, 17, 35, 0.2);
}
#funnelform h3 {
  color: #000;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 20px;
}
#funnelform sub{
    bottom: 3px;
    font-size: 14px;
}
#funnelform h3 span, #funnelform sub span {
  background-color: #d31123;
  font-weight: 700;
  background-image: linear-gradient(45deg, #d31123, #f15f22, #e5721d);
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}
.rep-logo img {
  width: 310px;
  margin: 20px auto;
}
.optins-row {
  margin-top: 20px;
}
#funnelform .radio-buton input[type="radio"] {
  position: absolute; 
  opacity: 0; 
  width: 0;
  height: 0;
}
#funnelform  .radio-buton label {
  background: linear-gradient(45deg, #d31123, #f15f22, #e5721d);
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 90%;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}
#funnelform .nointeresa label {
  background: linear-gradient(45deg, #f0f1fc, #f0f1fc, #f0f1fc);
  color: rgba(0, 0, 0, 0.5);
}
#funnelform  .radio-buton label:hover,#funnelform  .radio-buton input[type="radio"]:checked + label {
  /*background: linear-gradient(360deg, #d31123, #f15f22, #e5721d);
  color: #ffffff;*/
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  transform: scale(1.1);
}
.nointeresa label:hover{
  background: linear-gradient(45deg, #f0f1fc, #f0f1fc, #f0f1fc);
  color: rgba(0, 0, 0, 1);
  transform: scale(1.03);
  box-shadow: none;
}

/* Thank you page */
.ty-bg {
  background: rgb(255,255,255), url('/img/chatbot/ty-bg.png'); 
}
.ty-header {
  background: url('/img/chatbot/back.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  padding: 80px 0 160px 0;
}
.ty-header-content {
  text-align: center;
}
.ty-header-content img {
  width: 350px;
}
.ty-message-box h3 {
  font-size: 35px;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
}
.ty-message-box p {
  font-size: 18px;
  color: #fff;
  max-width: 90%;
  line-height: 1.2;
  margin: 10px auto 0 auto;
}
/* section1 thank you page */
.section1-ty {
  text-align: center;
  padding: 0 0 60px 0; 
} 
.sec1-ty-txt {
  margin-bottom: 20px;
}
.sec1-ty-txt h3 {
  font-size: 35px;
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  animation: scaleUpDown 2s ease;
}
@keyframes scaleUpDown {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
}
.sec1-ty-txt h3 span {
  font-weight: 700;
  background: var(--primaryColor);
  background-image: linear-gradient(45deg, #fff, #fff);
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; 
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}
.sec1-ty-txt. p {
  font-size: 16px;
  color: #000;
  line-height: 1.1;
}
.offer-box {
  margin: 0 auto 20px auto;
  background: #fff;
  border: 1px solid var(--primaryColor);
  border-radius: 20px;
  padding: 40px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(211, 17, 35, 0.2);
  border-left: 10px solid var(--primaryColor);
}
.offer-box:hover {
  transform: scale(1.02);
  border-left: 10px solid var(--primaryColor);
  box-shadow: 0 2px 10px rgba(241, 95, 34, 0.2);
}
.offer-box img {
  width: 200px;
}
.offer-txt {
  text-align: left;
  width: 55%;
  margin: 0 30px;
}
.offer-txt p {
  color: #000;
  font-size: 18px;
  line-height: 1.2;
  margin: 0; 
}
.ty-pg-cta {
  margin: 0 auto;
  width: 200px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: var(--primaryColor);
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}
.ty-pg-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primaryColor), var(--primaryColor), var(--primaryColor));
  z-index: -1;
  transition: opacity 0.3s ease;
  border-radius: 10px;
}
.ty-pg-cta:hover::before {
  opacity: 0; 
}
.ty-pg-cta:hover {
  background-color: var(--secondaryColor);
  color: #ffffff;
}

@media (max-width: 992px){
  .nav {
      min-height: 80px;
    }
  
    .nav .position-absolute {
      left: 50%;
      transform: translate(-50%, -5%);
      width: auto;
    }
}
@media only screen and (max-width: 600px) {
  .chat {
    width: 90%;
    height: 90vh;
    max-height: 100%;
    font-size: 16px;
    margin-top: 0;
  }
  #mariaTop{
    display: none;
  }
  .message-input {
    width: 80%;
  }
  .radio-options label{
    width: 100%;
  } 
  .compania {
    width: 125px !important;
    height: 75px;
    font-size: 17px;
    padding: 0;
  }
  .message:first-of-type{
    margin-top: 50px;
  }
   #contactform, #funnelform {
    margin: 0 auto;
    width: 100%;
  }
  #funnelform h3 {
    max-width: 100%;
  }
  .optins-row{
      gap: 20px;
  }
}
@media (max-width: 450px){
  .messages .message .avatar{
  top: -42px;
  width: 40px;
  left: 0;
  height: 40px;
  } 
  #funnelform sub{
      font-size: 12px;
  }
  .rep-logo img{
      width: 100%;
  }
  .messages .message.new{
      border-radius: 0px 10px 10px 10px;
  }
  .messages .messages-content{
      padding-bottom: 40px;
  }
  .messages .message.message-personal{
      margin-bottom: 0;
  }
  .radio-options {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-evenly;
      width: 100%; 
      margin-left: 0 !important;
    } 
  .nav .position-absolute img{
    height: 8vh;
    object-fit: contain;
  }
  .chat{
    height: 93vh; 
  }
  .nav{
    min-height: 10vh;
  }
  .nav .position-absolute{ 
    left: 50%;
      transform: translate(-50%, 0%);
      width: auto;
  }
    .chat {
      width: 100%; 
    }
  .messages .message {
    margin-left: 0;
  }
    #chatbot-form{
      padding: 0;
    } 
}
@media (max-width: 330px){
  .messages .message{
    margin-left: -5px;
  }
    #funnelform {
        padding: 40px 20px;
    }
} 

@media (max-width: 540px) {
    .offer-box {
        display: flex;
        flex-direction: column;
    }
    
    .offer-txt {
        text-align: left;
        width: 85%;
        margin: 5px 0px 0px 38px;
    }
    
    .img-deudateca {
        margin: 0px 0px 15px 0px;
    }
    
    .offer-box.deudateca {
        padding: 30px 25px;
    }
    
    .seguro-dentals {
        margin: 10px 0px 0px 38px;
    }
    
    .ty-pg-cta {
        margin: 17px 0px 0px 0px;
    }
}