@charset "UTF-8";

.chatroom__contents {
  display: flex;
  justify-content: space-between;
  column-gap: 48px;
}
.chatroom-aside {
  display: grid;
  row-gap: 45px;
  max-width: 336px;
  width: 100%;
}
.chatroom-aside__info {
  display: grid;
  row-gap: 40px;
  width: 100%;
  padding: 40px 45px;
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(49, 50, 51, 0.12);
  box-sizing: border-box;
}
.chatroom-aside__info-contents {
  display: grid;
  row-gap: 10px;
}
.chatroom-aside__title {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #FFB92F;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
}
.chatroom-aside__title::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.chatroom-aside__title.chatroom-aside__title--chat {
  padding-left: 25px;
  min-height: 18.5px;
}
.chatroom-aside__title.chatroom-aside__title--chat::before {
  background-image: url("../../img/icon_aside_chat.svg");
  width: 20px;
  aspect-ratio: 20/18.5;
}
.chatroom-aside__title.chatroom-aside__title--meter {
  padding-left: 20.5px;
  min-height: 19px;
}
.chatroom-aside__title.chatroom-aside__title--meter::before {
  background-image: url("../../img/icon_aside_meter.svg");
  width: 15.5px;
  aspect-ratio: 15.5/19;
}
.chatroom-aside__title.chatroom-aside__title--report {
  padding-left: 21px;
  min-height: 16px;
}
.chatroom-aside__title.chatroom-aside__title--report::before {
  background-image: url("../../img/icon_aside_report.svg");
  width: 16px;
  aspect-ratio: 1/1;
}
.chatroom-aside__info-roomName {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
.chatroom-aside__person {
  display: flex;
  align-items: center;
  column-gap: 5px;
}
.chatroom-aside__person-thumb {
  width: 48px;
}
.chatroom-aside__person-name {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.05em;
  width: calc( 100% - 48px );
}
.chatroom-aside__faculty {
  display: grid;
  row-gap: 5px;
}
.chatroom-aside__faculty-title {
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.chatroom-aside__faculty-name {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
.chatroom-aside__meter {
  display: grid;
  row-gap: 10px;
}
.chatroom-aside__meter-content {
  display: grid;
  row-gap: 5px;
}
.chatroom-aside__meter-lead {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
.chatroom-aside__meter-text,
.chatroom-aside__meter-text span {
  font-size: 8.6px;
  color: rgba(0, 0, 0, 0.5);
  font-family: 'Roboto Condensed', sans-serif;
  line-height: 1.33;
}
.chatroom-aside__meter-list {
  display: flex;
  column-gap:calc( ( 246px - (59px * 4) ) / 3 );
}
.chatroom-aside__meter-list li {
  max-width: 59px;
  width: 100%;
  min-height: 4px;
  border-radius: 35.92px;
  background-color: rgba(0, 0, 0, 0.1);
}
.chatroom-aside__meter-list li.active {
  background-color: #FFB92F;
}
.chatroom-aside__report {
  display: grid;
  row-gap: 20px;
  padding-top: 10px;
}
.chatroom-aside__report-list {
  display: grid;
  row-gap: 10px;
  max-height: 152px;
  overflow-y: auto;
}
.chatroom-aside__report-list .simplebar-content {
  display: grid;
  row-gap: 10px;
}
.chatroom-aside__report-item {
  line-height: 1;
}
.chatroom-aside__report-item a {
  display: inline-block;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.05em;
  padding-right: 22px;
  position: relative;
}
.chatroom-aside__report-item a::before {
  content: "";
  background-image: url("../../img/icon_blank.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  aspect-ratio: 1/1;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.chatroom-aside__report-btn {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 60px;
  font-size: 14px;
  font-weight: 600;
  color: #3A414D;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 0 36px 0 30px;
  border: 1px solid #3A414D;
  border-radius: 28px;
  box-sizing: border-box;
  position: relative;
}
.chatroom-aside__report-btn::before {
  content: "";
  background-image: url("../../img/icon_arrow_attempt.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 6.29px;
  height: 10px;
  position: absolute;
  right: 16.5px;
  top: 50%;
  transform: translateY(-50%);
}
.chatroom-main {
  width: calc( 100% - 336px - 48px );
}
.chatroom-main__title-wrap {
  display: none;
}
.chatroom-main__box {
  width: 100%;
  min-height: 772px;
  padding: 45px 48px 112px;
  border-radius: 24px;
  background-color: #fff;
  box-shadow: 0 16px 40px rgba(49, 50, 51, 0.12);
  box-sizing: border-box;
  position: relative;
}
.chatroom-main__chat-list {
  display: grid;
  row-gap: 20px;
  max-height: 615px;
  padding-bottom: 40px;
  padding-right: 10px;
  overflow-y: auto;
}
.chatroom-main__chat-list .simplebar-content {
  display: grid;
  row-gap: 20px;
}
.chatroom-main__chat-item {
  display: flex;
  align-items: flex-start;
  column-gap: 10px;
}
.chatroom-main__chat-thumb {
  width: 48px;
}
.chatroom-main__chat-thumb img {
  width: 100%;
}
.chatroom-main__chat-textarea {
  display: grid;
  row-gap: 5px;
  padding: 15px;
  border-radius: 10px;
  box-sizing: border-box;
  position: relative;
}
.yourself .chatroom-main__chat-textarea {
  max-width: 606px;
  width: 100%;
  margin-left: 8px;
  background-color: #F2F2F7;
}
.yourself .chatroom-main__chat-textarea::before {
  content: "";
  width: 8px;
  height: 12px;
  background-color: #F2F2F7;
  clip-path: polygon(0% 50%, 8px 0%, 8px 12px);
  position: absolute;
  top: 20px;
  left: -7px;
}
.myself.chatroom-main__chat-item {
  justify-content: flex-end;
}
.myself .chatroom-main__chat-textarea {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 614px;
  margin-right: 8px;
  background-color: #FCF9C7;
}
.myself .chatroom-main__chat-textarea::before {
  content: "";
  width: 8px;
  height: 12px;
  background-color: #FCF9C7;
  clip-path: polygon(8px 50%, 0% 0%, 0% 12px);
  position: absolute;
  top: 20px;
  right: -7px;
}
.chatroom-main__chat-text {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 300;
  letter-spacing: 0.05em;
}
.chatroom-main__chat-time {
  font-size: 10px;
  line-height: 1.3;
  font-weight: 300;
  color: #767676;
  letter-spacing: 0.05em;
}
.chatroom-main__input {
  display: grid;
  row-gap: 5px;
  width: 100%;
  min-height: 122px;
  padding: 28px 37px 16px;
  border-radius: 0 0 12px 12px;
  background-color: #FBFBFB;
  border-top: 2px solid #F2F2F7;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  box-sizing: border-box;
  box-shadow: 0 -10px 30px rgba(49, 50, 51, 0.12);
}
.chatroom-main__input-contents {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.chatroom-main__input-textarea {
  max-width: calc( 100% - 60px );
  width: 100%;
  line-height: 0;
}
.chatroom-main__input-textarea textarea {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.05em;
  width: 100%;
  padding: 16px 23px;
  background-color: #fff;
  border: 2px solid #D9D9D9;
  border-radius: 10px;
  box-sizing: border-box;
}
.chatroom-main__input-textarea textarea::-webkit-scrollbar {
  width: 5px;
  border-radius: 35.92px;
  background-color: rgba( 0, 0, 0, 0.1 );
}
.chatroom-main__input-textarea textarea::-webkit-scrollbar-thumb {
  width: 5px;
  border-radius: 35.92px;
  background-color: rgba( 0, 0, 0, 0.2 );
}
.chatroom-main__input-textarea textarea::placeholder {
  color: #9EA09F;
}
.chatroom-main__input-submit {
  display: grid;
  place-content: center;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #D9D9D9;
  position: relative;
}
.chatroom-main__input-submit img {
  width: 24px;
  position: relative;
  z-index: 3;
}
.chatroom-main__input-submit.active {
  cursor: pointer;
  background: linear-gradient(to right, #F6AA15, #FFBBAE);
  background: -webkit-linear-gradient(left, #F6AA15, #FFBBAE);
  background: -moz-linear-gradient(left, #F6AA15, #FFBBAE);
}
.chatroom-main__input-submit.active::after {
  content: "";
  background: linear-gradient(to right, #D56700, #FFAB66);
  background: -webkit-linear-gradient(left, #D56700, #FFAB66);
  background: -moz-linear-gradient(left, #D56700, #FFAB66);
  transition: opacity 0.5s;
  border-radius: 10px;
  position: absolute;
  inset: 0;
  opacity: 0;
}
.chatroom-main__input-submit.active:hover::after {
  opacity: 1;
}
.chatroom-main__input-count,
.chatroom-main__input-count span {
  max-width: calc(100% - 60px);
  width: 100%;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #9EA09F;
  text-align: right;
}
.chatroom-main__input-count.is-over,
.chatroom-main__input-count.is-over span {
  color: #FF3B10;
}

.chatroom-fiexd {
  display: none;
}
@media print, screen and (min-width: 768px) {
  #modal-info {
    display: none !important;
  }
}
@media print, screen and (max-width: 767px) {
  .chatroom__contents {
    display: flex;
    justify-content: space-between;
    column-gap: 12.8vw;
  }
  .chatroom-aside {
    display: none;
  }
  .chatroom-main {
    display: grid;
    width: 100%;
    row-gap: 5.333vw;
  }
  .chatroom-main__title-wrap {
    display: grid;
    row-gap: 2.667vw;
  }
  .chatroom-main__title-text {
    display: flex;
    align-items: center;
    min-height: 4.933vw;
    font-size: 4.267vw;
    color: #FFB92F;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding-left: 6.667vw;
    position: relative;
  }
  .chatroom-main__title-text::before {
    content: "";
    background-image: url(../../img/icon_aside_chat.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    width: 5.333vw;
    aspect-ratio: 20 / 18.5;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .chatroom-main__title-name {
    font-size: 5.333vw;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.05em;
  }
  .chatroom-main__box {
    width: 100%;
    min-height: auto;
    padding: 7.467vw 4vw 26.933vw;
    border-radius: 5.333vw;
    background-color: #fff;
    box-shadow: 0 2.086vw 5.215vw rgba(49, 50, 51, 0.12);
    box-sizing: border-box;
    position: relative;
  }
  .chatroom-main__chat-list {
    display: grid;
    row-gap: 4vw;
    max-height: 98.933vw;
    padding-bottom: 8vw;
    padding-right: 2.667vw;
    overflow-y: auto;
  }
  .chatroom-main__chat-list .simplebar-content {
    display: grid;
    row-gap: 4vw;
  }
  .chatroom-main__chat-item {
    display: flex;
    align-items: flex-start;
    column-gap: 1.333vw;
  }
  .chatroom-main__chat-thumb {
    width: 8vw;
  }
  .chatroom-main__chat-textarea {
    display: grid;
    row-gap: 1.333vw;
    padding: 4vw;
    border-radius: 2.667vw;
    box-sizing: border-box;
    position: relative;
  }
  .yourself .chatroom-main__chat-textarea {
    max-width: 68.533vw;
    width: 100%;
    margin-left: 2.133vw;
    background-color: #F2F2F7;
  }
  .yourself .chatroom-main__chat-textarea::before {
    content: "";
    width: 2.133vw;
    height: 2.667vw;
    background-color: #F2F2F7;
    clip-path: polygon(0% 50%, 10px 0%, 8px 10px);
    position: absolute;
    top: 4vw;
    left: -1.867vw;
  }
  .myself.chatroom-main__chat-item {
    justify-content: flex-end;
  }
  .myself .chatroom-main__chat-textarea {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    max-width: 68.533vw;
    margin-right: 2.133vw;
    background-color: #FCF9C7;
  }
  .myself .chatroom-main__chat-textarea::before {
    content: "";
    width: 2.133vw;
    height: 2.667vw;
    background-color: #FCF9C7;
    clip-path: polygon(8px 50%, 0% 0%, 0% 10px);
    position: absolute;
    top: 4vw;
    right: -1.867vw;
  }
  .chatroom-main__chat-text {
    font-size: 3.733vw;
    line-height: 1.3;
    font-weight: 300;
    letter-spacing: 0.05em;
  }
  .chatroom-main__chat-time {
    font-size: 2.667vw;
    line-height: 1.3;
    font-weight: 300;
    color: #767676;
    letter-spacing: 0.05em;
  }
  .chatroom-main__input {
    display: grid;
    row-gap: 0.533vw;
    width: 100%;
    min-height: 26.667vw;
    padding: 6.133vw 4vw 3.733vw;
    border-radius: 0 0 5.333vw 5.333vw;
    background-color: #FBFBFB;
    border-top: 2px solid #F2F2F7;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    box-sizing: border-box;
    box-shadow: 0 -1.304vw 3.911vw rgba(49, 50, 51, 0.12);
  }
  .chatroom-main__input-contents {
    display: flex;
    align-items: center;
    column-gap: 2.667vw;
  }
  .chatroom-main__input-textarea {
    max-width: calc( 100% - 14.667vw );
    width: 100%;
    line-height: 0;
  }
  .chatroom-main__input-textarea textarea {
    font-size: 3.733vw;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: 0.05em;
    width: 100%;
    padding: 3.733vw;
    background-color: #fff;
    border: 2px solid #D9D9D9;
    border-radius: 2.667vw;
    box-sizing: border-box;
  }
  .chatroom-main__input-textarea textarea::-webkit-scrollbar {
    width: 1.333vw;
    border-radius: 9.579vw;
    background-color: rgba( 0, 0, 0, 0.1 );
  }
  .chatroom-main__input-textarea textarea::-webkit-scrollbar-thumb {
    width: 1.333vw;
    border-radius: 9.579vw;
    background-color: rgba( 0, 0, 0, 0.1 );
  }
  .chatroom-main__input-textarea textarea::placeholder {
    color: #9EA09F;
  }
  .chatroom-main__input-submit {
    display: grid;
    place-content: center;
    width: 12vw;
    height: 12vw;
    border-radius: 2.667vw;
    background: #D9D9D9;
    position: relative;
  }
  .chatroom-main__input-submit img {
    width: 6.133vw;
    position: relative;
    z-index: 3;
  }
  .chatroom-main__input-submit.active {
    cursor: pointer;
    background: linear-gradient(to right, #F6AA15, #FFBBAE);
    background: -webkit-linear-gradient(left, #F6AA15, #FFBBAE);
    background: -moz-linear-gradient(left, #F6AA15, #FFBBAE);
  }
  .chatroom-main__input-submit.active::after {
    content: "";
    background: linear-gradient(to right, #D56700, #FFAB66);
    background: -webkit-linear-gradient(left, #D56700, #FFAB66);
    background: -moz-linear-gradient(left, #D56700, #FFAB66);
    transition: opacity 0.5s;
    border-radius: 2.667vw;
    position: absolute;
    inset: 0;
    opacity: 0;
  }
  .chatroom-main__input-submit.active:hover::after {
    opacity: 1;
  }
  .chatroom-main__input-count,
  .chatroom-main__input-count span {
    max-width: calc( 100% - 14.667vw );
    width: 100%;
    font-size: 3.2vw;
    line-height: 1.3;
    letter-spacing: 0.05em;
    color: #9EA09F;
    text-align: right;
  }
  .chatroom-main__input-count.is-over,
  .chatroom-main__input-count.is-over span {
    color: #FF3B10;
  }

  .chatroom-fiexd {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 3.2vw;
    width: 8vw;
    min-height: 36.267vw;
    border-radius: 2.667vw 0 0 2.667vw;
    padding: 3.733vw 0 3.733vw;
    position: fixed;
    right: 0;
    top: 35.467vw;
    background: linear-gradient(to right, #F6AA15, #FFBBAE);
    background: -webkit-linear-gradient(left, #F6AA15, #FFBBAE);
    background: -moz-linear-gradient(left, #F6AA15, #FFBBAE);
    box-sizing: border-box;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .chatroom-fiexd:hover {
    opacity: 1;
  }
  .chatroom-fiexd::before {
    content: "";
    background: linear-gradient(to right, #D56700, #FFAB66);
    background: -webkit-linear-gradient(left, #D56700, #FFAB66);
    background: -moz-linear-gradient(left, #D56700, #FFAB66);
    transition: opacity 0.5s;
    border-radius: 2.667vw;
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0;
  }
  .chatroom-fiexd:hover::before {
    opacity: 1;
  }
  .chatroom-fiexd span {
    display: block;
    /* font-size: 3.2vw;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.2em;
    -webkit-text-orientation: upright;
    text-orientation: upright; */
  }
  .chatroom-fiexd span img {
    display: block;
    width: 100%;
  }
  .chatroom-fiexd > img {
    width: 3.2vw;
    aspect-ratio: 1/1;
  }

  .chatroom-modal {
    padding: 8vw;
  }
  .chatroom-modal__guide {
    font-size: 2.667vw;
    font-weight: 700;
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1.92;
    margin-bottom: 3.2vw;
    color: #60B8EF
  }
  .chatroom-modal__content-wrap {
    display: grid;
    row-gap: 5.333vw;
  }
  .chatroom-modal__content {
    display: grid;
    row-gap: 2.667vw;
  }
  .chatroom-modal__title {
    display: flex;
    align-items: center;
    font-size: 4.267vw;
    color: #FFB92F;;
    font-weight: 600;
    letter-spacing: 0.05em;
    position: relative;
  }
  .chatroom-modal__title::before {
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .chatroom-modal__title.chatroom-modal__title--chat {
    padding-left: 6.667vw;
    min-height: 4.933vw;
  }
  .chatroom-modal__title.chatroom-modal__title--chat::before {
    background-image: url("../../img/icon_aside_chat.svg");
    width: 5.333vw;
    aspect-ratio: 20/18.5;
  }
  .chatroom-modal__title.chatroom-modal__title--meter {
    padding-left: 5.467vw;
    min-height: 5.067vw;
  }
  .chatroom-modal__title.chatroom-modal__title--meter::before {
    background-image: url("../../img/icon_aside_meter.svg");
    width: 4.133vw;
    aspect-ratio: 15.5/19;
  }
  .chatroom-modal__title.chatroom-modal__title--report {
    padding-left: 5.6vw;
    min-height: 4.267vw;
  }
  .chatroom-modal__title.chatroom-modal__title--report::before {
    background-image: url("../../img/icon_aside_report.svg");
    width: 4.267vw;
    aspect-ratio: 1/1;
  }
  .chatroom-modal__roomName {
    font-size: 5.333vw;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.05em;
  }
  .chatroom-modal__person {
    display: flex;
    align-items: center;
    column-gap: 1.333vw;
  }
  .chatroom-modal__person-thumb {
    width: 12.8vw;
  }
  .chatroom-modal__person-thumb img {
    width: 100%;
  }
  .chatroom-modal__person-name {
    font-size: 3.2vw;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: 0.05em;
    width: calc(100% - 12.8vw);
  }
  .chatroom-modal__faculty {
    display: grid;
    row-gap: 1.333vw;
  }
  .chatroom-modal__faculty-title {
    font-size: 3.733vw;
    line-height: 1.3;
    letter-spacing: 0.05em;
    font-weight: 600;
  }
  .chatroom-modal__faculty-name {
    font-size: 3.2vw;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: 0.05em;
  }
  .chatroom-modal__meter {
    display: grid;
    row-gap: 1.333vw;
  }
  .chatroom-modal__meter-lead {
    font-size: 3.2vw;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: 0.05em;
  }
  .chatroom-modal__meter-content {
    display: grid;
    row-gap: 0.667vw;
  }
  .chatroom-modal__meter-text,
  .chatroom-modal__meter-text span {
    font-size: 2.293vw;
    color: rgba(0, 0, 0, 0.5);
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1.33;
  }
  .chatroom-modal__meter-list {
    display: flex;
    column-gap: 0.8vw;
  }
  .chatroom-modal__meter-list li {
    width: 16.4vw;
    min-height: 1.067vw;
    border-radius: 9.579vw;
    background-color: rgba(0, 0, 0, 0.1);
  }
  .chatroom-modal__meter-list li.active {
    background-color: #FFB92F;
  }
  .chatroom-modal__report {
    display: grid;
    row-gap: 4vw;
    padding-top: 1.333vw;
  }
  .chatroom-modal__report-list {
    display: grid;
    row-gap: 2.667vw;
    max-height: 47.733vw;
    overflow-y: auto;
  }
  .chatroom-modal__report-list .simplebar-content {
    display: grid;
    row-gap: 2.667vw;
  }
  .chatroom-modal__report-item {
    line-height: 1;
  }
  .chatroom-modal__report-item a {
    display: inline-block;
    font-size: 3.467vw;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: 0.05em;
    padding-right: 5.867vw;
    position: relative;
  }
  .chatroom-modal__report-item a::before {
    content: "";
    background-image: url("../../img/icon_blank.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 3.2vw;
    aspect-ratio: 1 / 1;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .chatroom-modal__report-btn {
    display: flex;
    align-items: center;
    width: 65.333vw;
    margin: 0 auto;
    min-height: 16vw;
    font-size: 3.733vw;
    font-weight: 600;
    color: #3A414D;
    line-height: 1.3;
    text-align: center;
    letter-spacing: 0.05em;
    padding: 0 9.4vw 0 7vw;
    border: 1px solid #3A414D;
    border-radius: 7.467vw;
    box-sizing: border-box;
    position: relative;
  }
  .chatroom-modal__report-btn::before {
    content: "";
    background-image: url("../../img/icon_arrow_attempt.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 1.677vw;
    height: 2.667vw;
    position: absolute;
    right: 4.4vw;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* simplebar */
.simplebar-track.simplebar-vertical {
  width: 5px;
}
.simplebar-track {
  border-radius: 35.92px;
  background: rgba( 0, 0, 0, 0.1 );
}
.simplebar-scrollbar {
  border-radius: 35.92px;
  background: rgba( 0, 0, 0, 0.2 );
}
.simplebar-scrollbar::after {
  content: none;
}
.simplebar-scrollbar::before {
  background: rgba( 0, 0, 0, 0.2 );
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}
@media print, screen and (max-width: 767px) {
  ::-webkit-scrollbar {
    display: none;
  }
  .simplebar-track.simplebar-vertical {
    width: 1.333vw;
  }
  .simplebar-track {
    border-radius: 9.579vw;
    background: rgba( 0, 0, 0, 0.1 );
  }
  .simplebar-scrollbar {
    border-radius: 9.579vw;
  }
  .simplebar-scrollbar::before {
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba( 0, 0, 0, 0.2 );
  }
  .simplebar-scrollbar.simplebar-visible::before {
    opacity: 1;
  }
}