.whats-modal *{
    box-sizing: border-box;
    /* transition: none; */
}

.whats-modal.open{
    visibility: visible;
    opacity: 1;
    top: 50%;
}

.whats-modal{
    width: 95%;
    max-width: 400px;
    background-color: #fff;
    border-radius: 6px;
    position: fixed;
    z-index: 999;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;

    box-shadow: 0 0 0 999999px rgba(0,0,0,0.7);
    visibility: collapse;
    opacity: 0;

    transition: box-shadow 0.1s, opacity 0.3s, top 0.5s;
}

/* .whats-modal::after{
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
} */

.whats-modal__title{
  margin: 0 0 10px 0;
  font-size: 24px;
  line-height: 36px;
  color: #09173c;
  font-weight: bold;
  font-family: "Poppins", Sans-serif;
  display: flex;
  gap: 10px;
}

.whats-modal__icon{
  align-items: center;
  background: #009e3f;
  display: inline-flex;
  width: 36px;
  height: 36px;
  margin: 0 3px 0 0;
  font-size: 16px;
  justify-content: center;
  line-height: 36px;
  color: #ffffff;
  text-align: center;
  font-weight: normal;
  border-radius: 18px;
  vertical-align: middle;
}

.whats-modal__svg{
    width: 16px;
}

.whats-modal p{
  margin: 0 0 15px 0;
  font-size: 14px;
  line-height: 18px;
  font-weight: bold;
  font-family: "Poppins", Sans-serif;
}

.whats-modal .form-control{
    position: relative;
    width: 100%;
    margin: 0 0 10px 0;
}

.whats-modal .form-control input,
.whats-modal .form-control select{
    width: 100%;
    border: none;
    background: #e8e8e8;
    font-size: 16px;
    border-radius: 5px;
    color: #09173c;
}
.whats-modal .form-control input::placeholder{
    color: #09173c;
}
.whats-modal .form-control input::-moz-placeholder{
    color: #09173c;
}
.whats-modal .form-control input:-ms-input-placeholder{
    color: #09173c;
}
.whats-modal .form-control input:-moz-placeholder{
    color: #09173c;
}
.whats-modal .form-control input::-webkit-input-placeholder{
    color: #09173c;
}

.form-whats__icon{
    width: 30px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 10px;
    z-index: 1;

    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-whats__svg{
    width: 60%;
}

.modal-button{
    text-transform: uppercase;
    background: #00b047;
    padding: 5px 15px;
    width: 100%;
    font-size: 17px;
    line-height: 21px;
    color: #ffffff;
    font-weight: bold;
    letter-spacing: -0.5px;
    text-align: center;
    border: none;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-button__icon{
    background: #009e3f;
    padding: 10px;
    margin: 0 0 0 10px;
    border-radius: 5px;
    width: 40px;
}

.modal-button__svg{
    width: 100%;
}

button.close_modal{
    background: #971515;
    width: 30px;
    height: 30px;
    font-size: 20px;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    position: absolute;
    top: -15px;
    right: -15px;
    z-index: 10;
    border-radius: 15px;
    border: none;
    cursor: pointer;
}

.float-whats{
    background-color: #75b73b;
    bottom: 20px;
    border-radius: 25px;
    box-shadow: 0 1px 6px rgba(0,0,0,.06),0 2px 32px rgba(0,0,0,.16);
    color: #fff;
    cursor: pointer;
    font-size: 30px;
    height: 50px;
    position: fixed;
    right: 20px;
    text-indent: -99999px;
    transition: 0.2s ease-in-out;
    width: 50px;
    z-index: 9901;
    
}
.float-whats::before{
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    content:'';
    left: 50%;
    height: 50%;
    text-indent: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 50%;
}
.float-whats:hover{
    color: #fff;
    transform: scale(1.2);
}
@media screen and (max-width: 767px){
    .float-whats{
        bottom: 10px;
        font-size: 20px;
        height: 40px;
        padding: 10px;
        right: 10px;
        width: 40px;
    }
}