@import url(https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);

html {
  scroll-behavior: smooth;
}
/* CLASES POR DEFECTO PARA UTILIZAR */

.justify-left {
  justify-content: start !important;
}

.justify-right {
  justify-content: end !important;
}

.justify-center {
  justify-content: center !important;
}

.align-left {
  align-items: flex-start !important;
}

.align-right {
  align-items: flex-end !important;
}

.align-center {
  align-items: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: end !important;
}

.text-center {
  text-align: center !important;
}

/* CSS */

* {
  margin: 0;
  padding: 0;
  font-family: "Poppins";
}

:root {
  --azul-osc: #6faad2;
}

body {
  max-width: 100%;
  overflow-x: hidden;
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
}

.btn {
  cursor: pointer;
  transition: all 400ms;
}
.btn:hover {
  transform: scale(1.05);
}

.btn.disabled {
  pointer-events: none;
  opacity: 0.8;
}

button:hover,
.text-hero a:hover,
.characteristics-amenities-info > a:hover,
.investing-florida a:hover {
  filter: brightness(0.9);
}

.navbar {
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  border-bottom: 1px solid #000;
  padding: 10px 25px;
  flex-direction: row;
}
#logo {
  display: flex;
}

.logo-nav {
  width: 120px;
  height: auto;
}
.navbar > div {
  display: flex;
  align-items: center;
  gap: 64px;
}

.navbar > div > div,
.navbar > div > a {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.navbar > div > a img {
  filter: invert(1);
}

.navbar > div > a:hover {
  transform: scale(1.04);
}

.navbar > div > a.mail-nav span,
.navbar > div > a.tel-nav span {
  color: black;
  text-decoration: underline;
  font-weight: 300;
}

.navbar > div > div.language-nav span {
  color: black;
  font-weight: 400;
}

.navbar > div > div.language-nav {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.navbar > div > div.language-nav .es-nav,
.navbar > div > div.language-nav .en-nav {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.navbar > div > div.language-nav .es-nav img,
.navbar > div > div.language-nav .en-nav img {
  width: 20px;
  height: auto;
}

.navbar > div > div.language-nav .es-nav {
  display: none;
  position: absolute;
  right: 0;
  top: 32px;
  padding: 8px;
  background-color: white;
  border: 1px solid #2c2a2b;
  opacity: 0;
  transition: all 500ms;
}

.navbar > div > div.language-nav .es-nav.on {
  display: flex;
  opacity: 1;
}

.navbar > div > div.language-nav .es-nav span {
  color: #000000;
}

.hero {
  position: relative;
  max-width: 100%;
  display: flex;
  margin: 60px 0 48px;
}
  .hero::before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.75);
    content: "";
  }

.hero picture {
  width: 100%;
}

.hero img {
  width: 100%;
  min-height: 512px;
  display: flex;
}

.text-hero {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.text-hero h1 {
  font-size: 94px;
  font-weight: 600;
  color: #917d4e;
  white-space: nowrap;
  line-height: 0.8;
  text-shadow: 2px 2px 5px rgb(255 255 255 / 50%);
}

.text-hero div {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.text-hero div a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.text-hero div a img {
  width: 40px;
  min-height: auto;
  /*filter: invert(1);*/
}

.text-hero div a span {
  font-size: 30px;
  text-decoration: none;
  color: #917d4e;
  font-weight: bold;
  margin-left: 15px;
}

.form-hero {
  position: absolute;
  top: 2px;
  right: 32px;
  display: flex;
  flex-direction: column;
  max-width: 352px;
  width: 100%;
  gap: 12px;
  width: 30%;
  border: 1px solid #917d4e;
  padding: 20px;
  border-radius: 10px;
  background-color: rgb(245 245 245 / 70%);
}

.form-hero .form-control,
.form-hero input,
.form-hero textarea {
  background-color: rgba(255, 255, 255, 0.5);
  border: 0.2px solid #2c2a2b;
  padding: 8px 10px;
  outline: 0 !important;
}
.form-hero .form-control:focus,
.form-hero input:focus,
.form-hero textarea:focus {
  background-color: rgba(255, 255, 255, 0.9);
}

.footer-container iframe {
  width: 50%;
}

.footer-container .contact-info {
  order: 2;
}

@media (min-width: 1024px) {
  .form-hero {
    transform: scale(0.9);
  }
}

@media (max-width: 992px) {
  .footer-container iframe {
    width: 100%;
  }
}

.form-hero textarea {
  min-height: 100px;
}

.form-hero textarea::placeholder {
  color: #000000;
}

.form-hero button,
.form-hero .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background-color: black;
  border: 0;
}

.terms-conditions {
  display: flex;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 10px;
  border: 0.2px solid #2c2a2b;
}
.terms-conditions label {
  font-size: 10px;
  line-height: 120%;
  margin-left: 10px;
  color: #000;
  font-weight: normal;
}

.the-standard,
.characteristics-amenities,
.residence-photos,
.credits,
.neighborhood-map,
.investing-florida {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  margin-bottom: 56px;
}

.the-standard-title,
.characteristics-amenities-title,
.floor-plan-prices-title,
.neighborhood-map-title,
.investing-florida-title {
  display: flex;
  padding-bottom: 12px;
  border-bottom: 1px solid black;
  margin-bottom: 24px;
}

.floor-plan-prices-title {
  margin: 0 20px 24px;
}

.neighborhood-map-title {
  margin: 0 20px 40px;
}

.the-standard-title h2,
.characteristics-amenities-title h2,
.floor-plan-prices-title h2,
.neighborhood-map-title h2,
.investing-florida-title h2 {
  font-size: 32px;
  font-weight: 500;
  color: #000000;
}

.the-standard-text {
  display: flex;
  gap: 40px;
  align-items: flex-end;
}

.the-standard-text picture {
  width: 50%;
}

.the-standard-text p {
  width: 50%;
  font-size: 20px;
}

.flexible-rental {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 56px;
}

.flexible-rental img {
  display: flex;
  width: 100%;
  max-height: 512px;
  object-fit: cover;
}

.flexible-rental-text {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--azul-osc);
  padding: 36px 0;
}

.flexible-rental-text h3 {
  max-width: 800px;
  font-size: 36px;
  font-weight: 600;
  color: white;
  text-align: center;
}

.residences-features {
  max-width: 100%;
  display: flex;
  flex-direction: row;
  margin-bottom: 56px;
}

.residences-features picture {
  display: flex;
  width: 70%;
  max-height: 400px;
}

.residences-features img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.residences-features-text {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--azul-osc);
  padding: 16px 32px;
  width: 30%;
}

.residences-features-text p {
  font-size: 20px;
  color: white;
}

.characteristics-amenities {
  margin-bottom: 64px;
}

.characteristics-amenities-info {
  display: flex;
  flex-direction: column;
}

.characteristics-amenities-info h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 64px;
}

.characteristics-amenities-info > div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 56px;
}

.characteristics-amenities-info > div span {
  width: calc(50% - 50px);
  font-size: 20px;
  padding-bottom: 40px;
  margin-bottom: 24px;
  border-bottom: 1px solid #9b999a;
}

.characteristics-amenities-info > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 236px;
  height: 44px;
  font-size: 20px;
  font-weight: 600;
  color: white;
  background-color: var(--azul-osc);
  border: 0;
  margin: 0 auto;
  text-decoration: none;
}

.residence-photos {
  padding: 0;
}

.residence-photos {
  padding: 0;
}

.residence-photos-slider {
  display: flex;
  margin-bottom: 32px;
}

.residence-photos-slider img {
  width: 100%;
  display: flex;
  height: 300px;
  object-fit: cover;
}

.residence-photos-last-img {
  width: 100%;
}

.floor-plan-prices {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 36px;
}

.floor-plan-prices-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 64px 44px 24px;
  background-color: #2c2a2b;
  color: white;
}

.floor-plan-prices-info > div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 24px;
}

.floor-plan-prices > div p {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  padding: 36px 20px;
  border: 3px solid white;
  text-align: center;
}

.credits {
  position: relative;
  padding: 0;
}

.credits img {
  min-height: 512px;
  object-fit: cover;
}

.credits-text {
  position: absolute;
  width: calc(100% - 48px);
  height: calc(100% - 48px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.credits-text div {
  display: flex;
  flex-direction: column;
  text-align: end;
}

.credits-text div h5 {
  font-size: 24px;
  font-weight: 600;
  color: white;
}

.credits-text div span {
  font-size: 24px;
  color: white;
}

.neighborhood-map {
  padding: 0;
  margin-bottom: 72px;
}

.neighborhood-map-images {
  display: flex;
  gap: 16px;
  margin-bottom: 72px;
}

.neighborhood-map-images img,
.neighborhood-map-images picture {
  display: flex;
  width: 100%;
}

.neighborhood-map-location {
  position: relative;
  margin-bottom: 128px;
}

.neighborhood-map-location-container {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.neighborhood-map-location-info {
  width: 33%;
  aspect-ratio: 1 / 1;
  background-color: var(--azul-osc);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.neighborhood-map-location-info {
  font-size: 32px;
  font-weight: 600;
  color: white;
}

.neighborhood-map-location-img {
  width: 50%;
  height: auto;
}

.neighborhood-map-location > picture img {
  display: flex;
  width: 100%;
  min-height: 564px;
}

.investing-florida-images {
  max-width: 100%;
  display: flex;
  margin-bottom: 32px;
}

.investing-florida-images img {
  width: 100%;
  display: flex;
  height: 200px;
  object-fit: cover;
}

.investing-florida a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 318px;
  height: 44px;
  font-size: 20px;
  font-weight: 600;
  color: white;
  background-color: black;
  border: 0;
  margin: 0 auto;
  text-decoration: none;
}

footer {
  max-width: 100%;
  background-color: black;
  padding-top: 40px;
}

footer h2 {
  font-size: 40px;
  color: white;
  font-weight: bold;
  text-align: center;
  margin-bottom: 48px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px 40px;
}

.contact-form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 50%;
}

.contact-form div:nth-child(1) {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form div:nth-child(1) {
  width: 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form div:nth-child(1) input {
  height: 36px;
  padding: 0 12px;
  background-color: #2c2a2b;
  border: 0;
  outline: 0;
  color: white;
}

.contact-form div:nth-child(1) input::placeholder {
  color: white;
}

.contact-form div:nth-child(2) {
  width: 57%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form div:nth-child(2) textarea {
  height: 76px;
  padding: 6px;
  background-color: #2c2a2b;
  border: 0;
  outline: 0;
  color: white;
}

.contact-form div:nth-child(2) textarea::placeholder {
  color: white;
}

.contact-form div:nth-child(2) button {
  height: 36px;
  width: 100%;
  background-color: #6faad2;
  border: 0;
  font-size: 16px;
  color: white;
  font-weight: 600;
}

.contact-form div:nth-child(2) button.button-product {
  background-color: #6faad2;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info .tel-footer,
.contact-info .location-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-info .tel-footer span,
.contact-info .location-footer span {
  font-size: 12px;
  color: white;
  text-decoration: underline;
  font-weight: 300;
}

.contact-info .social-footer {
  display: flex;
  align-items: center;
  gap: 36px;
}

.contact-info .social-footer a {
  display: flex;
  align-items: center;
}

.footer-end {
  max-width: 100%;
  background-color: #171719;
  padding: 20px 40px;
}

.the-standard-text img {
  width: 100%;
  height: auto;
}

.terms-conditions {
  display: flex;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 10px;
  border: 0.2px solid #2c2a2b;
}
.terms-conditions label {
  font-size: 10px;
  line-height: 120%;
  margin-left: 10px;
  color: #000;
  font-weight: normal;
}

.terms-conditions-footer label {
  font-size: 10px;
  line-height: 120%;
  margin-left: 10px;
  color: #fff;
  font-weight: normal;
}

.footer-end {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #fff;
}
.footer-end p {
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-end p small {
  font-size: 8px;
}
.footer-end p img {
  max-height: 15px;
}

.terms-conditions-footer {
  display: flex;
  width: 100%;
}

@media (max-width: 1024px) {
  .navbar > div > a.mail-nav span,
  .navbar > div > a.tel-nav span {
    display: none;
  }

  .navbar > div > a.mail-nav img,
  .navbar > div > a.tel-nav img {
    height: 20px;
  }

  .hero {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .form-hero {
    position: static;
    max-width: none;
    width: calc(100% - 40px);
  }

  .hero img {
    width: 100%;
    display: flex;
    min-height: 400px;
    object-fit: cover;
  }

  .text-hero {
    width: 100%;
    top: 8%;
    left: auto;
    gap: 36px;
  }

  .text-hero h1 {
    font-size: 64px;
    text-align: center;
    white-space: initial;
    padding: 0 16px;
  }

  .text-hero div {
    align-items: center;
  }

  .the-standard-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .the-standard-text picture {
    width: 100%;
  }
  
  .the-standard-text p {
    width: 100%;
    font-size: 20px;
  }

  .the-standard-text img {
    display: flex;
    width: 100%;
  }

  .flexible-rental img {
    height: 300px;
    object-fit: cover;
  }

  .flexible-rental-text {
    padding: 36px 16px;
  }

  .flexible-rental-text h3 {
    font-size: 32px;
  }

  .floor-plan-prices-info {
    padding: 64px 20px 24px;
  }

  .floor-plan-prices-info > div {
    gap: 16px;
  }

  .neighborhood-map-images {
    display: flex;
    flex-direction: column;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    gap: 64px;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .slick-prev.slick-arrow {
    z-index: 10;
    transform: scale(2.4);
    left: 20px;
  }

  .slick-next.slick-arrow {
    z-index: 10;
    transform: scale(2.4);
    right: 20px;
  }

  .neighborhood-map-images img {
    display: flex;
    width: 100%;
  }

  .contact-form div:nth-child(1),
  .contact-form div:nth-child(2) {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .navbar > div {
    gap: 20px;
  }

  #logo img {
    height: 32px;
    width: auto;
  }

  .hero {
    margin-top: 52px;
  }

  .text-hero {
    gap: 36px;
  }

  .the-standard-title h2,
  .characteristics-amenities-title h2,
  .floor-plan-prices-title h2,
  .neighborhood-map-title h2,
  .investing-florida-title h2 {
    font-size: 24px;
    font-weight: 500;
    color: #000000;
  }

  .the-standard-text p {
    font-size: 16px;
  }

  .residences-features {
    flex-direction: column;
    max-width: 100%;
  }

  .residences-features picture {
    width: 100%;
  }

  .residences-features img {
    width: 100%;
    height: 300px;
  }

  .residences-features-text {
    width: auto;
    padding: 16px;
  }

  .residences-features-text p {
    font-size: 16px;
  }

  .characteristics-amenities {
    margin-bottom: 64px;
  }

  .characteristics-amenities-info {
    display: flex;
    flex-direction: column;
  }

  .characteristics-amenities-info h3 {
    font-size: 20px;
    margin-bottom: 32px;
  }

  .characteristics-amenities-info > div {
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;
  }

  .characteristics-amenities-info > div span {
    width: auto;
    font-size: 16px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #9b999a;
  }

  .residence-photos img {
    display: flex;
    height: 300px;
    object-fit: cover;
  }

  .residence-photos-last-img {
    object-position: right;
  }

  .floor-plan-prices-info > div {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
  }

  .floor-plan-prices > div p {
    width: auto;
  }

  .credits img {
    min-height: auto;
    height: 300px;
    object-fit: cover;
  }

  .neighborhood-map-location-container {
    width: auto;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    position: static;
    transform: translateY(0);
  }

  .neighborhood-map-location-info {
    width: calc(100% - 40px);
    aspect-ratio: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    padding: 24px 20px;
  }

  .neighborhood-map-location-img {
    width: 100%;
    min-height: 400px;
    height: auto;
  }

  .neighborhood-map-location-info span {
    font-size: 24px;
  }

  .neighborhood-map-location-info img {
    width: 24px;
    height: auto;
  }

  .neighborhood-map-location > picture {
    display: none;
    height: 300px;
    object-fit: cover;
    width: 100%;
  }

  .contact-form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 16px;
    max-width: 50%;
  }

  .contact-info .social-footer {
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-form div:nth-child(1) {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .contact-form div:nth-child(2) {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .contact-form {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .footer-end {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

@media (max-width: 464px) {
  .text-hero {
    top: 10%;
  }

  .text-hero h1 {
    font-size: 48px;
  }

  .text-hero div a span{
    font-size: 14px;
  }

  .flexible-rental-text h3 {
    font-size: 24px;
  }

  .credits-text div h5 {
    font-size: 20px;
  }

  .credits-text div span {
    font-size: 20px;
  }

  .investing-florida a {
    width: 100%;
    margin: 0;
    font-size: 16px;
  }
}

#whatsAppFixed {
  position: fixed;
  bottom: 25px;
  right: 10px;
  z-index: 10;
  transition: all 400ms;
}
#whatsAppFixed img {
  width: 75px;
}

#whatsAppFixed:hover {
  transform: scale(1.1);
}
.info-msg,
.success-msg,
.warning-msg,
.error-msg {
  padding: 10px;
  border-radius: 3px 3px 3px 3px;
  width: 100%;
  text-align: center;
  margin: 0;

  position: absolute;
  animation-duration: 9000ms;
  animation-timing-function: ease-out;
  animation-name: message;
  animation-iteration-count: 1;
}
.info-msg {
  color: #059;
  background-color: #bef;
}

.warning-msg {
  color: #9f6000;
  background-color: #feefb3;
}
.error-msg {
  color: #d8000c;
  background-color: #ffbaba;
}

@keyframes message {
  0% {
    opacity: 0;
    transform: translate(0, -100px);
    z-index: 2;
  }
  30% {
    opacity: 1;
    transform: translate(0);
  }
  90% {
    opacity: 1;
    transform: translate(0);
  }
  100% {
    opacity: 0;
    transform: translate(0, -100px);
    z-index: 2;
  }
}

.footer-container iframe {
  width: 50%;
}

.footer-container .contact-info {
  order: 2;
}

@media (min-width: 1024px) {
  .form-hero {
    transform: scale(0.9);
  }
}

@media (max-width: 992px) {
  .footer-container iframe {
    width: 100%;
  }
}


/* CSS Whatsapp Chat */
#whatsapp-chat {
    position: fixed;
    background: #fff;
    width: 350px;
    border-radius: 10px;
    box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
    bottom: 90px;
    right: 100px;
    overflow: hidden;
    z-index: 99;
    animation-name: showchat;
    animation-duration: 1s;
    transform: scale(1);
}

a.blantershow-chat {
    background: #009688;
    /*background: #fff;*/
    color: #FFF;
    position: fixed;
    display: flex;
    font-weight: 400;
    justify-content: space-between;
    z-index: 98;
    bottom: 25px;
    right: 30px;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
    text-decoration: none;
}

a.blantershow-chat svg {
    transform: scale(1.2);
    margin: 0 10px 0 0;
}

.header-chat {
    background: #095e54;
    color: #fff;
    padding: 20px;
}
.header-chat h3 {
    margin: 0 0 10px;
}
.header-chat p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}
.info-avatar {
    position: relative;
}
.info-avatar img {
    border-radius: 100%;
    width: 50px;
    float: left;
    margin: 0 10px 0 0;
}

.info-chat span {
    display: block;
}
#get-label,
span.chat-label {
    font-size: 12px;
    color: #888;
}
#get-nama,
span.chat-nama {
    margin: 5px 0 0;
    font-size: 15px;
    font-weight: 700;
    color: #222;
}
#get-label,
#get-nama {
    color: #fff;
}
span.my-number {
    display: none;
}
.blanter-msg {
    color: #444;
    padding: 20px;
    font-size: 12.5px;
    text-align: center;
    border-top: 1px solid #ddd;
}
textarea#chat-input {
    border: none;
    font-family: "Arial", sans-serif;
    width: 100%;
    height: 20px;
    outline: none;
    resize: none;
}
a#send-it {
    color: #555;
    width: 40px;
    margin: -5px 0 0 5px;
    font-weight: 700;
    padding: 8px;
    background: #eee;
    border-radius: 10px;
}
.first-msg {
    background: #f5f5f5;
    padding: 30px;
    text-align: center;
}
.first-msg span {
    background: #e2e2e2;
    color: #333;
    font-size: 14.2px;
    line-height: 1.7;
    border-radius: 10px;
    padding: 15px 20px;
    display: inline-block;
}
.start-chat .blanter-msg {
    display: flex;
}
#get-number {
    display: none;
}
a.close-chat {
    position: absolute;
    top: 5px;
    right: 15px;
    color: #fff;
    font-size: 30px;
}
@keyframes showhide {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
}
@keyframes showchat {
    from {
        transform: scale(0);
        opacity: 0;
    }
}
@media screen and (max-width: 480px) {
    #whatsapp-chat {
        width: auto;
        left: 5%;
        right: 5%;
        font-size: 80%;
    }
}
.hide {
    display: none;
    animation-name: showhide;
    animation-duration: 1.5s;
    transform: scale(1);
    opacity: 1;
}
.show {
    display: block;
    animation-name: showhide;
    animation-duration: 1.5s;
    transform: scale(1);
    opacity: 1;
}
