.btn-whatsapp {
    display: flex;
    justify-content: center;
    align-items: center;
    /* // padding: 0.8rem; */
    box-sizing: border-box;
    /* // border-radius: 50%; */
    /* // background: linear-gradient(to bottom, #0dc143 0%, #099c35 100%); */
    cursor: pointer;
}

.header__phone.btn-whatsapp img {
    margin-right: 0.5rem;
    max-width: 1.25rem;
}

.btn-whatsapp.mobile {
    display: none;
}

.btn-whatsapp img {
    max-width: 100%;
}

@media(min-width: 768px) {
    .btn-whatsapp {
        bottom: 15px;
    }
}

.modal-whatsapp {
    display: none;
    transition: all 0.3s ease-in-out;
}

.modal-whatsapp .modal-body {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-whatsapp .modal-body #form-whatsapp {
    width: 100%;
}

.modal-whatsapp.show {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
}

.modal-whatsapp .row, .modal-whatsapp .col-12 {
    width: 100vw;
    height: 100vw;
}

.modal-whatsapp-wrapper {
    position: absolute;
    width: 400px;
    background: #fff;
    border-radius: 5px;
    z-index: 99999999;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

.modal-header {
    position: relative;
    background: #0dc143;
    padding: 1.5rem;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    width: 100%;
}

.modal-header h3 {
    margin: 0;
    text-align: center;
    color: #fff;
    font-weight: 400;
    font-family: Solomon Sans Normal, arial!important
}

.modal-header h3 span {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.7rem;
}

.modal-close {
    cursor: pointer;
    position: absolute;
    bottom: 80%;
    right: -15px;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-whatsapp .form-group .form-control {
    font: .75em 'Open Sans', sans-serif;
    width: 100%;
    /* border-radius: 4px; */
    padding: 15px;
    background-color: #fff;
    color: #4D4D4D;
    transition: All .3s ease-in-out;
    height: 50px;
    border: none;
    border-bottom: 1px solid #3f464c;
    outline: 0;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.modal-whatsapp .form-group .form-control.error {
    color: red;
    /* margin-top: .4rem; */
    border-color: red;
}

.modal-body button {
    background: #0dc143;
    cursor: pointer;
    color: #fff;
    border: none;
    width: 100%;
    padding: .9rem 1.5rem;
    margin-top: 1rem;
    border-radius: 5px;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
}

.info.wpp {
    display: block!important;
    background: url(../images/svg/whatsapp.svg) left center no-repeat;
    background-size: contain;
}

@media(max-width: 767px) {
    .modal-whatsapp-wrapper {
        width: 300px;
    }
    .btn-whatsapp.mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0.8rem;
        box-sizing: border-box;
        height: 60px;
        width: 60px;
        border-radius: 50%;
        background: linear-gradient(to bottom, #0dc143 0%, #099c35 100%);
        cursor: pointer;
        position: fixed;
        bottom: 15px;
        left: 15px;
        z-index: 999;
    }
    .info.wpp {
        display: none !important;
    }
}