#wpwl-float {
    position: fixed;
    bottom: 20px;
    left: 94%;
    z-index: 999999999991;
    width: 50px;
    height: 50px;
    right: auto;
    margin-left: -25px;
    bottom: 80px;
}
#wpwl-icon {
 
    cursor: pointer; 
}
#wpwl-modal {
    position: fixed;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
}
#wpwl-icon svg {
    width: 100%;
    height: auto;
}
.wpwl-content {
    background: white; 
    width: 21vw;
    text-align: center;
    position: relative;
    color: black;
    padding-bottom: 1%;
}
div#wpwl-header {
    font-size: 1vw;
    background: #215C54;
    color: white;
    display: flex
;
    justify-content: center;
    align-items: center;
    height: 4vw;
}
#wpwl-close {
    position: absolute;
    top: 1%;
    left: 2%;
    cursor: pointer;
    font-size: 1.5vw;
    line-height: 1;
}
div#wpwl-error {
    font-size: 90%;
}
#wpwl-phone {
    border: 1px solid;
    width: 80%;
    padding: 2%;
    margin: 4% 0;
    text-align: center;
	color:black;
	-webkit-text-fill-color:black;
    background: white;
}
#wpwl-phone::placeholder{
    direction: rtl;
    text-align: right;
}
#wpwl-submit {
    width: 80%;
    background: #25d366;
    color: white;
    border: none;
    padding: 2%;
    cursor: pointer; 
    margin-bottom: 3%;
}
@media (max-width: 1024px) {
        .wpwl-content {
            width: 90%;
            ':';
        }
#wpwl-float {
    left: 2%;
    bottom: 17vw;
    width: 12vw;
    margin-left: 0px;
}
        div#wpwl-header h3 {
            font-size: 4vw;
            font-weight: 400;
        }

        div#wpwl-header {
            height: 11vw;
        }

        #wpwl-close {
            font-size: 7vw;
        }
}
#wa_loader_container {
    display: flex;
    opacity: 0;
    transition: 500ms;
    z-index: 999999999999;
    background: #0000008f;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    position: fixed;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}
#wa_loader_container.on{
 opacity: 1;
    pointer-events: all;
}

.wa-loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
    } 
