.costomer_detail_content {
  position:relative;
  width:100%;
  border-top:7px solid #E3E3E7;
}

.costomer_detail_content li {
  font-size:18px;
  padding:1.5rem 0;
  border-bottom:1px solid #E3E3E7;
}

.costomer_detail_content li h4 {
  display:flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-weight:400;
}

.costomer_detail_content li h4 span {
  display:flex;
  align-items: center;
  line-height: 1.2;
  width:calc(100% - 30px);
}

.costomer_detail_content li h4 img {
  transform: rotate(0deg);
  transition: all ease .3s;
}

.img_rotate {
  transform: rotate(180deg) !important;
  transition: all ease .3s;
}

.costomer_detail_content li em {
  width:33px;
  background:#B8B8B8;
  border-radius: 10px;
  margin:0 0.8rem 0 0.3rem;
  padding:7px;
  text-align: center;
}

.faq_answer {
  display:none;
}

.faq_answer div {
  display:flex;
  flex-direction: row;
  align-items: flex-start;
  padding:1.5rem 1rem 0 3rem;
}

.faq_answer div em {
  color:#fff;
  background:#3770FB !important;
}

.faq_answer div p {
  display: inline-block;
  width:calc(100% - 40px);
  line-height: 1.5;
}

/*******************************data_room*********************************/

.data_room_content {
  position:Relative;
  width:100%;
}

.data_room_content ul {
  display:flex;
  flex-direction: row;
  align-items: center;
  width:100%;
  text-align:center;
  font-size:18px;
}

.data_room_content ul li {
  width:10%;
  height:71px;
  padding:5px;
  display:flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-bottom:1px solid #E3E3E7;
}

.data_room_content ul li:nth-of-type(2) {
  width:70%;
}

/* 테이블 내용 좌측정렬 251203 추가 */
.data_room_content ul:not(:first-of-type) li:nth-of-type(2) {
    justify-content: flex-start; /* 데이터만 좌측 */
}

.data_room_content ul li:nth-of-type(2) a{
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1; /* 라인수 */
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  overflow: hidden;
}

.data_room_table_header {
  background:#E3E3E7;
  border-bottom:0;
}

/*******************************data_room_detail*********************************/

.data_room_detail {
  position:relative;
  width:100%;
  border-top:8px solid #E3E3E7;
  padding-top:1.5rem;
}

.data_room_detail h3 {
  width:100%;
  font-size:28px;
  font-weight:400;
  line-height: 1.5;
}

.room_detail_list {
  display:flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size:15px;
  padding:0.3rem 0 1rem 0;
  border-bottom:1px solid #E3E3E7;
}

.room_detail_list li span {
  position:relative;
  color:rgba(5, 5, 5, 0.5);
  padding:0 1rem 0 0;
}

.room_detail_list li span:first-of-type::after {
  content:'';
  position:absolute;
  top:2px;
  right:0;
  width:1px;
  height:14px;
  background:rgba(5, 5, 5, 0.5);
}

.room_detail_list li span:last-of-type {
  padding:0 0 0 1rem;
}

.room_detail_list li button {
  background:transparent;
  border:0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.room_detail_text {
  width:100%;
  line-height: 1.5;
  padding-top:2rem;
  border-bottom:1px solid #E3E3E7;
  font-size:18px;
}

.data_detail_btn {
  display:flex;
  justify-content: center;
  align-items: center;
  width:129px;
  height:46px;
  background:#3770FB;
  border:1px solid rgba(0, 0, 0, 0.1);
  margin:4rem auto 0 auto;
  border-radius: 10px;
  color:#fff;
  font-size:18px;
}

@media screen and (max-width:768px) {
  .costomer_detail_content li {
    font-size:16px;
  }
  .costomer_detail_content li em {
    width:28px;
    height:28px;
    font-size: 14px;
    border-radius: 8px;
    margin:0 0.5rem 0 0.2rem;
  }
  .data_room_content ul {
    font-size:16px;
  }
  .data_room_content ul li {
    height:60px;
  }
  .data_room_content ul li img {
    width:20px;
  }
  .data_room_detail h3 {
    font-size: 24px;
  }
  .room_detail_text,
  .data_detail_btn {
    font-size:16px;
  }
}

@media screen and (max-width:500px) {
  .faq_answer div {
    padding:1.5rem 1rem 0 1rem;
  }
  .data_room_table_header,
  .data_room_content ul li:nth-of-type(1) {
    display:none !important;
  }
  .data_room_table_body {
    flex-wrap: wrap;
    justify-content: flex-start;
    
  }
  .data_room_content ul:nth-of-type(2) {
    border-top:8px solid #E3E3E7 !important;
  }
  .data_room_content ul li,
  .data_room_content ul li a {
    justify-content: flex-start;
    text-align:left;
  }
  .data_room_content ul li:nth-of-type(2) {
    width: 100%;
    border-bottom:0;
    height: 100%;
    padding:1rem 0 0.5rem 5px;
  }

  .data_room_content ul li:nth-of-type(2) a {
    -webkit-line-clamp:unset;
    line-height: 1.2;
  }
  .data_room_content ul li:nth-of-type(3),
  .data_room_content ul li:nth-of-type(4) {
    width:50%;
    height:36px;
  }
  .data_room_content ul li:nth-of-type(4) {
    justify-content: flex-end;
  }
  .room_detail_list {
    flex-direction: column;
    align-items: flex-start;
  }
  .room_detail_list li button {
    margin-top:5px;
  }
}

@media screen and (max-width:420px) {
  .faq_answer div {
    padding: 1rem 0 0 1rem;
  }
  .data_room_detail h3 {
    font-size: 20px;
  }
  .room_detail_list {
    font-size: 14px;
  }
  .room_detail_list li button img {
    width:20px;
  }
  .room_detail_text, .data_detail_btn {
    font-size: 15px;
  }
}