.modal-container-wp {
    font-family: "Open Sans",sans-serif;
    background-color: rgba(0, 0, 0, 0.4);
    position: fixed;
    padding: 25px;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    display: none;
    pointer-events: none;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: -1;
}

.modal-container-wp.show {
    pointer-events: auto;
    opacity: 1;
    z-index: 3000;
    display: block;
}

.modal-fade {
    transition: opacity .15s linear;
}

.modal-container-wp .modal-fade {
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out,-webkit-transform .3s ease-out;
    -webkit-transform: translate(0,-50px);
    transform: translate(0,-50px);
}

.modal-dialog-wp {
    position: relative;
    top: calc(100% - 21.5rem);
    left: calc(100% - 29.5rem);
    max-width: 385px;
}

.modal-content-wp {
    background: white;
    height: 300px;
    width: 433px;
    border-radius: 8px;
}

.modal-wp-header {
    height: 97px;
    display: flex;
    justify-content: center;
    gap: 2rem;
    background: #0cbc47;
    align-items: center
}

.container-wp-link {
    display: flex;
    justify-content: space-around !important;
    flex-direction: row;
    align-items: center;
    gap: 7rem !important;
}

.txt-wp-link {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 1rem;
}

.txt-wp-link img {
    width: 25px;
}

.txt-wp {
    text-align: initial;
}

.txt-wp span {
    font-weight: 700;
}

.txt-wp p {
    margin-bottom: -7px;
}

.modal-wp-header img {
    width: 50px;
    height: 50px;
}

.modal-wp-header p {
    color: white;
}

.modal-wp-header button {
    position: relative;
    top: -27px;
}

.modal-container-wp.show {
    pointer-events: auto;
    opacity: 1;
    z-index: 3000;
}

.close-modal-wp {
    cursor: pointer;
    border: none;
    float: right;
    margin-right: -6px;
    margin-top: -9px;
    background-color: transparent;
    opacity: 1;
    font-size: 2rem;
}

.close-modal-wp:focus {
    outline: 0px;
}

.close-modal-wp i {
    float: right;
    font-size: 1.2rem;
    line-height: 1;
    text-shadow: none;
    opacity: 1;
    color: white;
    position: relative;
    bottom: -4px;
}

.btn-wapp-close {
    display: block;
    position: fixed;
    right: 3%;
    bottom: 5px;
    width: 50px;
    border: none;
    height: 50px;
    border-radius: 50%;
    z-index: 3001;
    background: #0cbc47;
    padding: 0;
    transform-origin: center;
}

.btn-wapp-close:focus {
    outline: 0px;
}

.btn-wapp-close i {
    position: relative;
    font-size: 26px;
    color: #fff;
    text-align: center;
}

@media (max-width: 560px) {
    .modal-container-wp.show {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .modal-dialog-wp {
        top: 0;
        left: 0;
    }

    .modal-content-wp {
        height: 270px;
        width: 352px;
    }

    .modal-wp-header {
        height: 81px;
        gap: 1rem;
    }

    .modal-wp-header p {
        font-size: 14px;
    }

    .modal-wp-header button {
        display: none;
    }

    .container-wp-link {
        gap: 4rem;
    }

    .btn-wapp-int2 .container-wp-link .gap-3 {
        gap: 3rem;
    }

    .close-modal-wp i {
        bottom: -8px;
    }

    .btn-wapp-int2 {
        padding: 11px 0px;
    }

    .btn-wapp-close {
        right: 2%;
        bottom: 94px;
    }

    .btn-wapp-close i {
        bottom: 8px;
    }
}