.aicb__body {
    background: #fff;
    box-shadow: -1px 0px 3px 0px rgba(0,0,0,.05);
    color: #707070;
    display: flex;
    flex-direction: column;
    height: 93vh;
    margin-top: 4vh;

    @media (max-width: 767px) {
        height: calc(100% - 66px);
        margin-top: 0;
    }
}
.aicb__body-btm {
    background-color: #fff;
    padding: 18px;
}
.aicb__body-top {
    flex: 1;
    overflow-y: scroll;
    padding: 18px;
}
.aicb__chat-window {
    display: flex;
    flex-direction: column;
    margin-top: 15px;
    overflow-y: scroll;
    padding: 0 15px;
}
.aicb__chat-window .aicb__chatbot-msg {
    color: #0067C7;
    font-weight: 600;
    margin-left: auto;
    margin-right: 0;
    width: 95%;

    @media (max-width: 767px) {
        width: 100%;
    }
}
.aicb__chat-window .aicb__user-msg {
    font-weight: 500;
    width: 80%;

    @media (max-width: 767px) {
        width: 100%;
    }
}
.aicb__container {
    transform: translateX(calc(100% - 66px));
    bottom: 0;
    height: 100%;
    max-width: 900px;
    overflow: hidden;
    padding-left: 66px;
    position: fixed;
    right: 0;
    width: 70%;
    z-index: 9999;

    @media (max-width: 767px) {
        top: 50px;
    }
}
.aicb__container.aicb__container--open {
    transition: transform 400ms ease-in-out;
    transform: translateX(0);

    @media (max-width: 767px) {
        height: calc(100% - 20px);
        padding-left: 10px;
        top: 10px;
        width: 100%;
    }
}
.aicb__header {
    background: transparent linear-gradient(208deg, #0067C7 0%, #00BFFF 100%) 0% 0% no-repeat padding-box;
    bottom: calc(3vh + 80px);
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    height: 66px;
    justify-content: space-between;
    left: -80px;
    padding: 18px 20px 20px;
    position: absolute;
    transform: rotate(-90deg);
    width: 226px;

    @media (max-width: 767px) {
        bottom: calc(8vh + 80px);
    }
}
.aicb__header.aicb__header--open {
    @media (min-width: 768px) {
        border-radius: 20px 20px 0px 0px;
    }

    @media (max-width: 767px) {
        transform: rotate(0);
        position: static;
        width: 100%;
    }
}
.aicb__header.aicb__header--closed {
    border-radius: 20px 20px 0px 0px;
}
.aicb__header.aicb__header--closed .aicb__icon--opened, .aicb__header.aicb__header--closed .aicb__headline--opened {
    display: none;
}
.aicb__header.aicb__header--closed .aicb__icon--closed, .aicb__header.aicb__header--closed .aicb__headline--closed {
    display: block;
}
.aicb__header.aicb__header--open .aicb__icon--opened, .aicb__header.aicb__header--open .aicb__headline--opened {
    display: block;
}
.aicb__header.aicb__header--open .aicb__icon--closed, .aicb__header.aicb__header--open .aicb__headline--closed {
    display: none;
}
.aicb__headline {
    font-family: Inter,sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 .5rem 1rem;
}
.aicb__icon {
    cursor: pointer;

    @media (min-width: 768px) {
        transform: rotate(90deg);
        height: 32px;
        top: 3px;
        width: 32px;
    }
}
.aicb__icon.aicb__icon-close {
    height: 28px;
    width: 28px;
}
.aicb__icon.aicb__icon-open {
    height: 36px;
    width: 36px;
}
.aicb__loader {
    height: 30px;
    width: 60px;
    aspect-ratio: 2;
    --_g: no-repeat radial-gradient(circle closest-side,#00BFFF 90%,#0000);
    background: 
      var(--_g) 0%   50%,
      var(--_g) 50%  50%,
      var(--_g) 100% 50%;
    background-size: calc(100%/3) 50%;
    animation: l3 1s infinite linear;
    position: absolute;
    right: 0;
}
.aicb__loader-container {
    display: none;
    height: 30px;
    position: relative;
    width: 100%;
}
.aicb__question-input {
    background: #EDF0F9;
    border-radius: 25px;
    border: 0;
    color: #000;
    font-size: 20px;
    height: 50px;
    padding-left: 20px;
    width: 100%;
}
.aicb__question-input::placeholder {
    color: #BBBDC2;
    font-weight: 700;
}
.aicb__suggestion-btn {
    border: 1px solid #00BFFF;
    border-radius: 25px;
    cursor: pointer;
    margin: 8px 0;
    min-height: 50px;
    padding: 10px 15px;
}
@keyframes l3 {
    20%{background-position:0%   0%, 50%  50%,100%  50%}
    40%{background-position:0% 100%, 50%   0%,100%  50%}
    60%{background-position:0%  50%, 50% 100%,100%   0%}
    80%{background-position:0%  50%, 50%  50%,100% 100%}
}