.btn-whatsapp {
    position: fixed;
    z-index: 700;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
}
.btn-whatsapp:hover, .btn-whatsapp:focus {
  opacity: .9;
}

.btn-whatsapp-suc{
  font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #000;
    padding: 8px 0 8px 44px;
    line-height: 16px;
    display: block;
    background: #d6f7dc url(../img/pngegg.png) 12px 8px no-repeat;
    margin: 10px 0;
    border-radius: 30px;
}
.btn-whatsapp-suc:hover, .btn-whatsapp-suc:focus{
  text-decoration: none;
  color: #fff;
  background: #1cd071 url(../img/pngegg2.png) 12px 8px no-repeat;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}
.modal.show .modal-dialog {
    -webkit-transform: none;
    transform: none;
}
.modal-lg, .modal-xl {
    max-width: 800px;
    margin: 1.75rem auto;
}
.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: .3rem;
    outline: 0;
}
.modal-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
}

.modal-title {
    margin-bottom: 0;
    line-height: 30px;
    font-size: 18px;
}
.modal-header .close {
    padding: 18px;
    margin: -16px -16px -16px auto;
}
.modal-header .close span{
  font-size: 26px;
  font-weight: 700;
  opacity: 1;
}
.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 15px;
}
@media (min-width: 480px){
  .modal-dialog {
      max-width: 480px;      
  }
}
@media (min-width: 576px){
  .modal-dialog {
      max-width: 500px;      
  }
}
@media (min-width: 768px){
  .modal-dialog {
      max-width: 650px;      
  }
}
@media (min-width: 992px){
  .modal-lg, .modal-xl {
      max-width: 800px;
  }  
}