body {
    background-color: #FFDD2D;
    background-image: url(../images/bg.png);
    /* background-size: cover;
    display: flex;
    justify-content: center; */
    padding: 0;
    margin: 0;
    font-family: initial
}

.wrape-logo {
    max-width: 500px;
    margin: 0 auto
}

.main {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    padding: 0 15px;

}

/* .main span {
    color: black;
    background-color: #fff;
    border-radius: 20px;
    padding: 15px;
    font-size: 12px;
    text-align: center;
    padding-bottom: 10px;
    padding-top: 10px;
    margin-top: 10px;
} */

.chat {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    width: 500px;
    height: 600px;
    overflow-y: scroll;
}

.left-chat {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 10px;
    justify-content: left;
    flex-direction: column;
    align-items: start;
}

.today {
    padding: 8px 0;
}

.chat-block, .review-card {
    background: #FFFFFF;
    /* background: linear-gradient(0deg, #C2FFD7 0%, #C2FFD7 100%), #D1FEDD; */
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.10), 0px 1px 2px 0px rgba(0, 0, 0, 0.10), 0px 3px 3px 0px rgba(0, 0, 0, 0.09), 0px 6px 4px 0px rgba(0, 0, 0, 0.05), 0px 11px 4px 0px rgba(0, 0, 0, 0.01), 0px 18px 5px 0px rgba(0, 0, 0, 0.00), 0px 18px 5px 0px rgba(0, 0, 0, 0.00), 0px 18px 5px 0px rgba(0, 0, 0, 0.00);
    border-radius: 4px 26px 26px 26px;
    padding: 16px 20px;
    font-style: normal;
    font-weight: 400 !important;
    font-size: 18px;
    line-height: 1.2;
    max-width: 80%;
    color: #000000;
    margin-top: 28px;
    margin-bottom: 5px;
    position: relative;
    margin-left: 40px;
}

.logo3 {
    position: absolute;
    top: 0;
    left: -40px;
    width: 32px;
}

.logo2 {
    position: absolute;
    top: -20px;
    left: 16px;
    font-size: 14px;
}

.horizontal,
.vertical {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin-top: 10px;
    padding-left: 40px;
}

.answer-btn {
    display: block;
    width: 49%;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 17px;
    text-align: center;
    color: #000;
    background: #fff;
    border: 2px solid lightgray;
    border-radius: 10px;
    padding-top: 14px;
    padding-bottom: 14px;
    transition: all 0.3s ease-in-out;
    margin-bottom: 10px;
    cursor: pointer;

}

.answer-btn:hover {
    color: #fff;
    background-color: #ffe000;
}

.right-chat .chat-block {
    border-radius: 26px 4px 26px 26px;
}

.right-chat {
    justify-content: right;
    flex-direction: row-reverse;

    display: flex;
    align-items: center;
    margin-top: 10px;
}

.vertical {
    justify-content: left;
    flex-direction: column;
}

.vertical .answer-btn {
    width: 300px;
}

.c-form {
    background: #fff;
    border: 2px solid #FFDD63;
    border-radius: 40px;
    padding: 28px 32px 80px;
    font-family: Inter, sans-serif;
}

.right-chat {
    display: none;
}

.left-chat {
    display: none;
}

.chat-block {
    display: none;
}

.horizontal,
.vertical {
    display: none;
}


input[type="radio"] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.c-form .absolute {
    bottom: -46px;
}

@media (max-width: 767px) {
    .chat {
        width: 100%;
    }

    .c-form {
        border-radius: 15px;
        padding: 16px 16px 40px;
    }

    .c-form .absolute {
        bottom: -32px
    }
}
