@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: whitesmoke;
}

.open-btn {
    background-color: #61c7c7;
    color: whitesmoke;
    padding: 16px 20px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    position: fixed;
    font-size: 16px;
    margin-right: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px 0 px, rgba(17, 17, 26, 0.05) 0px 8 px 32 px 0 px;
    bottom: 24px;
    right: 30px;
    width: 280px;
}

.open-btn i {
    font-size: 28px;
    margin-right: 20px;
}

.chat-popup {
    bottom: 16px;
    right: 16px;
    position: fixed;
    z-index: 9;
    width: 400px; /* Increase the width to 400px */
    height: 500px; /* Increase the height to 500px */
    display: none;
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-width: 600px; /* Increase the max-width to your desired size */
    background: white;
    border-radius: 10px 10px 6px 6px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px 0 px, rgba(17, 17, 26, 0.05) 0px 8 px 32 px 0 px;
  }

.section-dropdown-container{
    align-items: center;
    display: flex;
    padding: 2%;
    border-bottom: solid;
}

.chat-window-head{
    display: flex;
    justify-content: space-between;
    background: #61c7c7;
    padding: 16px 14px;
    border-radius: 10px 10px 0px 0px;
}

.chat-window-head i{
    font-size: 24px;
    margin-right: 10px;
}

.chat-window-head h4{
    color: white;
    font-weight: 500;
}

.close-btn{
    color:white;
    cursor: pointer;
}

.msg-container{
    padding: 12px 10px;
    height: 300px;
    margin: 10px 0;
    overflow-y: auto;
}

.msg{
    background-color: #E4E3EE;
    padding: 10px 16px;
    border-radius: 10px;
    width: 80%;
    display: flex;
    flex-direction: column;
}

.msg p{
    font-size: 12px;
    line-height: 1.8;
}

.msg span{
    font-size:10px;
    color:grey;
}

.chat-box-container{
    display: flex;
    flex-direction: column;
    height: 80px;
    margin-bottom: 16px;
    padding: 0px 14px;
    height: 100%;
    border-top: 8px solid #61c7c7;
    background-color: #61c7c7;
}

.chat-box, .user-details-box{
    display:flex;
    justify-content: space-between;
    width: 100%;
    height: 40%;
    overflow: hidden;
    border-radius: 30px;
    background: #F5F5F5;
    border: 2px solid grey;
    margin-bottom: 8px;
}

.user-details-box{
    flex: 1;
}

.form-container input{
    width: 80%;
    padding: 4px;
    height: 46px;
    padding-left: 16px;
    border: none;
    background: #F1F1F1;
    border-radius: 4px;
}

.form-container input:focus{
    outline: none;
    background: #F5F5F5;
}

.send-btn, .btn{
    width: 60px;
    background: #61c7c7;
    color: white;
    border-radius: 0 10px 10px 0;
    border: none;
    cursor: pointer;
    font-size: 20px;
    transition: all 300ms;
}

.btn:hover, .open-btn:hover{
    opacity: 0.9;
}

.user-msg {
    background-color: #61c7c7;
}