@import "https://fonts.googleapis.com/icon?family=Material+Icons|Roboto";

body {
  background: #fff;
  font-family: "Roboto Light";
}

body,
html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

* {
  outline: none;
}

.recorder_wrapper {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.recorder {
  display: inline-block;
  text-align: center;
  width: 500px;
  max-width: 100%;
}

.record_btn {
  width: 100px;
  height: 100px;
  font-family: "Material Icons";
  font-size: 48px;
  color: #e74c3c;
  background: none;
  border: 2px solid #e74c3c;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.15s linear;
}

.record_btn:hover {
  transition: 0.15s linear;
  transform: scale(1.05);
}

.record_btn:active {
  background: #f5f5f5;
}

.record_btn:after {
  content: "\E029";
}

.record_btn[disabled] {
  border: 2px solid #ccc;
}

.record_btn[disabled]:after {
  content: "\E02B";
  color: #ccc;
}

.record_btn[disabled]:hover {
  transition: 0.15s linear;
  transform: none;
}

.record_btn[disabled]:active {
  background: none;
}

.recording {
  animation: recording 2s infinite ease-in-out;
  position: relative;
}

.recording:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0px;
  height: 0px;
  margin: 0px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  animation: recording_before 2s infinite ease-in-out;
}

@keyframes recording {
  from {
    transform: scale(1.1);
  }

  50% {
    transform: none;
  }

  to {
    transform: scale(1.1);
  }
}

@keyframes recording_before {
  80% {
    width: 200px;
    height: 200px;
    margin: -100px;
    opacity: 0;
  }

  to {
    opacity: 0;
  }
}

.record_canvas {
  width: 60px;
  height: 100px;
  display: inline-block;
}

.txt_btn {
  color: #000;
  text-decoration: none;
  transition: 0.15s linear;
  animation: text_btn 0.3s ease-in-out;
}

div[id^="main_rolling_tab_"] ul li > table,
div[id^="main_rolling_tab_"] ul li > table > tbody,
div[id^="main_rolling_tab_"] ul li > table > tbody > tr:first-child,
div[id^="main_rolling_tab_"] ul li > table > tbody > td {
  display: block;
}
div[id^="main_rolling_tab_"] ul li > table > tbody > tr {
  display: none;
}
div[id^="main_rolling_tab_"] ul li > table > tbody > td {
  width: 218px;
}
div[id^="main_rolling_tab_"] .font_number img {
  display: inline-block;
}
div[id^="main_rolling_tab_"] .slick-dots {
  margin-top: 25px;
}
.slick-dots {
  text-align: center;
  font-size: 0;
}
.slick-dots li {
  display: inline-block;
  vertical-align: middle;
}
.slick-dots li + li {
  margin-left: 8px;
}
.slick-dots li button {
  overflow: hidden;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  background: #ccc;
  text-indent: -9999px;
  transition: 0.3s;
  outline: none;
  cursor: pointer;
}
.slick-dots li.slick-active button {
  background: #f7941c;
}
.thume-list-m {
  margin-top: 60px;
}
.thume-list-m tbody tr td div.thume-height {
  float: none;
  margin: 0 auto;
}

#main_rolling_tab_3 table {
  width: 100%;
}
#main_rolling_tab_3 table tbody tr:empty {
  display: none;
}
#main_rolling_tab_3 .thume-height table td {
  display: inline-block;
}
#main_rolling_tab_3 td img {
  display: inline-block;
}

h2.page_title {
  display: block;
  font-size: 20px;
  margin-bottom: 30px;
  color: rgba(0, 0, 0, 0.9);
}
.chat_room {
  position: relative;
  height: 700px;
  background: #007fae;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  margin-bottom: 20px;
  overflow: hidden;
}
.chat_room .record_btn_wrap {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 20px;
  border-radius: 17px;
  -webkit-border-radius: 17px;
  -moz-border-radius: 17px;
  overflow: hidden;
}

.chat_room .record_btn_wrap .txt_wrap {
  position: relative;
  margin-right: 15%;
}
.chat_room .record_btn_wrap .txt_wrap p {
  background: #fff;
  box-sizing: border-box;
  margin: 0;
  color: #737373;
  font-size: 20px;
  line-height: 40px;
  padding: 15px 0 15px 10px;
}
.chat_room .record_btn_wrap .txt_wrap input {
  width: 100%;
  display: block;
  box-sizing: border-box;
  border: 0;
  background: #fff;
  padding: 0 60px 0 10px;
  font-size: 14px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  display: none;
}
.chat_room .record_btn_wrap .txt_wrap button {
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  width: 40px;
  border: 0;
  background-color: transparent;
  background-image: url(../img/icon_search.png);
  background-repeat: no-repeat;
  background-size: 30px;
  cursor: pointer;
  background-position: center;
}
.chat_room .record_btn_wrap > button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: center;
  border: 0;
  outline: none;
  cursor: pointer;
  width: 15%;
  background: #cccccc;
  color: #999;
  background-color: #ececec;
  font-size: 20px;
}
.chat_room .record_btn_wrap .record_search {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  background: #fff;
  display: none;
}

.chat_room .record_btn_wrap .record_search > input {
  width: 100%;
  display: block;
  box-sizing: border-box;
  border: 0;
  background: #fff;
  padding: 0 140px 0 10px;
  font-size: 14px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
}
.chat_room .record_btn_wrap .record_search > button.close_btn {
  background-image: url(../img/icon_close.png);
  background-repeat: no-repeat;
  background-size: 24px;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  position: absolute;
  right: 130px;
  top: 50%;
  margin-top: -12px;
  z-index: 2;
  width: 24px;
  height: 24px;
}
.chat_room .record_btn_wrap .record_search > button.submit_btn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: center;
  border: 0;
  outline: none;
  cursor: pointer;
  width: 15%;
  background: #cccccc;
  color: #999;
  background-color: #ececec;
  font-size: 20px;
}
.chat_room .msg_box {
  position: absolute;
  left: 0;
  right: 0;
  top: 20px;
  bottom:140px;
  box-sizing: border-box;
  padding-left: 30px;
  padding-right: 30px;
  max-height: 570px;
  overflow: auto;
}
.chat_room .msg_box li {
  display: block;
  text-align: right;
  margin: 2em 3em 2em 0;
  padding: 0;
  opacity: 1;
  -webkit-transition: all 0.75s ease-in;
  transition: all 0.75s ease-in;
  font-size: 0;
  margin-top: 15px;
  padding-bottom: 32px;
}
.chat_room .msg_box li.say {
  cursor: pointer;
}
.chat_room .msg_box li.say p {
  background-image: url(../img/icon_speaker.png);
  background-repeat: no-repeat;
  background-position: left 0.8em top 1em;
  background-size: 20px;
}
.chat_room .msg_box li.reply {
  text-align: left;
}
.chat_room .msg_box li.reply p {
  padding: 1em 3em 1em 1em;
}

.chat_room .msg_box li.reply p > * {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.25em;
  line-height: 1.6em;
}
.chat_room .msg_box li.reply p img {
  height: 16px;
  margin-right: 8px;
}
.chat_room .msg_box li.reply p a {
  background: #efefef;
  font-size: 12px;
  line-height: 24px;
  padding: 0 10px;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  margin-left: 8px;
}
.chat_room .msg_box li.visible {
  opacity: 1;
}
.chat_room .msg_box li p {
  max-width: 50%;
  border: 0;
  background-color: #fff;
  color: #737373;
  font-size: 1.25em;
  padding: 1em 1em 1em 1em;
  margin: 0;
  border-radius: 12px;
  position: relative;
  border-left: 0px solid #089fd6;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  background-repeat: no-repeat;
  background-position: 1em center;
  padding-left: 3em;
  font-size: 14px;
  display: inline-block;
}
.chat_room .msg_box li p:after {
  content: "";
  display: block;
  position: absolute;
  right: 1em;
  bottom: -32px;
  height: 0px;
  width: 0px;
  border-style: solid;
  border-width: 16px;
  border-top-color: #fff;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
}
.chat_room .msg_box li.reply p:after {
  right: initial;
  left: 1em;
}

@media (max-width: 720px) {
    
  .content {
    /* padding: 0 15px; */
    box-sizing: border-box;
  }
  h2.page_title {
    display: block;
    font-size: 16px;
    line-height: 1.68;
    margin-bottom: 20px;
  }
  .chat_room {
    margin: 0 auto;
    height: 350px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
  }
  .chat_room .msg_box {
    max-height: 270px;
    bottom: 80px;
  }
  .chat_room .record_btn_wrap {
    left: 5%;
    right: 5%;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
  }
  .chat_room .record_btn_wrap .txt_wrap p {
    font-size: 13px;
    padding: 10px 0 10px 7px;
    line-height: 20px;
  }
  .chat_room .record_btn_wrap .txt_wrap button {
    right: 34px;
    width: 20px;
    height: 20px;
    background-size: cover;
    margin-top: -10px;
    top: 50%;
  }
  .chat_room .record_btn_wrap > button,
  .chat_room .record_btn_wrap .record_search > button.submit_btn {
    width: 75px;
    font-size: 14px;
  }
  .file-upload {
    padding: 5% 0;
  }
  .file-upload-image {
    width: 100%;
    max-width: 100%;
    max-height: none;
  }
  .result-message {
    max-width: 100%;
    width: 100%;
    padding: 10px;
    max-height: none;
  }
  .result-message ul li span {
    font-size: 15px;
  }
  .result-message ul li a {
    font-size: 13px;
  }
  .result-message ul li + li {
    margin-top: 8px;
  }

  .slick-dots li button {
    width: 12px;
    height: 12px;
  }
  .slick-dots li + li {
    margin-left: 5px;
  }

  .chat_room .record_btn_wrap .record_search > input {
    font-size: 13px;
    padding-right: 110px;
    padding-left: 8px;
  }
  .chat_room .record_btn_wrap .record_search > button.close_btn {
    width: 20px;
    height: 20px;
    top: 50%;
    right: 85px;
    background-size: cover;
    margin-top: -10px;
  }
  .chat_room .msg_box li p {
    max-width: 90%;
  }
}
