/* Add styles to the form container */
.form-container {
  max-width: 300px;
  padding: 20px 20px 10px 20px;
  background-color: ghostwhite;
  text-align: left !important;
}

/* Full-width textarea */
.form-container textarea {
  width: 100%;
  margin: 5px 0 10px 0;
  min-height: 100px;
}

/* When the textarea gets focus, do something */
.form-container textarea:focus {
  background-color: #ddd;
  outline: none;
}

/* Set a style for the submit/login button */
.form-container .btn {
  background-color: #04AA6D;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom:10px;
  opacity: 1;
  font-size: large;
}

.btnClose {
  color:#666060;
  padding: 20px 20px 0px 0px;
  cursor: pointer;
  width: 100%;
  margin-bottom:10px;
  text-decoration:none;
  display: flex;
  justify-content: flex-start;
}

.fab3{
  padding: 5px;
  border-radius: 3px;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
  background-color: red;
  cursor: pointer;
}

/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
  opacity: 1;
}
.form-control{
  padding: 5px;
  margin-top: 3px;
  width: 100%;
}
/*headings*/
.fs-title {
  font-size: 15px;
  text-transform: uppercase;
  color: #2C3E50;
  margin-bottom: 10px;
}
.fs-subtitle {
  font-weight: normal;
  font-size: 12px;
  color: #959595;
  margin-bottom: 20px;
}
.open-button-whats {
  background-color: #166e09;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  opacity: 1;
  position: fixed;
  bottom: 23px;
  right: 28px;
  width: 230px;
  font-size: 16px;
  font-weight: bold;
  z-index: 9999;
  border-radius: 30px;
}

.open-button-whats i{
    font-size: 25px;
    vertical-align: middle;
    margin-right: 8px;
}

/* The popup chat - hidden by default */
.form-popup {
  display: none;
  position: fixed;
  bottom: 0;
  right: 15px;
  border: 3px solid #f1f1f1;
  z-index: 9999;
}
.fa,.fas,.far,.fal,.fab{
    -moz-osx-font-smoothing:grayscale;
    -webkit-font-smoothing:antialiased;
    display:inline-block;
    font-style:normal;
    font-variant:normal;
    text-rendering:auto;
    line-height:1
}
.fab{
    font-family:'Font Awesome 5 Brands'
}
.gerar-rota{
  text-decoration:none;
  text-transform: uppercase;
  color: #2ac713;
}

.popup {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}

.popup-content {
  background-color: white;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 300px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.descricao-vermelha {
  color: red; /* Texto vermelho */
  font-size: 0.9em;
  margin-top: 0.5em;
}