@charset "utf-8";

#answerList .center {
  padding: 0 5px;
}

/* answer list */
.main_answer {
  border: 1px solid #ddd;
  padding: 15px 20px;
  transition: all 0.3s;
  margin-bottom: 5px;
  border-radius: 20px;
}
.atm_top_wrap {
  position: relative;
  padding-left: 130px;
}
.atm_top_wrap figure {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
}
.atm_top_wrap figure.profile {
  z-index: 99;
}
.atm_top_wrap figure img {
  width: 100%;
  height: 100%;
}

/* 프로필클릭 */
.profile_mini {
  width: 400px;
  background: #fff;
  display: none;
  position: absolute;
  top: 110%;
  left: 5px;
  z-index: 99;
  border-radius: 20px;
  padding: 15px;
  transition: all 0.3s;
}
.profile_mini::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: #fff;
  position: absolute;
  top: -5px;
  left: 20px;
  transform: rotate(45deg);
}
.profile_mini > span {
  font-size: 10px;
  padding: 1px 5px;
  border: 1px solid #fd0031;
  color: #fd0031;
  border-radius: 10px;
}
.profile_mini .profile_mini_info {
  width: 100%;
  text-align: justify;
}
.profile_mini .profile_mini_info th > span {
  display: inline-block;
  font-size: 10px;
  padding: 0px 5px;
  border: 1px solid #fd0031;
  color: #fd0031;
  border-radius: 10px;
  margin-right: 2px;
}
.profile_mini .profile_mini_info th img {
  display: block;
  width: 30px;
  margin: auto;
  cursor: pointer;
}
.profile_mini .profile_mini_info th:last-child img {
  width: 28px;
}
.profile_mini .profile_mini_info td {
  font-size: 12px;
  color: #888;
  font-weight: 500;
}
.profile_mini p {
  text-align: center;
  margin: 10px 0;
  padding: 5px;
  font-weight: bold;
  font-size: 15px;
}
.profile_mini .profile_mini_almoney {
  width: 100%;
  text-align: center;
  font-size: 12px;
  margin-bottom: 10px;
}
.profile_mini .profile_mini_almoney tr {
  margin-bottom: 5px;
}

.profile_mini .profile_mini_almoney td {
  font-weight: 500;
  color: #888;
}

.profile_mini .profile_mini_almoney th {
  font-size: 13px;
}
.profile_mini a {
  display: block;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  border: 1px solid #333;
  border-radius: 20px;
  background: transparent;
  transition: all 0.3s;
  padding: 5px 0;
  margin: 15px 0 10px;
}
.profile_mini a:hover {
  background: #666;
  color: #fff;
}
.profile_mini i {
  display: block;
  height: 1px;
  width: 80%;
  background: #eee;
  margin: 0 auto 10px;
}

#black_screen {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  background: rgba(0, 0, 0, 0.3);
  display: none;
}
/**/
.atm_top_wrap h2 {
  display: inline-block;
  text-align: center;
  font-size: 43px;
  color: #fd0031;
  position: absolute;
  top: 50%;
  left: 70px;
  transform: translateY(-50%);
}
.atm_top_wrap h2 span {
  display: block;
  font-size: 11px;
  padding: 2px 8px;
  background: #fd0031;
  color: #fff;
  border-radius: 15px;
  margin-top: 3px;
}
.atm_top_wrap h2 span.yellow {
  background: #ffee75;
  color: #333;
}
.atm_top_wrap ul {
  display: inline-block;
  width: 80%;
}
.atm_top_wrap ul li span {
  display: inline-block;
  text-align: center;
  font-size: 10px;
  padding: 1px 5px;
  border: 1px solid #fd0031;
  color: #fd0031;
  border-radius: 10px;
  position: relative;
  top: -1px;
}
.atm_top_wrap ul li strong {
  color: #fc5a85;
  display: inline-block;
  margin-right: 2px;
  margin-left: -1px;
}
.atm_top_wrap ul li:nth-child(2) {
  font-size: 20px;
  font-weight: bold;
}
.atm_top_wrap > ul li:last-child {
  font-size: 12px;
  color: #666;
}
.atm_top_wrap ul li:last-child img {
  margin-bottom: -2px;
  margin-right: 2px;
}
.atm_top_wrap ul li b {
  color: #fd8d0d;
}
.atm_top_wrap ul li .answer_date {
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.atm_top_wrap ul li .answer_date.date_underLine {
  text-decoration: underline;
}
.atm_top_wrap ul li .answer_date span {
  display: none;
  width: 130px;
  position: absolute;
  top: 140%;
  left: 50%;
  transform: translateX(-50%);
  background: #666;
  color: #fff;
  text-align: center;
  border: 0;
  font-size: 12px;
  letter-spacing: 0;
}
.atm_top_wrap ul li .answer_date span::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: #666;
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  z-index: -1;
}

.atm_more_btn_box {
  width: 10px;
  padding-left: 2px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 5;
}
.atm_more_btn_box i {
  display: block;
  width: 4px;
  height: 4px;
  background: #aaa;
  border-radius: 50%;
  margin-bottom: 3px;
}
.atm_more_btn_box i:last-child {
  margin-bottom: 0;
}
.atm_more_btn_box .more_btn_menu {
  position: absolute;
  top: 50%;
  right: 100%;
  background: #fff;
  width: 125px;
  border: 1px solid #ccc;
  padding: 5px;
  padding-bottom: 0;
  border-radius: 10px 0 10px 10px;
  box-shadow: 2px 2px 2px #ddd;
  display: none;
}
.atm_more_btn_box .more_btn_menu > li {
  height: 35px;
  width: 100%;
  font-weight: normal !important;
  font-size: 14px !important;
  padding-top: 5px;
  border-bottom: 1px solid #ddd;
}
.atm_more_btn_box .more_btn_menu li:nth-child(2) {
  font-size: 14px;
  font-weight: normal;
}
.atm_more_btn_box .more_btn_menu li:last-child {
  border-bottom: 0;
}

.atm_more_btn_box .more_btn_menu li span {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 8px;
  margin-bottom: -4px;
  padding: 0;
  border: 0;
  color: #fd0031;
  border-radius: 0;
}
.atm_more_btn_box .more_btn_menu li:nth-child(1) span {
  background-image: url("/pub/answer/answerList/images/atm_more_1.png");
}
.atm_more_btn_box .more_btn_menu li:nth-child(2) span {
  background-image: url("/pub/answer/answerList/images/atm_more_2.png");
}
.atm_more_btn_box .more_btn_menu li:nth-child(3) span {
  background-image: url("/pub/answer/answerList/images/atm_more_4.png");
}
.atm_more_btn_box .more_btn_menu li:nth-child(4) span {
  background-image: url("/pub/answer/answerList/images/atm_more_4.png");
}
.atm_more_btn_box .more_btn_menu li:nth-child(5) span {
  background-image: url("/pub/answer/answerList/images/atm_more_5.png");
}
.atm_more_btn_box .more_btn_menu li:nth-child(6) span {
  background-image: url("/pub/answer/answerList/images/atm_more_3.png");
}

.answer_text {
  padding: 0 10px;
  margin: 20px 0 30px;
  word-break: break-all;
  font-size: 15px;
}
.answer_text p img {
  max-width: 100%;
}
.sub_answer .answer_slide p img {
  max-width: 100%;
}

.atm_question_more {
  width: 100%;
  margin-bottom: 20px;
}
.atm_question_more p {
  display: inline-block;
  padding: 0px 10px;
  font-size: 12px;
  line-height: 26px;
  border: 1px solid #d3d3d3;
  cursor: pointer;
  margin-right: 5px;
  border-radius: 3px;
  font-weight: bold;
  color: #737373;
}

.answer_reply_btn {
  padding-top: 5px;
  display: flex;
  align-items: center;
}
.answer_reply_btn li {
  display: flex;
}
.answer_reply_btn li:nth-child(4) {
  width: 100%;
  text-align: right;
  justify-content: flex-end;
}
.answer_reply_btn li a {
  display: inline-block;
}
.answer_reply_btn li:first-child a {
  padding: 5px 13px;
  border: 1px solid #d3d3d3;
  border-radius: 20px 20px 20px 0;
  font-size: 12px;
  position: relative;
}
.answer_reply_btn li:first-child a img {
  margin-bottom: -3px;
  margin-right: 4px;
}
.answer_reply_btn li:first-child a span {
  display: block;
  font-size: 10px;
  width: 15px;
  height: 15px;
  text-align: center;
  line-height: 13px;
  border: 1px solid #d3d3d3;
  border-radius: 7px;
  background: #fff;
  position: absolute;
  top: -5px;
  right: -3px;
}
.answer_reply_btn li:nth-child(2) span {
  display: inline-block;
  font-size: 12px;
  letter-spacing: -0.5px;
  padding: 3px 6px;
  color: #737373;
  border: 1px solid #d3d3d3;
  background: #f1f1f1;
  margin-right: 5px;
  margin-top: 5px;
  cursor: pointer;
}
.answer_reply_btn li.choose {
  float: right;
  font-size: 14px;
  padding: 3px 65px;
  border: 1px solid #fd8d0d;
  color: #fd8d0d;
  border-radius: 100px;
  cursor: pointer;
  vertical-align: middle;
}
.answer_reply_btn li.choose a {
  color: #fd8d0d;
  font-weight: bold;
}
/* 번역버튼 변경 */
.answer_reply_btn li:nth-of-type(3) {
  margin-left: 15px;
}
.answer_reply_btn li:nth-of-type(3) .translate_toggle_btn {
  border: 1px solid #fd0031;
  color: #fd0031;
  width: 42px;
  line-height: 40px;
  border-radius: 25px;
  font-size: 12px;
  text-align: center;
  cursor: pointer;
}
.answer_reply_btn li:nth-of-type(3) .translate_toggle_btn.translate_on {
  border: 1px solid #999;
  color: #999;
}

.answer_reply_btn li:nth-child(4) a {
  color: #fd0031;
  font-size: 14px;
  font-weight: bold;
  padding: 3px 65px;
  white-space: nowrap;
  border: 1px solid #fd0031;
  border-radius: 100px;
}

.replydiv {
  display: block;
  width: 100%;
}
.replydiv .replydiv_el textarea {
  width: 100%;
  height: 40px;
  resize: none;
  font-size: 14px;
  border: 1px solid #ccc;
  color: #666;
  border-radius: 5px;
  outline: none;
  padding: 11px 20px;
  margin-top: 10px;
}
.replydiv .replydiv_el div {
  display: inline-block;
  width: 50%;
}
.replydiv .replydiv_el .reply_renew p {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  border: 1px solid #d0d0d0;
  border-radius: 20px;
  color: #888;
  background: #fff;
  cursor: pointer;
  margin: 0;
}
.reply_renew p em {
  font-family: "Material Icons";
  font-style: normal;
  font-size: 13px;
  position: relative;
  top: 2px;
}
.reply_renew p img {
  width: 13px;
  display: inline-block;
  margin-bottom: -2px;
}
.replydiv .replydiv_el .reply_submit {
  text-align: right;
  margin-left: -5px;
}
.replydiv .replydiv_el .reply_submit p {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: #ccc;
  margin-bottom: 0;
}
.replydiv .replydiv_el .reply_submit button {
  display: inline-block;
  border: 1px solid #999;
  background: #fff;
  border-radius: 30px;
  width: 65px;
  padding: 4px 0;
  cursor: pointer;
}
.replydiv .replydiv_el .reply_submit button img {
  display: inline-block;
  width: 12px;
  margin-bottom: -1px;
}
.replydiv .replydiv_el .reply_submit button i {
  display: inline-block;
  font-style: normal;
  color: #999;
  font-size: 12px;
}
.replydiv .replyViewMore {
  display: flex;
  align-items: center;
  justify-content: center;
}
.replyHide {
  display: none;
}
.replydiv .replyViewMore button,
.replyHide button {
  width: 100%;
  line-height: 30px;
  font-size: 12px;
  border: 1px solid #d0d0d0;
  border-radius: 20px;
  background: #fff;
  color: #888;
  cursor: pointer;
}

.replydiv_user {
  padding-top: 10px;
}
.replydiv_user_list table {
  width: 100%;
  text-align: justify;
  table-layout: fixed;
  margin-bottom: 10px;
}
.replydiv_user_list table tr th:first-child {
  width: 60px;
  text-align: center;
  padding-left: 12px;
}
.replydiv_user_list table tr th:last-child {
  max-height: 75px;
  font-size: 14px;
  font-weight: 300;
  background: #f1f1f1;
  padding: 10px 10px 7px 10px;
  border-radius: 15px 15px 15px 0;
  word-break: break-all;
  position: relative;
  left: 0;
  top: 0;
  padding-right: 10px;
  padding-bottom: 7px;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.replydiv_user_list table tr th:last-child span {
  display: none;
  background: #f1f1f1;
  cursor: pointer;
  position: absolute;
  right: 10px;
  bottom: 4px;
}
.replydiv_user_list table tr th:last-child.show {
  white-space: normal;
  overflow: unset;
  text-overflow: unset;
  padding-right: 10px;
  -webkit-line-clamp: unset;
  max-height: unset;
}
.replydiv_user_list table tr th.system_message {
  font-style: italic;
  background: #fff;
  color: #666;
  border: 1px dashed #999;
}

.replydiv_user_list table tr th a {
  display: block;
  width: 36px;
  height: 36px;
  overflow: unset;
  border-radius: 50%;
}
.replydiv_user_list table tr th[id^="tq_reply"] a,
.replydiv_user_list table tr th[id^="ta_reply"] a {
  display: inline;
  width: auto;
  height: auto;
  border-radius: none;
  color: #03d;
  text-decoration: underline;
}

.replydiv_user_list table tr th a img {
  width: 100%;
}
.replydiv_user_list table tr td {
  font-size: 12px;
  padding-left: 10px;
  font-weight: bold;
  color: #999;
}
.replydiv_user_list table tr td a {
  color: #999;
}
.replydiv_user_list table tr td b {
  display: inline-block;
  font-weight: 300;
  position: relative;
  cursor: pointer;
}
.replydiv_user_list table tr td b.date_underLine {
  text-decoration: underline;
}
.replydiv_user_list table tr td b span {
  display: none;
  width: 130px;
  position: absolute;
  z-index: 1;
  top: 140%;
  left: 50%;
  transform: translateX(-50%);
  background: #666;
  color: #fff;
  text-align: center;
  border-radius: 10px;
}
.replydiv_user_list table tr td b span::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: #666;
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  z-index: -1;
}
.replydiv_user_list table tr td i {
  font-style: normal;
  font-weight: 300;
  cursor: pointer;
}
.sub_answer {
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 20px;
  margin-bottom: 5px;
}
.sub_answer.tab {
  position: relative;
  border: 0;
}
.sub_answer.tab::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: 2px solid #fd0031;
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: -1;
}
.sub_answer_top {
  position: relative;
}
.sub_answer .sub_answer_top h3 {
  position: relative;
}
.addAlmoney {
  display: inline-block;
  cursor: pointer;
  position: relative;
}
.addAlmoney > img {
  width: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.addAlmoney span {
  display: ilnine-block;
  color: #ff255f;
  font-size: 12px;
  font-weight: bold;
  vertical-align: middle;
}
.addAlmoney ul {
  display: block;
  min-width: 190px;
  font-size: 12px;
  padding: 10px;
  border: 1px solid #eb639d;
  background: #fff;
  font-weight: normal;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  display: none;
}
.addAlmoney ul li:first-child {
  color: #f2056e;
  line-height: 17px;
  margin-bottom: 10px;
}
.addAlmoney ul li {
  line-height: 26px;
}

.sub_answer .sub_answer_top .answer_choice {
  display: block;
  float: right;
}

.sub_answer .sub_answer_top .answer_choice p {
  display: inline-block;
  font-size: 16px;
  padding: 0;
  margin: 0;
  color: #fd8d0d;
}
.sub_answer .sub_answer_top .answer_choice p.choice_netizen_p {
  color: #a5a5a5;
}

.sub_answer .sub_answer_top .answer_choice p img {
  width: 25px;
  margin-bottom: -7px;
}

.sub_answer .sub_answer_user {
  text-align: justify;
  width: 100%;
}
.sub_answer .sub_answer_user tr th:first-child {
  width: 50px;
}
.sub_answer .sub_answer_user figure {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
  cursor: pointer;
}
.sub_answer .sub_answer_user figure.profile {
  z-index: 99;
}

.sub_answer .sub_answer_user figure img {
  width: 100%;
  height: 100%;
}
.sub_answer .sub_answer_user tr th:nth-child(2) {
  padding-left: 10px;
  font-size: 18px;
}
.sub_answer .sub_answer_user tr th:nth-child(2) span {
  display: inline-block;
  font-weight: 300;
  font-size: 10px;
  padding: 1px 5px;
  border: 1px solid #fd0031;
  color: #fd0031;
  border-radius: 10px;
  margin-right: 5px;
  position: relative;
  top: -2px;
}
.sub_answer .sub_answer_user tr td {
  font-size: 12px;
  padding-left: 10px;
  color: #666;
}
.sub_answer .sub_answer_user tr td b {
  color: #fd8d0d;
}
.sub_answer .sub_answer_user tr td .answer_date {
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.sub_answer .sub_answer_user tr td .answer_date.date_underLine {
  text-decoration: underline;
}

.sub_answer .sub_answer_user tr td .answer_date span {
  display: none;
  width: 130px;
  position: absolute;
  top: 140%;
  left: 50%;
  transform: translateX(-50%);
  background: #666;
  color: #fff;
  text-align: center;
  font-size: 12px;
  border-radius: 10px;
  letter-spacing: 0;
}
.sub_answer .sub_answer_user tr td .answer_date span::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: #666;
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  z-index: -1;
}
.sub_answer .sub_answer_user tr td img {
  margin-right: 2px;
  margin-bottom: -2px;
}
.sub_answer .sub_answer_user tr td img:last-child {
  margin-bottom: -4px;
  margin-left: 2px;
}
.sub_answer .sub_answer_user tr th:last-child {
  width: 10px;
  padding-left: 2px;
  cursor: pointer;
  position: relative;
}
.sub_answer .sub_answer_user tr th:last-child i {
  display: block;
  width: 4px;
  height: 4px;
  background: #aaa;
  border-radius: 50%;
  margin-bottom: 3px;
}
.sub_answer .sub_answer_user tr th:last-child i:last-child {
  margin-bottom: 0;
}
.sub_answer .sub_answer_user tr th:last-child ul {
  position: absolute;
  top: 50%;
  right: 100%;
  z-index: 5;
  background: #fff;
  width: 110px;
  border: 1px solid #ccc;
  padding: 5px;
  padding-bottom: 0;
  border-radius: 10px 0 10px 10px;
  box-shadow: 2px 2px 2px #ddd;
  display: none;
}
.sub_answer .sub_answer_user tr th:last-child ul li {
  height: 35px;
  width: 100%;
  font-weight: normal !important;
  font-size: 14px !important;
  padding-top: 5px;
  border-bottom: 1px solid #ddd;
}
.sub_answer .sub_answer_user tr th:last-child ul li:last-child {
  border-bottom: 0;
}

.sub_answer .sub_answer_user tr th:last-child ul li span {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 8px;
  margin-bottom: -4px;
}
.sub_answer .sub_answer_user tr th:last-child ul li:nth-child(1) span {
  background-image: url("/Common/images/atm_more_2.png");
}
.sub_answer .sub_answer_user tr th:last-child ul li:nth-child(2) span {
  background-image: url("/Common/images/atm_more_5.png");
}
.sub_answer .sub_answer_user tr th:last-child ul li:nth-child(3) span {
  background-image: url("/Common/images/atm_more_3.png");
}

.sub_answer .answer_tab {
  display: block;
}
.sub_answer .answer_tab ol {
  position: relative;
}
.sub_answer .answer_tab ol li {
  display: inline-block;
  cursor: pointer;
}
.sub_answer .answer_tab ol li .alscore {
  display: inline-block;
  position: relative;
}
.sub_answer .answer_tab ol li .alscore::before {
  content: "";
  display: block;
  width: 145%;
  height: 5px;
  background: #ccc;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 65%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.sub_answer .answer_tab ol li .alscore img {
  width: 35px;
  margin-left: -10px;
}
.sub_answer .answer_tab ol li .alscore img:first-child {
  margin-left: 0;
}
.sub_answer .answer_tab ol li .alscore span {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  width: 50px;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
}
.sub_answer .answer_tab ol li:last-child {
  position: absolute;
  top: 25%;
  right: 10px;
  font-size: 14px;
}
.sub_answer .answer_tab ol li:last-child::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #333;
  border-left: 1px solid #333;
  position: absolute;
  top: 50%;
  left: 110%;
  transform: translateY(-50%) rotate(-135deg);
}

.sub_answer .answer_tab ol li:last-child strong {
  margin: 0 3px;
  font-size: 15px;
  color: #fd0031;
}
.sub_answer .answer_tab p span {
  display: inline-block;
  border: 1px solid #c3c2c2;
  border-radius: 5px;
  color: #656565;
  padding: 0 4px;
  letter-spacing: -0.5px;
  font-size: 12px;
  line-height: 20px;
  margin-left: 2px;
  cursor: pointer;
}
.sub_answer p {
  padding: 0 10px;
  margin: 10px 0 20px;
  word-break: break-all;
  font-size: 15px;
  cursor: pointer !important;
}
.answer_tab_el2 {
  word-break: break-all;
  margin-bottom: 20px;
  margin-top: 20px;
  font-size: 15px;
}
.answer_tab_el2 > p {
  padding: 0;
  margin: 0;
  font-size: 15px;
}
.answer_tab_el2 a,
.prgContent_Q a {
  color: #007bff;
  text-decoration: underline;
  cursor: pointer;
  background-color: transparent;
}
.answer_tab_el2 a:hover,
.prgContent_Q a:hover {
  color: #0056b3;
  text-decoration: underline;
}
.answer_tab_el2 a:active,
.prgContent_Q a:active {
  color: #003366;
}

.atm_answer_more {
  width: 100%;
}
.atm_answer_more p {
  display: inline-block;
  padding: 0 10px;
  font-size: 12px;
  line-height: 26px;
  border: 1px solid #d3d3d3;
  cursor: pointer;
  margin-right: 5px;
  border-radius: 3px;
  font-weight: bold;
  color: #737373;
}

.sub_answer .answer_slide {
  display: none;
}
.sub_answer .answer_slide ul.altong_icon {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
  background: #f7f7f7;
  border-radius: 15px;
  border: 1px solid #f5f5f5;
  padding: 5px 0;
  margin-bottom: 10px;
}

.sub_answer .answer_slide ul.altong_icon li {
  display: inline-block;
  width: 45px;
  margin: 0 20px;
  position: relative;
}
.sub_answer .answer_slide ul.altong_icon li.check_icon::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("/Common/images/esti_mark.png") center no-repeat;
  background-size: contain;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.sub_answer .answer_slide ul.altong_icon li a {
  display: block;
  width: 100%;
}
.sub_answer .answer_slide ul.altong_icon li a img {
  display: block;
  width: 100%;
  margin-bottom: 3px;
}
.sub_answer .answer_slide ul.altong_icon li a span {
  display: block;
  width: 100%;
  font-size: 12px;
  color: #9d9d9d;
  letter-spacing: -1px;
}
.sub_answer .answer_slide ul.altong_icon li a span em {
  font-style: normal;
  color: #fd0031;
  font-weight: bold;
  margin-left: 3px;
}
.sub_answer .answer_slide ul.altong_icon li:last-child {
  display: flex;
  align-items: center;
  width: 50px;
}
.sub_answer .answer_slide ul.altong_icon li .languages_translation {
  width: 50px;
  height: 50px;
  font-size: 12px;
  border-radius: 25px;
  border: 1px solid #fd0031;
  color: #fd0031;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.sub_answer
  .answer_slide
  ul.altong_icon
  li
  .languages_translation.translate_on {
  border: 1px solid #9d9d9d;
  color: #9d9d9d;
}
/* 리스트 목록 바로가기 */
.answer_list_next {
  text-align: center;
  margin-top: 20px;
}
.answer_list_next ul li {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: relative;
  margin: 0 10px;
}
.answer_list_next ul li a {
  border: 0;
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
}
.answer_list_next ul li a img {
  display: block;
  width: 100%;
  margin: auto;
}

/* 광고 */
#overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: none;
}
#overlay .addpop {
  width: 85%;
  max-width: 800px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#overlay .addpop img {
  display: block;
  text-align: center;
  width: 100%;
  max-width: 505px;
  margin: auto;
}
@media (max-width: 800px) {
  #overlay .addpop > img {
    width: 100%;
  }
}
#overlay .addpop a {
  display: block;
  color: #fff;
  text-align: center;
  margin-top: 10px;
}
#overlay .addpop a span {
  display: inline-block;
  padding: 4px 20px;
  background: #000;
  border-radius: 20px;
}

/* footer 고정 */
.site {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
.site-content {
  flex: 1;
  margin-bottom: 20px;
}

/* more btn */

.more_btn_list {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: none;
}
/* 공유하기 */
.more_btn_list .shareWrap {
  width: 90%;
  max-width: 300px;
  height: 200px;
  background: #fff;
  margin: auto;
  border-radius: 20px;
  font-size: 15px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
.more_btn_list .shareWrap table {
  width: 100%;
}
.more_btn_list .shareWrap table tr {
  height: 100px;
}
.more_btn_list .shareWrap table td {
  width: 33.3333%;
}

.more_btn_list .shareWrap a {
  display: inline-block;
  font-size: 12px;
}
.more_btn_list .shareWrap a img {
  display: block;
  width: 40px;
  margin: 0 auto 10px;
}
/* 훈훈알 증정하기 */
.add_almoney_popup {
  width: 80%;
  max-width: 300px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  overflow: hidden;
  display: none;
}
.add_almoney_popup ul {
  width: 100%;
  height: 100%;
  text-align: center;
}
.add_almoney_popup ul li h3 {
  font-size: 16px;
  line-height: 50px;
  border-bottom: 1px solid #eee;
}
.add_almoney_popup ul li p {
  margin-top: 10px;
  font-weight: 500;
  font-size: 14px;
}
.add_almoney_popup ul li p span {
  font-weight: bold;
  color: #fd0031;
}
.add_almoney_popup .add_almoney_input {
  font-weight: bold;
  margin: 20px 0;
}
.add_almoney_popup input[type="number"] {
  border: none;
  border-bottom: 1px solid #333;
  margin-right: 10px;
  padding: 6px 0;
  font-size: 17px;
  width: 140px;
  font-weight: bold;
  text-align: center;
  outline: none;
}
.add_almoney_popup input[type="number"]::placeholder {
  color: #ddd;
  padding-left: 20px;
}
.add_almoney_popup button {
  border: 1px solid #fd0031;
  background: #fff;
  width: 85%;
  font-size: 14px;
  font-weight: bold;
  border-radius: 20px;
  line-height: 25px;
  color: #fd0031;
  outline: none;
  margin-bottom: 20px;
  cursor: pointer;
}
.add_almoney_popup button[type="reset"] {
  border: 1px solid #333;
  color: #666;
}
.add_almoney_popup ul li:nth-child(4),
.add_almoney_popup ul li:nth-child(5) {
  display: inline-block;
  width: 50%;
  margin-left: -2px;
}

/* 신고하기 */
.submit_report {
  width: 90%;
  max-width: 520px;
  background: #fff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
.submit_report h4 {
  text-align: center;
  font-size: 16px;
  letter-spacing: -0.5px;
  width: 100%;
  line-height: 37px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.submit_report h4 img {
  width: 19px;
  margin-bottom: -3px;
  margin-right: 5px;
}
.report_wrap {
  padding: 20px;
}
.report_wrap .report_target {
  border: 1px dashed #da3030;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 10px;
}
.report_wrap .report_target table {
  text-align: justify;
  display: block;
  width: 100%;
}
.report_wrap .report_target table tbody {
  display: block;
  width: 100%;
}
.report_wrap .report_target tr {
  display: block;
  width: 100%;
}
.report_wrap .report_target tr th {
  padding: 4px 0;
  font-size: 14px;
  letter-spacing: -0.5px;
  display: inline-block;
  width: 16%;
}
.report_wrap .report_target tr td {
  line-height: 24px;
  padding: 3px 0;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  width: 82%;
}
.report_reason p {
  font-size: 13px;
  font-weight: bold;
  line-height: 26px;
}
.report_reason table {
  width: 100%;
}
.report_reason table tr td {
  line-height: 28px;
  font-size: 15px;
}
.report_reason input[type="radio"] {
  margin: 0 4px;
  outline: none;
}
.report_reason textarea {
  resize: none;
  width: 100%;
  margin-top: 13px;
  padding: 5px 10px;
  font-size: 14px;
  letter-spacing: -0.5px;
  line-height: 22px;
  border: 1px solid #cacaca;
  min-height: 70px;
  outline: none;
}

.report_bottom {
  text-align: center;
  margin-top: 5px;
  color: #989898;
}
.report_bottom p i {
  font-size: 20px;
  margin-bottom: 8px;
}
.report_bottom p {
  font-size: 14px;
}

.report_btn table {
  margin-top: 10px;
  width: 100%;
  text-align: center;
}
.report_btn input {
  text-align: center;
  width: 90%;
  border: none;
  background: #fff;
  border: 1px solid #bbbaba;
  font-size: 14px;
  border-radius: 20px;
  line-height: 24px;
  color: #bbbaba;
  font-weight: bold;
  letter-spacing: -0.5px;
  outline: none;
  cursor: pointer;
}
.report_btn input[type="submit"] {
  border: 1px solid #2bb330;
  color: #2bb330;
}

/* 쪽지 보내기 */
.user_message {
  display: none;
  background: #fff;
  width: 90%;
  max-width: 400px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  padding: 15px;
}
.user_message h5 {
  font-size: 16px;
  text-align: center;
}
.user_message h5 span {
  color: #eb639d;
}
.user_message .message_usertext {
  border: 1px solid #d2d2d2;
  width: 100%;
  font-weight: 500;
  padding: 5px;
  border-radius: 3px;
  resize: none;
  height: 180px;
  outline: none;
}
.user_message .message_btns {
  text-align: center;
  margin-top: 12px;
}
.user_message .message_btns span {
  padding: 3px 0px;
  width: 40%;
  border: 1px solid #fd0031;
  color: #fd0031;
  font-weight: 400;
  letter-spacing: 1.5px;
  border-radius: 25px;
  display: inline-block;
  font-size: 14px;
  position: relative;
  cursor: pointer;
}
.user_message .message_btns .message_cancle {
  border: 1px solid #8e8e8e;
  color: #8e8e8e;
  margin-right: 15px;
}
/* 좋아요,싫어요 버튼 수정 */
.answer_reply_btn li:nth-child(2) {
  margin-left: 43px;
}
.answer_reply_btn li:nth-child(2) div {
  display: inline-block;
  margin-right: 30px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
}
.answer_reply_btn li:nth-child(2) div img {
  display: block;
  width: 25px;
  margin: 0 auto;
}
.answer_reply_btn li:nth-child(2) div b {
  display: block;
  color: #999;
  font-weight: normal;
  font-size: 10px;
}
/* 룰렛 이동 confirm */
.confirm_modal {
  display: none;
  z-index: 6;
  background: #fefefe;
  border: 0.5px solid #bebebe;
  width: 90%;
  max-width: 320px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  padding: 10px;
  box-sizing: border-box;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  z-index: 10;
}
.confirm_modal p:nth-of-type(1) {
  font-size: 1rem;
  line-height: 50px;
  border-bottom: 1px solid #eee;
  text-align: center;
  font-weight: bold;
  color: #707070;
}
.confirm_modal p:nth-of-type(2) {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #707070;
  margin: 30px 0;
}
.confirm_modal .confrim_button {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 10px;
}
.confirm_modal .confrim_button input {
  outline: none;
  border: 1px solid #666;
  border-radius: 20px;
  background: #fff;
  color: #707070;
  font-size: 14px;
  font-weight: bold;
  width: 30%;
  cursor: pointer;
  padding: 3px 0;
}
.confirm_modal .confrim_button input:nth-last-of-type(1) {
  outline: none;
  border: 1px solid #fd0031;
  border-radius: 20px;
  background: #fff;
  color: #fd0031;
  font-size: 14px;
  font-weight: bold;
  width: 30%;
  cursor: pointer;
  padding: 3px 0;
}

#modal_background {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.confirm_modal .confrim_button input:nth-child(3) {
  margin-right: 0;
}
.ql-align-right {
  text-align: right;
}
.ql-align-center {
  text-align: center;
}
.ql-align-left {
  text-align: left;
}
.ql-size-small {
  font-size: 0.75em;
}
.ql-size-large {
  font-size: 1.5em;
}
.ql-size-huge {
  font-size: 2.5em;
}
u {
  text-decoration: underline;
}

pre {
  white-space: pre-line;
  font-family: "Noto Sans KR", "Noto Sans JP", "Noto Sans HK", "Noto Sans SC",
    "Noto Sans TC", sans-serif;
}
/* answerList ad circle timer */
#countdown {
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  height: 40px;
  width: 40px;
  text-align: center;
  transition: opacity 0.3s;
}
@media (max-width: 800px) {
  #countdown {
    top: -45px;
  }
}
.countClose {
  display: none;
  width: 40px;
  cursor: pointer;
}
.countClose:hover {
  filter: brightness(120%);
}
#countdown #countdown-number {
  color: white;
  display: inline-block;
  line-height: 40px;
}

#countdown svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  transform: rotateY(-180deg) rotateZ(-90deg);
}

#countdown svg circle {
  stroke-dasharray: 113px;
  stroke-dashoffset: 0px;
  stroke-linecap: round;
  stroke-width: 2px;
  stroke: white;
  fill: none;
  /* animation: countdown 30s linear infinite forwards; */
}

#countdown.animateOn {
  opacity: 1;
}
#countdown.animateOn svg circle {
  animation: countdown 1.5s linear infinite forwards;
}
@keyframes countdown {
  from {
    stroke-dashoffset: 0px;
  }
  to {
    stroke-dashoffset: 113px;
  }
}
