.WA-Chat {
    position: absolute;
    bottom: 24px;
    right: 24px;
}

.WA-Chat__btn {
    border: none;
    outline: none;
    background-color: #25d366;
    width:  56px;
    height: 56px;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 50%;
    display: flex;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    transition: all ease-in-out .1s;
}

.WA-Chat__btn svg {
    width: 100%;
    height: auto;
    margin: auto;
}

.WA-Chat__btn:hover {
    transform: scale(1.05);
    filter: brightness(.95);
}

.WA-Chat__balloon {
    font-family: inherit;
    position: absolute;
    width: 300px;
    box-sizing: border-box;
    bottom: calc(100% + 8px);
    padding: 24px;
    border-radius: 16px;
    background-color: #f4eee5;
    color: #1C1E21;
    right: 0;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.WA-Chat__title {
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: bold;
    line-height: 24px;
}

.WA-Chat__text {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 20px;
}

.WA-Chat__response {
    display: flex;
    flex-direction: column;
    padding: 24px 0 0;
    align-items: center;

    
}

.WA-Chat__response .WA-Chat__graphic svg {
    width: 56px;
    height: 56px;
    margin: 0 0 24px;
    align-self: center;
}

.WA-Chat__response .WA-Chat__title,
.WA-Chat__response .WA-Chat__text {
    text-align: center;
}

.WA-Chat__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.WA-Chat__form-line {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.WA-Chat__form-line label {
    font-size: 12px;
}

.WA-Chat__form-line label.check-label {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.WA-Chat__form-line label.check-label input {
    height: auto;
}

.WA-Chat__form-line.is-required label.check-label input {
   box-shadow: 0 0 0 1px #FE0000;
}

.WA-Chat__form-line label.check-label a  {
    color: #1C1E21;
}

.WA-Chat__form-line input {
    height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 6px;
    font-size: 16px;
    padding: 0 8px;
    box-sizing: border-box;
    transition: all ease-in-out .1s;
    font-family: inherit;

}

.WA-Chat__form-line input:hover {
    border: 1px solid rgba(0, 0, 0, 0.4);
}

.WA-Chat__form-line input:focus {
    outline: none;
    border-color: rgb(37, 211, 102);

}

.WA-Chat__form-line input[type=number]::-webkit-inner-spin-button, 
.WA-Chat__form-line input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}

.WA-Chat__form-line input[type=number] {
    -moz-appearance:textfield;
    appearance: textfield;
}

.WA-Chat__form-line.is-required input {
    border-color: #FE0000;
}

.WA-Chat__form-btn button {
    font-family: inherit;
    margin-top: 8px;
    width: 100%;
    background-color: rgb(37, 211, 102);
    border-radius: 6px;
    outline: none;
    border: none;
    height: 48px;
    cursor: pointer;
    color: #111b21;
    font-size: 16px;
    transition: all ease-in-out .1s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

}

.WA-Chat__form-btn button span {
    font-weight: 600;
}

.WA-Chat__form-btn button svg {
    width: 20px;
    height: 20px;
    margin-left: -20px;
}

.WA-Chat__form-btn button:hover {
    filter: brightness(.95);
    color: #1c1e21;
}

.WA-Chat__form-error {
    font-size: 12px;
    color: #FE0000;
}

.WA-Chat__close {
    position: absolute;
    padding: 0;
    top: 12px;
    right: 12px;
    display: flex;
    width: 30px;
    height: 30px;
    display: flex;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, .25);
    background: transparent;
    cursor: pointer;
    opacity: .6;
    transition: all ease-in-out .1s;

}

.WA-Chat__close svg {
    width: 20px;
    height: 20px;
    margin: auto;
}

.WA-Chat__close:hover {
    opacity: 1;
}

.WA-Chat__phone-group {
    display: flex;
    gap: 8px;
}

.WA-Chat__phone {
    flex: 1;
}

.WA-Chat__phone input {
    width: 100%;
    box-sizing: border-box;
}

.WA-Chat__phone-country {
    flex: 0 0 80px;
    position: relative;

}

.WA-Chat__phone-country > select {
    position: absolute;
    top: 0;
    left: 0;
    height: 40px;
    width: 100%;
    box-sizing: border-box;
    opacity: 0;
}

.WA-Chat__phone-country > span {
    height: 40px;
    line-height: 40px;
    padding: 0 8px;
    border-radius: 8px;
    display: block;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.16);
    box-sizing: border-box;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMjQgMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiA8cGF0aCBkPSJNNiA5TDEyIDE1TDE4IDkiIHN0cm9rZT0iY3VycmVudENvbG9yIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgogPC9zdmc+');
    background-repeat: no-repeat;
    background-position: center right 8px;
    background-size: 18px 18px;
}

.WA-Chat__phone-country:hover > span {
        border: 1px solid rgba(0, 0, 0, 0.4);
    }

.WA-Chat__response-action {
    border-bottom: 2px solid #25d366;
    padding: 2px 0;
    font-size: 14px;
    cursor: pointer;    
}

.WA-Chat__response-action:hover {
    color: #00803e;
}
