/**custom style**/


/***font-style**/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
html{
    overflow: hidden;
}
body{
    font-family: 'Poppins', sans-serif;
    color: #000000;
    font-weight: 400;
    height: 100%;
    background-color: #95C23D;
    background-image: url('../images/bg-top-left.png');
    background-repeat: no-repeat;
}
body::before{
    content: '';
    background-image: url('../images/bg-bottom-right.png');
    background-repeat: no-repeat;
    background-position: bottom right;
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
p{
    font-size: 14px;
    color: #222222;
    font-weight: 400;
}
a{
    text-decoration: none;
    color: #000000;
    transition: all 0.4s  ease-in-out; 
}
a:hover{
    color: #95C23D;
    text-decoration: none;
}
.btn-theme{
    background-color: #F1F1F1;
    color: #222222;
    font-size: 14px;
    font-weight: normal;
    border-radius: 10px;
    padding: 7px 15px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, .25);   
    font-size: 18px;
    transition: all 0.4s  ease-in-out; 
}
.btn-theme:hover{
    box-shadow: 0px 4px 4px rgba(0, 0, 0, .65);
}
.btn-theme span {
    margin-left: 20px;
}


ul{
    padding-left: 0px;
}
ul li{
    list-style: none;
}


.chat-page{
    height: 100%;
    min-height: 100%;
    padding-top: 0;
    padding-bottom: 0;
}
.message-conatiner{
    max-width: 1029px;
    margin: 0px auto;
    height: 96vh;
    background: #fff;
    border-radius: 8px;
    overflow-y: auto;;
    padding-bottom: 0;
    max-height:1300px;
}
.chat_main_section .message-conatiner {
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
}
.chat-head{
    padding:15px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
}
figure{
    margin-bottom: 0px;
}
figure.avatar img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
figure.avatar{
    margin-right: 15px;
}

h2.head-name{
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 0px;
}
.status-head{
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
}
.status-head i.online{
    color: #68D391;
    font-size: 12px;
    margin-right: 4px;
}

.brand_logo .select-opt.brands {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 12px;
}
.brand_logo img {
	width: 50px;
}
.chat-container{
    padding: 30px;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
    max-width: 100%;
    outline: 0;
    direction: ltr;
}
.chat-container-typing{
    padding: 30px;
    position: relative;
    overflow: hidden;
    direction: ltr;
    display: none;
}
#typing-gif{
    margin: 0 auto;
    width: 80px;
}
.messages-content.left {
    display: flex;
    justify-content: flex-start;
    text-align: left;
}
.messages-content.left p{
    background-color: #FAF7EF;
}
.messages-content.right {
    display: flex;
    text-align: right;
    justify-content: flex-end;
}
.messages-content.right p{
    background-color: #547AF1;
    color: #fff;
}
.messages-content.right figure.avatar{
    margin-right: 0px;
    margin-left: 15px;
    display:none;
}
.messages-content p{    
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 14px;
    color: #000;
    margin-bottom: 10px;
    width: fit-content;
}
.messages-content{
    margin-bottom: 20px;
}
.messages-content:last-child{
    margin-bottom: 0px;
}
.messages-content:last-child p:last-child{
    margin-bottom: 0px;
}
.pg_load_success{
    height: 100%;
    display: flex;
    flex-direction: column;
}
.message-box-disable{
    display: block !important;
    background-color: lightgrey !important;
    cursor: not-allowed !important;
}
.message-box-disable input {
    cursor: not-allowed !important;
}
.message-box-disable .submit_fa_icon {
    color: grey !important;
    cursor: not-allowed !important;
}

#wrong_input_id{
    color: rgb(255 255 255);
    background: rgb(225 34 34);
    width: 34%;
    padding: 7px;
    margin-left: 65px;
    border-radius: 5px;
    font-size: 13px;
}
#choose_and_say_id{
    color: rgb(255 255 255);
    background: rgb(100 145 187);
    width: 34%;
    padding: 7px;
    margin-left: 65px;
    border-radius: 5px;
    font-size: 13px;

}

.message-box {
    width: 94%;
    background: rgb(250, 247, 239);
    border: 0px solid rgb(226 232 240);
    padding: 10px 20px;
    position: relative;
    border-radius: 8px;
    margin: 0px auto 5px auto;
    /* display: none; */
    margin-top:auto;
}
.message-box.readonly {
    background-color: #B6B6B6;
}
.message-box.readonly i{
    color: #5E5E5E;
}
.message-box .message-input {
    background: none;
    border: none;
    outline: none !important;
    resize: none;
    color: rgba(255, 255, 255, .8);
    font-size: 15px;
    max-height: 26px;
    margin: 0;
    padding-right: 20px;
    width: 90%;
    color: #444;
}
.message-box .message-submit {
    position: absolute;
    z-index: 1;
    top: 4px;
    right: 10px;
    color: #4a90e2;
    border: none;    
    background: transparent;
    font-size: 25px;
    text-transform: uppercase;
    line-height: 1;
    padding: 6px 10px;
    border-radius: 5px;
    outline: none !important;
    transition: background 0.2s ease;
    cursor: pointer;

}
.default-quest{
    display: flex;
    width: 100%;
    padding: 10px 30px;
    flex-wrap: wrap;
    border-top: 1px solid rgb(229 229 229);
    border-radius:0;
    /* margin-bottom:10px; */
    max-height: 200px;
    overflow-y: auto;
    margin-top: auto;
    row-gap: 5px;

    /* display: flex;
    padding: 10px 30px;
    flex-wrap: unset;
    max-height: 185px;
    overflow-y: auto;
    background: rgb(250 247 239);
    flex-direction: column;
    max-width: 420px;
    margin-left: 104px; */
}
.default-quest a, .quest_btn{
    background-color: #fff;
    color: #000;
    margin: 2px 6px;
    border-radius: 8px;
    padding: 8px;
    font-size: 13px;
    box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.16);
    /* white-space: nowrap; */

    /* background-color: rgb(241 241 241);
    color: rgb(0 0 0);
    margin: 6px;
    border-radius: 12px;
    padding: 10px 15px;
    font-size: 13px;
    box-shadow: 0px 3px 9px rgb(0 0 0 / 16%);
    display: block;
    text-align: center; */
}
.default-quest a:hover{
    box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.36);
}

/****scrollbar****/
.chat-container::-webkit-scrollbar-track, .message-conatiner::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

.chat-container::-webkit-scrollbar, .message-conatiner::-webkit-scrollbar
{
    width: 5px;
    background-color: #F5F5F5;
}

.chat-container::-webkit-scrollbar-thumb, .message-conatiner::-webkit-scrollbar-thumb
{
    background-color: #5E5E5E; 
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    border-radius: 10px;       
}

/**sidebar nav**/
:root {
    --header-height: 3rem;
    --nav-width: 68px;
    --first-color-light: #AFA5D9;
    --white-color: #F7F6FB;
    --body-font: 'Nunito', sans-serif;
    --normal-font-size: 1rem;
    --z-fixed: 100
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    background-color: #fff;
    z-index: var(--z-fixed);
    transition: .5s;
    min-width: 68px;
    border-top-right-radius: 30px;
}

.header_toggle {
    color: #9BB8CC;
    font-size: 1.3rem;
    cursor: pointer
}
.l-navbar {
    position: fixed;
    left: -30%;
    width: var(--nav-width);
    height: 100dvh;
    background-color: #fff;
    padding: .5rem 1rem 0 0;
    border-radius: 0 20px 0 0;
    /* transition: .5s; */
    z-index: var(--z-fixed)
}

.nav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    height: 100%;
}

.nav_logo,
.nav_link {
    display: grid;
    grid-template-columns: max-content max-content;
    align-items: center;
    column-gap: 1rem;
    padding: .5rem 0 .5rem 1.5rem
}

.nav_logo {
    margin-bottom: 2rem
}

.nav_logo-icon {
    font-size: 1.25rem;
    color: var(--white-color)
}

.nav_logo-name {
    color: var(--white-color);
    font-weight: 700
}

.nav_link {
    position: relative;
    color: #fff;
    margin-bottom: .2rem;
    transition: .3s
}
.nav_link i{
    font-size: 14px;
    margin-left: 15px;
}

.nav_link:hover {
    color: var(--white-color)
}

.nav_icon {
    font-size: 1.25rem
}

.show {
    left: 0
}


.active {
    color: var(--white-color)
}

.active::before {
    content: '';
    position: absolute;
    left: 0;
    width: 2px;
    height: 32px;
    background-color: var(--white-color)
}

.height-100 {
    /* height: 100vh */
}
.text-menu{
    display: none;
    color: #97B4CD;
    font-size: 20px;
}
.body-pd .text-menu{
    display: block;
}
.bar-expand{
    display: none;
    max-width: 35px;
}
.bar-expand img{
    max-width: 26px;
}
body.body-pd .bar-expand{
    display: block;
}
body.body-pd header .fas.fa-bars{
    display: none;
}
body nav.nav .nav_link{
    display: none;
    transition: .3s
}
body.body-pd nav .nav_link{
    display: block;
    min-width: 180px;
}
.side-foot{
    display: none;
    /* position: fixed; */
    bottom: 20px;
    transition: .3s;
    margin-top: auto;
    margin-bottom: 0;
}
body.body-pd nav .side-foot{
    display: block;
    transition: .3s
}
.side-top-nav{
    margin-bottom: auto;
}

/***page side***/
.page-side{
    width: 68%;
    right: -80%;
    position: fixed;
    top: 50px;
    transition:right .6s ease-in-out,display .6s ease-in-out;
    border-radius: 20px;
    padding: 20px;    
    background-color: #fff;
    z-index: 999;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, .26);
}
.page-side.show-page{
    right: 12.5%;
}
.page-side-wrap{
    padding: 10px;    
    height: 80vh;
    position: relative;
    overflow-y: auto;
    scrollbar-width: thin;
}
.page-side-wrap::-webkit-scrollbar{
    width: 6px;
    height: 10px;
    background-color: #f2f2f2;
    border-radius: 20px;    
}
.page-side-wrap::-webkit-scrollbar-thumb{
    background: #555;
    border-radius: 20px;

}
.close-btn {
    position: absolute;
    right: 20px;
    top: 17px;
    font-size: 20px;
}
.type {
    max-width: 68px;
}

/**language**/
.language-wrap {
    padding: 40px 0px;
    text-align: center;
}
.chat-logo img{
    max-width: 100px;
    border-radius: 100%;
    max-height: 130px;

}
.chat-logo h3{
    color: #222222;
    font-weight: 700;
    font-size: 25px;
    margin-top: 10px;
}
.language-desc {
    max-width: 600px;
    margin: 20px auto 0px;
}
.language-desc .high-text{
    padding-top: 0;
}
.language-desc .high-text p{
    font-size: 20px;
    color: #000;
}
.language-desc p.other-language{
    text-align: right;
}
.lanuage-button{
    margin-top: 0;
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
}
.lanuage-button button{
    margin-bottom: 15px;
}
.lanuage-button button:last-child{
    margin-bottom: 0px;
}
ul.list-dot{
    text-align: left;
    font-size: 14px;
}
ul.list-dot li{
    list-style: disc;
    margin-bottom: 0;
    color: #222;
}
ul.consent_btw_chat_cls{
    text-align: left;
    font-size: 14px;
    padding-left: 20px;
}
ul.consent_btw_chat_cls li{
    list-style: disc;
    margin-bottom: 0;
    color:black;
}

.multi_label_cls{

    /* background: rgb(250 247 239);
    list-style-type: none;
    margin: 0;
    padding: 3px; */

    background: rgb(250 247 239);
    list-style-type: none;
    margin: 0;
    padding: 12px;
    border-radius: 12px;
}
.multi_label_dv{

    border-radius: 12px;
    font-size: 14px;
    color: rgb(0 0 0);
    width: fit-content;
}

.check-text{
    margin-bottom: 15px;
}
p.consent_terms_conditions_cls {
    margin-bottom: 5px;
}
.messages-content.right .message-info {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-end;
}

.rs-label {
    
    position: relative;
    transform-origin: center center;
    display: block;
    width: 98px;
    /* height: 98px; */
    background: rgb(0 0 0 / 0%);
    /* border-radius: 50%; */
    line-height: 30px;
    text-align: center;
    font-weight: bold;
    /* padding-top: 22px; */
    box-sizing: border-box;
    /* border: 2px solid rgb(255 255 255); */
    /* margin-top: 20px; */
    margin-left: -38px;
    left: attr(value);
    color: rgb(80 196 153);
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    /* font-size: 21px; */
    
}

.slider {
  -webkit-appearance: none;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #04AA6D;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #04AA6D;
  cursor: pointer;
}

.slidecontainer {
    width: 100%;
    margin-left: 0;
    padding-left: 3%;
    padding-right: 3%;
    padding-top: 7px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.slidecontainer.slidecontainer_alt{
    justify-content: center;
}
.slidecontainer p{
    margin-bottom:0;
}
.slidecontainer .btn-info{
    width: auto;
    position: relative;
    margin-left: 10px;
    margin-right: 10px;
}
.slidecontainer .slider {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}
.rating-slider {
    max-width: 450px;
    width: 100%;
    margin-left: 10px;
    margin-right: 10px;
}
/* .slidecontainer:not(.slidecontainer_alt) .rating-slider{
    margin: 0 auto;
} */
.slidecontainer .bef_aft_slider {
    display: flex;
    justify-content: space-between;
}
.slidecontainer .bef_aft_slider span:first-child{
    margin-left: 5px;
}
.slidecontainer .bef_aft_slider span:last-child{
    margin-right: -10px;
    width: 40px;
    text-align: center;
}
.st-first {
    width: 15%;
    background: #f8f8f8;
    height: 100%;
    text-align: center;
    padding: 10px;
    display: flex;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    align-items: center;
}
#refresh_div_main {
    /* height: calc(100% - 45px); */
    /* height: calc(100% - 53px); */
    height: 100%;
}
.st-first i{
    margin-left:3px;
    font-size: 22px;
    color:rgb(247 183 0);
}
.l-navbar.show {
        width: calc(var(--nav-width) + 156px) 
    }
/* @media  only screen and (min-width: 991px) and (max-width: 1600px){ 
    .message-conatiner{
        padding-bottom: 60px;
    }
} */ 
.show_more a{
    float: right;
    color: #0dcaf0!important;
}

.arb-desc ul li{
    text-align: right;
    direction:rtl;
}
.arb-desc ul.list-dot{
    max-width: 500px;
}
.arb-desc .check-text span{
    display: flex;
}
.arb-desc .check-text span input.consent_checkbx{
    order: 2;
    margin-left: 8px;
    margin-top: 4px;
}
.text-left{
    text-align: left;
}
.arb-desc .text-left{
    text-align: right;
}
.arb-message .chat-container .messages-content.left{
    text-align: right;
}

.arb-message .messages-content.left .message-info {
    direction: rtl;
}
.arb-message div#options_div label {
    direction: rtl;
}

.arb-message .messages-content.right .message-info {
    direction: rtl;
}

.arb-message-footer .question_consent_confidentiality_cls {
    direction: rtl;
}
.arb-message-footer .question_consent_release_cls {
    direction: rtl;
}
.arb-message-footer .question_consent_adverse_cls {
    direction: rtl;
}


.arb-message .message-box input.message-input{
    text-align: right;
    padding-right: 5px;
}
.overlay.overlay-wrap{
    display: none;
}
.overlay-body .overlay.overlay-wrap{
    background: rgb(0 0 0 / 60%);
    display: block;
}

/* General Rules For Range Slider */
.custom-rangeslider {
  position: relative;
  padding: 0 0 40px;
}

.custom-rangeInput {
  width: 100%;
  background: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-sizing: border-box;
  cursor: pointer;
  outline: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background-color: transparent;
  height: 20px;
}
.custom-rangeInput::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  box-sizing: border-box;
  background-color: #95c23d;
  outline: 2px solid #ffffff;
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 50%;
  cursor: move;
  /* fallback if grab cursor is unsupported */
  cursor: grab;
  cursor: -webkit-grab;
  margin-top: -8px;
}
.custom-rangeInput::-webkit-slider-thumb:active {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}
.custom-rangeInput::-moz-range-thumb {
  -moz-appearance: none;
       appearance: none;
  box-sizing: border-box;
  background-color: #95c23d;
  outline: 2px solid #ffffff;
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 50%;
  cursor: move;
  /* fallback if grab cursor is unsupported */
  cursor: grab;
  cursor: -webkit-grab;
}
.custom-rangeInput::-moz-range-thumb:active {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}
.custom-rangeInput::-ms-thumb {
  appearance: none;
  box-sizing: border-box;
  background-color: #95c23d;
  outline: 2px solid #ffffff;
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 50%;
  cursor: move;
  /* fallback if grab cursor is unsupported */
  cursor: grab;
  cursor: -webkit-grab;
  margin: auto;
}
.custom-rangeInput::-ms-thumb:active {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}
.custom-rangeInput::-webkit-slider-runnable-track {
  -webkit-appearance: none;
          appearance: none;
  box-sizing: border-box;
  height: 9px;
  width: 100%;
  cursor: pointer;
  border: none;
  padding: 0;
  margin: 0;
  background: grey;
  border-radius: 10px;
}
.custom-rangeInput::-moz-range-track {
  -moz-appearance: none;
       appearance: none;
  box-sizing: border-box;
  height: 9px;
  width: 100%;
  cursor: pointer;
  border: none;
  padding: 0;
  margin: 0;
  background: grey;
  border-radius: 10px;
}
.custom-rangeInput::-ms-track {
  appearance: none;
  box-sizing: border-box;
  height: 9px;
  width: 100%;
  cursor: pointer;
  border: none;
  padding: 0;
  margin: 0;
  background: grey;
  color: transparent;
  border: none;
  outline: none;
  border-radius: 10px;
}
.custom-rangeInput:focus, .custom-rangeInput:active {
  outline: none;
}
.custom-rangeInput::-ms-tooltip {
  display: none;
}

.custom-rangeslider__tooltip {
  line-height: 20px;
  position: absolute;
  height: 26px;
  width: 40px;
  background-color: #fff;
  padding: 3px 3px;
  border: 1px #95c23d solid;
  top: 70px;
  left: 0;
  text-align: center;
  transform: translate(-26%, 0);
  border-radius: 3px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  pointer-events: none;
  font-size: 14px;
}
.custom-rangeslider__tooltip:after {
  display: block;
  content: " ";
  background: #fff;
  position: absolute;
  border: 1px #95c23d solid;
  border-top: 0;
  border-left: 0;
  width: 10px;
  height: 10px;
  left: calc(50% - 6px);
  top: -6px;
  transform: rotate(225deg);
}

.custom-rangeslider__label {
  width: 100%;
  display: block;
}
.custom-rangeslider__label span {
  display: block;
}
.custom-rangeslider__label-min {
  float: left;
}
.custom-rangeslider__label-max {
  float: right;
}
.custom-rangeslider__label:after {
  content: "";
  display: table;
  clear: both;
}

.emoticon-slider {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 10px;
}

.emoticon-slider .emoticon-face {
    width: 30px;
    height: 30px;
    cursor: pointer;
    
    background-image: url('../images/emoticons/angry.svg');
}

.emoticon-slider .emoticon-face.sad{
    background-image: url('../images/emoticons/sad.svg');
}

.emoticon-slider .emoticon-face.expressionless{
    background-image: url('../images/emoticons/expressionless.svg');
}

.emoticon-slider .emoticon-face.smiley{
    background-image: url('../images/emoticons/smiley.svg');
}

.emoticon-slider .emoticon-face.starry-eyed{
    background-image: url('../images/emoticons/starry-eyed.svg');
}



@media screen and (max-width: 1400px) {
    .l-navbar {
        /* background-color: #fff; */
        border-radius: 0 20px 0 0; 
        padding-top: 50px;
    }
    .nav_link{
        color: #000;
    }
    .nav_link:hover{
        color: #547af1;
    }
}
@media screen and (min-width: 768px) {
    body {
        /* margin: calc(var(--header-height) + 1rem) 0 0 0; */
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: calc(var(--nav-width) + 2rem)
    }

    .header {
        height: calc(var(--header-height) + 1rem)
    }    
    .l-navbar {
        left: 0;
        padding: 4rem 1rem 0 0
    }
    header.body-pd {
        /*padding-left: calc(var(--nav-width) + 119px);*/
        width: calc(var(--nav-width) + 156px);
        padding-left: 1.5rem;
    }
    

}

.dropdown-toggle::after {
    margin-left: 0
}

@media screen and (max-width: 767px){
       .language-wrap{
        padding: 60px 30px;
       }
       .chat-page .container{
        padding: 0px;
       }
       .message-conatiner{
        height: calc(100dvh - 20px);
       }
       #refresh_div_main {
        /* height: calc(100% - 75px); */
        }

        .page-side{
            width: 96%;
            max-width: 600px;
            margin: 0 auto;
            right: -110%;
        }
        .page-side.show-page{
            right: 0;
            left: 0;
        }
        .l-navbar.show {
        box-shadow: 0px 6px 8px rgba(0,0,0,0.1);
    }
    .header {
        border-radius: 0;
        left: auto;
        right: 0;
        top: 20px;
        margin-right: 0;
    }
    .l-navbar{
        padding-top: 20px;
    }
}
@media screen and (max-width: 667px){
    body{
        font-size: 14px;
    }
    .default-quest{
        padding-left: 15px;
        padding-right: 15px;
    }
    .default-quest span {
        white-space: nowrap;
    }
    .default-quest span label {
        white-space: normal;
        vertical-align: top;
    }
    .message-conatiner{
        border-radius: 0;;
        height: 100dvh;
    }
    .chat-container{
        padding: 15px;
    }
    .chat-head{
        padding: 20px 15px 10px 15px;
    }
    .default-quest{
        /* min-height: 80px; */
        max-height: 150px;
        align-items: flex-start;
    }
    .default-quest a, .quest_btn{
        line-height: 100%;
    }
    figure.avatar img {
        width: 30px;
        height: 30px;
        border-radius: 50%;
    }
    figure.avatar {
        margin-right: 5px;
    }
    .messages-content p {
        font-size: 13px;
        line-height: 16px;
    }
    .chat-container-typing .messages-content.left{
        align-items: flex-end;
    }
    .slidecontainer a[data-option-type="radio"] {
        margin: 0 10px 10px;
    }
   /* .focused_text .message-conatiner{
        height: calc(100vh - 0px);
    }*/
    .page-side{
        padding: 10px;
    }
}
