.wa-popup {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}


.wa-popup__button {
    display: flex;
    align-self: flex-end;
    justify-content: center;
    align-items: center;
    background-color: #26d367;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    cursor: pointer;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.wa-popup__button>img {
    width: 32px;
    height: 32px;
}


.wa-popup__container {
    display: none;
    width: 350px;
    max-width: 80vw;
    background-color: rgb(229, 221, 213);
    border-radius: 12px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    align-self: flex-end;
}

.wa-popup__container>header {
    position: relative;
    background-color: rgb(177, 163, 116);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    display: flex;
    padding: 24px;
}

.wa-popup__container>header h1 {
    color: white;
    font-size: 14px;
    font-weight: bold;
    margin: 0;
}

.wa-popup__container>header span {
    color: white;
    font-size: 11px;
}

.wa-popup__container>header button {
    position: absolute;
    top: 4px;
    right: 4px;
    background-color: transparent;
    border: none;
    font-size: 14px;
    font-weight: bold;
    height: fit-content;
    color: rgba(255, 255, 255, 0.8);
}


.wa-popup__container>footer {
    background-color: white;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 8px;
}

.wa-popup__container>footer input {
    border: none;
    width: 100%;
}

.wa-popup__chat {
    padding: 24px 12px;
}

.wa-popup__message-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wa-popup__message-group>header {
    display: flex;
    justify-content: center;
    color: darkslategrey;
    font-size: 11px;
}

.wa-popup__message {
    background-color: white;
    border-radius: 12px;
    padding: 8px;
    width: fit-content;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wa-popup__form {
    display: flex;
    justify-content: space-between;
}

.wa-popup__form>button[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(177, 163, 116);
    color: white;
    border: none;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
}