﻿.open-btn {
    /*background: #7D72E4;*/
    background: #C89D66;
    color: whitesmoke;
    padding: 12px 20px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px 0px, rgba(17, 17, 26, 0.05) 0px 8px 32px 0px;
    bottom: 2em;
    right: 2em;
    z-index: 9999;
}

.open-btn:hover {
    opacity: 0.9;
}

.chat-popup {
    position: fixed;
    bottom: 2em;
    right: 2em;
    z-index: 9999;
    width: 400px;
}

.chat-popup .form-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-width: 400px;
    background: white;
    border-radius: 10px 10px 6px 6px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px 0px, rgba(17, 17, 26, 0.05) 0px 8px 32px 0px;
}


.chat-window-head {
    display: flex;
    justify-content: space-between;
    /*background: #7D72E4;*/
    background: #C89D66;
    padding: 16px 14px;
    border-radius: 10px 10px 0px 0px;
}

.chat-window-head i {
    font-size: 24px;
}

.chat-window-head h4 {
    color: white;
    font-weight: 500;
}

.close-btn {
    color: white;
    cursor: pointer;
}

.close-btn:hover {
    opacity: 0.9;
}

.msg-container {
    padding: 12px 10px;
}

.msg {
    padding: 0px 10px;
    display: flex;
    flex-direction: column;
}

.msg p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 0;
}

.input-container {
    margin-top: 20px;
    padding: 10px;
}

.chat-popup .form-container input {
    padding: 10px 16px;
    font-weight: 400;
    color: black;
}

.chat-popup .form-container textarea {
    padding: 10px 16px;
    font-weight: 400;
    color: black;    
}

.chat-popup .form-container input[type="checkbox"] {
    width: auto;
    margin-right: 5px;
}

.chat-popup .submit-btn {
    /*background: #7D72E4;*/
    background: #C89D66;
    color: whitesmoke;
    padding: 12px 20px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px 0px, rgba(17, 17, 26, 0.05) 0px 8px 32px 0px;
}

.chat-popup .submit-btn:hover {
    opacity: 0.9;
}

.chat-popup .submit-btn:disabled {
    opacity: 0.6;
}

.grecaptcha-badge {
    display: none;
}