/* =========================================================
  clvr 메인페이지
  ========================================================= */
.clvr-body {
  /* background: linear-gradient(to right,#fff 0,#fff calc( max(0px, (100vw - 1396px) / 2) + 325px
    ),#fbfbfc calc( max(0px, (100vw - 1396px) / 2) + 325px),#fbfbfc 100%);     */
  overflow: visible;
  /* overflow-x: hidden; */
}
.clvr-main {
  background-color: var(--gray-50);
  padding-top: 72px;
}
.clvr-main-inner {
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 1476px;
  min-height: calc(100vh - 72px);
  margin: 0 auto; 
  padding: 0 40px;
}
.clvr-sidebar {
  position: sticky;
  top: 72px;
  /* flex: 0 0 325px; */
  width: 325px;
  height: calc(100vh - 72px);
  background-color: var(--white);
  /* z-index: 1; */
}

/* 흰 배경 */
.clvr-sidebar:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -300%;
  width: 300%;
  height: 100%;
  background-color: var(--white);
  /* border: 1px solid #ccc; */
  z-index: 0;
}



.clvr-sidebar-inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  height: 100%; 
  padding-top: 60px;
  z-index: 1;
}
.clvr-sidebar-top {
  flex: none;
  /* padding-left: 12px; */
}
.clvr-history-wrap {
  flex: 1;
  min-height: 0;
  margin-top: 22px;
  overflow-y: auto;
  overscroll-behavior: contain;  
}
.clvr-logo {
  width: 54px;
}
.sidebar-open-ico {
  display: none;
}
.clvr-sidebar-tit {
  margin-top: 20px;
  font-size: 4rem;
  font-weight: 700;
}
.clvr-sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 40px;
  padding-right: 10px;
}
.sidebar-menu-item {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 8px 12px;
  /* background-color: var(--white); */
  border-radius: 6px;
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.sidebar-menu-item:hover {
  background-color: var(--primary-100);      
}
.menu-item-ico {
  display: inline-block;
  position: relative;
  width: 24px;
  height: 24px;
}

.new-all .menu-item-ico {
  background: url(/images/clvr/ico-center.png) no-repeat left top/100%;
}
.new-all:hover .menu-item-ico {
  background-image: url(/images/clvr/ico-center-purple.png);
}
.new-session .menu-item-ico {
  position: relative;
  background: url(/images/clvr/ico-new-session.png) no-repeat left top/100%;
}
.new-session .menu-item-ico:after {
  content: 'N';
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -4px;
  left: 13px;
  width: 14px;
  height: 14px;
  background-color: var(--em-text-red);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.9rem;
}
.new-session:hover .menu-item-ico {
  background-image: url(/images/clvr/ico-new-session-purple.png);
}
.sidebar-colse-btn .menu-item-ico {
  background: url(/images/clvr/ico-close.png) no-repeat left top/100%;
}
.sidebar-colse-btn:hover .menu-item-ico {
  background-image: url(/images/clvr/ico-close-purple.png);
}
.sidebar-open-btn {
  display: none;
}
.clvr-list-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;  
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 14px;          
  height: 14px;             
  padding: 0 4px;  
  background-color: var(--em-text-red);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}
.clvr-history {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 10px;
}
.clvr-history-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border-radius: 4px;
  transition: background-color 0.2s;
}
.clvr-history-item:hover {
  background-color: #FBFBFC;
}
.history-cont {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: calc(100% - 36px);
  cursor: pointer;
}
.history-tit {
  width: 100%;
  color: var(--gray-700);
  font-size: 1.4rem;
  font-weight: 500;
  white-space: nowrap;      
  overflow: hidden;         
  text-overflow: ellipsis;
}
.history-date {
  color: var(--gray-500);
  font-size: 1.2rem;
}
.history-tool {
  flex-shrink: 0;
  position: relative;
  width: 32px;
  height: 32px;
  opacity: 0;
  transition: opacity 0.2s;
}
.history-tool-btn {
  width: 32px;
  height: 32px;
  background: url(/images/clvr/ico-more.png) no-repeat left top/100%;
  border-radius: 50%;
}
.history-tool-btn:hover {
  background-color: #fff;
}
/* .clvr-history-item:hover .history-tool {
  opacity: 1;
} */
.history-tool.view {
  opacity: 1;
}
.history-tooltip {
  position: absolute;
  top: 34px;
  right: 0;
  width: 158px;
  height: 96px;
  padding: 16px 16px 6px;
  border-radius: 4px;
  background-color: var(--white);
  box-shadow: 0 4px 10px 0 rgba(63, 63, 83, 0.16);
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s;
}
/* .history-tool.view .history-tooltip {
  visibility: visible;
  opacity: 1;
} */


.history-tool.open .history-tooltip {
  visibility: visible;
  opacity: 1;
}
/* .history-tool.view .history-tool-btn {
  visibility: visible;
  opacity: 1;  
} */
.history-tool.open .history-tool-btn {
  visibility: visible;
  opacity: 1;
}



.history-tooltip-cont {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.btn-delete-row {
  display: flex;
  justify-content: end;
  margin-top: 10px;
}
.btn-delete {
  position: relative;
  height: 32px;
  padding-left: 22px;
  color: var(--em-text-red);
  font-size: 1.2rem;
  font-weight: 500;
}
.btn-delete:hover {
  text-decoration: underline;
}
.btn-delete::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  width: 20px;
  height: 20px;
  background: url(/images/clvr/ico-trash.svg) no-repeat left top/100%;
}
.clvr-stage {
  flex: 1;
  min-width: 0;
  min-height: calc(100vh - 72px);
  padding: 60px 0 0 32px;
  background: url(/images/clvr/bg-gradation-bottom.png) no-repeat center bottom / 100%; 
}
.clvr-stage.clvr-stage-chatview {
  background: none;
}
.clvr-stage-inner {
  position: relative;
  width: 100%;
  max-width: 1040px;
  height: 100%;
  padding-bottom: 80px;
  text-align: center;
}


.clvr-stage-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.clvr-switch-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
.clvr-switch {
  display: flex;
  align-items: center;
  position: relative;
  width: 234px;
  height: 42px;
  border: 1px solid var(--line-gray1);
  border-radius: 999px;
}
.clvr-switch-btn {
  position: relative;
  width: 116px;
  height: 38px;
  color: var(--gray-700);
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  z-index: 1;
  transition: color 0.2s;
}
.clvr-switch-btn.active {
  color: var(--white);
}
.clvr-switch-bg {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 114px;
  height: 38px; 
  background: linear-gradient(270deg, #7B01FF 0%, #E255B6 100%);
  border-radius: 24px;
  z-index: 0;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);  
}
.clvr-switch.mento .clvr-switch-bg {
  left: 118px;
}
.agent-select .btn-mento {
  display: none;
}
.mento-select .btn-persona {
  display: none;
}
.clvr-stage-body {
  margin-top: 40px;
}
.clvr-stage-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.clvr-avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 64px;
  height: 64px;
  padding-top: 12px;
  background: linear-gradient(225deg, #7B00FF 16.96%, #90F 100%);
  border-radius: 32px 32px 32px 2px;
}
.clvr-avatar .avatar-lottie {
  width: 55px;
  height: 55px;
}
.clvr-avatar::after {
  content: '';
  position: absolute;
  top: -4px;
  right: -24px;
  width: 40px;
  height: 40px;
  background: url(/images/clvr/logo-ani.png) no-repeat left top/100%;
}
.clvr-logo-copy {
  font-size: 1.8rem;
  font-weight: 700;
}
.clvr-agent-select {
  margin-top: 40px;
  font-size: 1.6rem;
  font-weight: 500;
}
.clvr-agent-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.btn-agent {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 40px;
  background-color: var(--white);
  border: 1px solid var(--primary-200);
  border-radius: 4px;
  font-size: 1.4rem;
  font-weight: 600;
}
.btn-agent.selected {
  background-color: var(--primary-800);
  border-color: var(--primary-800);
  color: var(--white);
}
.clvr-note-typing {
  display: inline-block;
  color: var(--primary-600);
  font-size: 1.6rem;
}
.clvr-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 80px;
}
.clvr-hero-copy h2 {
  font-size: 3.6rem;
  font-weight: 600;
  word-break: keep-all;
}
.clvr-hero-copy p {
  font-size: 1.8rem;
  line-height: 1.5;
}
.clvr-search-area{
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}
.clvr-search {
  width: 100%;
  max-width: 688px;
  margin: 0 auto;
}
.clvr-desc-mob {
  display: none;
}
.clvr-search .chat-input-wrapper {
  border: 1px solid #E7E7F2;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.06);
}
.clvr-search-info {
  display: none;
}
.ai-careermento-stage {
  display: none;
}
.mento-avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.mento-img {
  position: relative;
  width: 64px;
  height: 64px;
}
.mento-img::after {
  content: '';
  position: absolute;
  top: -4px;
  right: -24px;
  width: 40px;
  height: 40px;
  background: url(/images/clvr/logo-ani.png) no-repeat left top/100%;
}
.mento-img img {
  width: 100%;
}
.mento-nm {
  font-size: 1.8rem;
  font-weight: 700;
}
.mento-tag-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}
.mento-tag-txt {
  font-size: 1.6rem;
  font-weight: 500;
}
.mento-tags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}



.mob-sidebar-close-btn {
  display: none;
}






/* chat view */
.clvr-stage.clvr-stage-chatview {
  padding-top: 0;
}
.clvr-chatview-container {
  display: none;
  padding-bottom: 100px;
}
.chatview-head {
  position: sticky;
  top: 72px;
  padding-top: 60px;
  background-color: var(--gray-50);

  /* background-color: #7B00FF; */
}
.chatview-head-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chatview-head-mento {
  display: none;
}
.clvr-stage.agent-select .chatview-head-agent {
  display: flex;
}
.clvr-stage.mento-select .chatview-head-mento {
  display: none;
}
.clvr-stage.mento-select .chatview-head-agent {
  display: none;
}
.clvr-stage.mento-select .chatview-head-mento {
  display: flex;
}
.chatview-head-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.chatview-head-mento .chatview-head-left {
  gap: 6px;
}
.chatview-part {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1.6rem;  
  font-weight: 700;
}
.chatview-part-txt1 {
  font-size: 1.8rem;
}
.chatview-part-dot {
  color: var(--primary-600);
}
.chatview-part-txt3 {
  font-weight: 400;
}
.chat-view-body {
  margin-top: 10px;
}
.message-log {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.message {
  color: var(--gray-700);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
}
.message.user {
  display: flex;
  justify-content: end;
}
.message.user .message-bubble {
  max-width: 70%;
  padding: 16px;
  background-color: var(--gray-100);
  border-radius: 16px 16px 0 16px;
}







.clvr-search-wrap {
  position: relative;
}
 
.clvr-search-wrap.fixed-bottom {
  position: fixed;
  left: calc(max(0px, (100vw - 1476px) / 2) + 325px + 40px);
  right: max(0px, (100vw - 1476px) / 2 + 30px );
  bottom: 0;
  padding-bottom: 40px;
  background-color: var(--gray-50);
  /* border: 6px solid #a45bd4; */
  width: auto;
  z-index: 900;
}
.clvr-search-wrap.fixed-bottom:before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(180deg, rgba(251, 251, 252, 0.00) 0%, #FBFBFC 95%);
  /* border: 2px solid #ccc; */
}




.clvr-search-wrap.fixed-bottom .clvr-search-area {
  gap: 20px;
  margin-top: 0;
}
.clvr-search-wrap.fixed-bottom .suggestion-list {
  display: none;
}
.clvr-search-wrap.fixed-bottom .clvr-search-info {
  display: block;
  color: var(--gray-600);
  font-size: 1.2rem;
  line-height: 1.4;
  word-break: keep-all;
}
.clvr-search-info span {
  padding-left: 16px;
  background: url(/images/common/ico-info.svg) no-repeat left 2px/12px;
}
.clvr-search-info .btn-purple-text {
  color: var(--primary-700);
  text-decoration: underline;
  padding-inline-start: 0;
  padding-inline-end: 0;
}




.message-border {
  width: 100%;
  height: 1px;
  background-color: var(--line-gray1);
}

/* 더보기 공통 UI */
.text-more {
  /* position: relative; */
  word-break: keep-all;
  overflow-wrap: break-word;
}
.text-more-content {
  display: inline;
}
.text-more-content p {
  display: inline;
}


/* 버튼 */
.text-more-button {
  display: none;
  margin-left: 4px;
  color: var(--em-text-blue);  
  font-size: 1.6rem;
  font-weight: 400;
  /* text-decoration: underline; */
  text-underline-offset: 3px;
  vertical-align: baseline;
}
.text-more-button .text-more-label {
  text-decoration: underline;
}

/* 내용이 넘치는 경우에만 버튼 노출 */
.text-more.is-overflow .text-more-button {
  display: inline;
}

.btn-expand-all {
  width: 100%;
  height: 40px;
  background-color: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  color: var(--gray-600);
  font-size: 1.4rem;
  font-weight: 600;
}
.btn-expand-all span {
  position: relative;
  padding-left: 15px;
}
.btn-expand-all span::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 0;
  width: 6px;
  height: 6px;
  margin-right: 8px; /* 텍스트와의 간격 */
  border-right: 1.5px solid #495057;
  border-bottom: 1.5px solid #495057;
  
  /* 회전을 주어 아래 방향(∨) 화살표 모양 생성 */
  transform: translateY(-2px) rotate(45deg); 
  transition: transform 0.3s ease;
}


/* 1080 이상에서만 사이드바 닫기 */
@media (min-width: 1080px) {
  /* sidebar 닫힌 상태 */
  .clvr-sidebar {
    transition: all 0.15s;
  }
  .clvr-main.sidebar-collapsed .clvr-sidebar {
    width: 80px;
    background-color: var(--gray-50);
    transition: all 0.15s 0.15s;
  }
  .clvr-main.sidebar-collapsed .clvr-sidebar:before {
    display: none; 
  }

  .clvr-sidebar-tit {
    white-space: nowrap;
    overflow: hidden;    
    transition: all 0.1s 0.05s; 
  }
  .clvr-main.sidebar-collapsed .clvr-sidebar-tit {
    /* display: none; */
    visibility: hidden;
    opacity: 0;
    transition: all 0.05s;
  }

  .clvr-main.sidebar-collapsed .clvr-history-wrap {
    visibility: hidden;
    opacity: 0;
  }
  .clvr-main.sidebar-collapsed .sidebar-open-btn {
    display: block;
  }
  .clvr-main.sidebar-collapsed .clvr-logo {
    position: relative;
    top: 20px;
    left: -6px;
    transform: rotate(-90deg);
    /* transition: all 0.01s; */
  }
  .clvr-main.sidebar-collapsed .clvr-sidebar-menu {
    position: relative;
    top: -40px;
    left: 2px;
    width: 52px;
    padding: 10px;
    background-color: var(--white);
    border-radius: 999px;
  }  
  .clvr-main.sidebar-collapsed .sidebar-menu-item {
    display: block;
    width: 32px;
    height: 32px;
    padding: 4px;
    border-radius: 50%;
  }
  .clvr-main.sidebar-collapsed .sidebar-colse-btn {
    display: none;
  }
  .clvr-main.sidebar-collapsed .sidebar-open-btn {
    display: block;
  }
  .clvr-main.sidebar-collapsed .sidebar-open-btn .menu-item-ico {
    background: url(/images/clvr/ico-showlist.png) no-repeat left top/100%;
  }  

  .menu-item-txt {
    white-space: nowrap;
    overflow: hidden;     
    transition: all 0.1s 0.05s; 
  }
  .clvr-main.sidebar-collapsed .menu-item-txt {
    visibility: hidden;
    opacity: 0;
    white-space: nowrap;
    overflow: hidden; 
    transition: all 0.1s;   
  }


  .clvr-main.sidebar-collapsed .sidebar-open-ico {
    display: block;
    width: 32px;
    height: 32px;
    margin-left: 7px;
    background: url(/images/clvr/ico-wheel.svg) no-repeat center center/22px;
    font-size: 0;
  }




  .clvr-main.sidebar-collapsed .clvr-stage-inner {
    margin: 0 auto;
  }


  .clvr-main.sidebar-collapsed .clvr-search-wrap.fixed-bottom {
    left: calc(max(0px, (100vw - 1476px) / 2) + 80px);
    right: max(0px, (100vw - 1476px) / 2 + 30px );
      /* border: 2px solid #ccc; */
  }
}

/* responsive */
@media (max-width: 1349px) {
  /* clvr intro */
  .suggestion-list {
    flex-wrap: wrap;
  }
}

@media (max-width: 1279px) {
  /* clvr intro */
  .clvr-note-typing {
    display: none;
  }
  .clvr-search-wrap.fixed-bottom {
    padding: 0 20px;
  }
}

.clvr-mob-dimmed {
  display: none;
}

@media (max-width: 959px) {
  /* clvr intro */
  .clvr-sidebar {
    position: fixed;
    top: 0;
    left: -333px;
    width: 333px;
    height: 100vh;
    padding: 0 10px;
    border-radius: 0 24px 0 0;
    z-index: 1000;
    transition: all 0.2s;
  }
  .clvr-mob-dimmed {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s;
  }
  .clvr-main.mob-side-open .clvr-mob-dimmed {
    visibility: visible;
    opacity: 1;
  }
  .clvr-main.mob-side-open .clvr-sidebar {
    left: 0;
  }
  .mob-sidebar-close-btn {
    position: absolute;
    top: 16px;
    right: 10px;  
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 100;
  }
  .mob-sidebar-close-btn::before,
  .mob-sidebar-close-btn::after {
    content: '';
    position: absolute;
    top: 23px;
    left: 13px;
    width: 22px;
    height: 2px;
    background-color: var(--gray-700);
  }
  .mob-sidebar-close-btn::before { 
    transform: rotate(45deg); 
  }
  .mob-sidebar-close-btn::after { 
    transform: rotate(-45deg); 
  }
  .clvr-sidebar-inner {
    padding-top: 30px;
  }
  .clvr-sidebar-tit {
    display: none;
  }
  .clvr-sidebar-header {
    position: relative;
    padding-left: 44px;
  }
  .clvr-sidebar-header:after {
    content: '';
    position: absolute;
    top: 0;
    left: 10px;
    width: 26px;
    height: 26px;
    background: url(/images/clvr/ico-wheel.svg) no-repeat center center/100%;
  }
  .clvr-sidebar-menu {
    margin-top: 36px;
  }
  .sidebar-menu-item {
    font-size: 1.7rem;
  }
  .sidebar-colse-btn {
    display: none;
  }
  .history-tit {
    font-size: 1.6rem;
  }
  .history-date {
    font-size: 1.3rem;
  }
  .history-tool {
    opacity: 1;
  }
  .clvr-main-inner {
    padding: 0;
  }
  .clvr-stage {
    padding: 0;
    padding-top: 10px;
    background: url(/images/clvr/bg-gradation-bottom.png) no-repeat center bottom / 400%;
  }
  .clvr-stage-inner {
    padding: 0 20px;
  }
  .clvr-switch {
    width: auto;
  }
  .clvr-switch-btn {
    width: auto;
    padding: 0 16px;
    font-size: 1.4rem;
  }
  .clvr-switch-btn span {
    display: none;
  }
  .clvr-switch.agent .clvr-switch-bg {
    width: 72px;
  }
  .clvr-switch.mento .clvr-switch-bg {
    left: 72px;
    width: 110px;
  }
  .btn-persona.btn-stroke,
  .btn-mento.btn-stroke {
    border-radius: 999px;
  }
  .btn-mento span {
    display: none;
  }
  .mento-img {
    width: 48px;
    height: 48px;
  }
  .mento-nm {
    font-size: 4.4rem;
  }
  .mento-tag-txt {
    font-size: 1.8rem;
  }
  .clvr-avatar {
    width: 48px;
    height: 48px;
  }
  .clvr-avatar .avatar-lottie {
    width: 41px;
    height: 41px;
  }
  .clvr-logo-copy {
    font-size: 4.4rem;
    font-weight: 600;
  }
  .clvr-agent-select>p {
    font-size: 1.8rem;
  }
  .clvr-hero-copy h2,
  .clvr-hero-copy p {
    display: none;
  }
  .clvr-search-wrap {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 20px;
    padding: 0 20px;
  }
  .suggestion-list {
    display: none;
  }
  .clvr-desc-mob {
    display: block;
    margin-bottom: 30px;
    color: var(--white);
    font-size: 2.4rem;
    text-align: center;
  }
  .chatview-head {
    padding-top: 8px;
    padding-bottom: 12px;
  }

  .chat-view-avatar {
    display: none;
  }
  .chatview-part {
    position: relative;
    padding-left: 20px;
  }
  .chatview-part::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 16px;
    height: 16px;
    background: url(/images/clvr/ico-wheel.svg) no-repeat center center/100%;
  }


  .clvr-chatview-container .mento-avatar .mento-img {
    display: none;
  }
  .clvr-chatview-container .mento-avatar .mento-nm {
    position: relative;
    padding-left: 20px;
    font-size: 1.8rem;
  }
  .clvr-chatview-container .mento-avatar .mento-nm::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 16px;
    height: 16px;
    background: url(/images/clvr/ico-wheel.svg) no-repeat center center/100%;
  }  
  .mento-select .chatview-part {
    padding-left: 6px;
  }
  .mento-select .chatview-part::before {
    display: none;
  }
  .job-clvr-container.is-open .job-clvr-position.clvr-stage-chatview .clvr-search-wrap {
    bottom: 0;
  }


  .message {
    font-size: 1.7rem;
  }
  
  .clvr-search-wrap.fixed-bottom {
    left: 0;
    right: 0;
    padding-bottom: 40px;
  }
  .clvr-search-wrap.fixed-bottom .clvr-desc-mob {
    display: none;
  }
  .message-log {
    padding-bottom: 70px;
  }



}

@media (max-width: 767px) {
  /* clvr intro */
  .clvr-stage {
    background: url(/images/clvr/bg-gradation-bottom.png) no-repeat center bottom / 700%;
  }  
}











