.notice_file {
  list-style: none;
  margin: auto;
  display: flex;
  width: 100%;
  padding: 4px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 8px;
  border: 1px solid var(--Gray-300, #CCD2D6);
  background-color: var(--Base-white, #FFF);
}
.notice_file_list {
  display: flex;
  padding: 10px 4px;
  align-items: center;
  gap: 16px;
  align-self: stretch;
}
.notice_file_list:not(:first-of-type){
  border-top: 1px solid var(--Gray-200, #E1E4E8);
}
.notice_file_name {
  overflow: hidden;
  text-overflow: ellipsis; 
}
.notice_file_name > a {
  white-space: nowrap;  
  vertical-align : middle;
  font-weight: 500;
  font-size: 13px;
  color: #333333;
}
.notice_file_name img {
  width: 28px;
  height: 28px;
  margin-right: 12px;
  vertical-align: middle;
}
.notice_file_data {
  color: var(--Gray-600, #6C747A);
}

/* 231207 버튼 추가 디자인 */
.file_info_wrap {
  width: 100%;
  position: relative;
  display: flex;
  gap: 14px;
  align-items: center;
}
.file_info_wrap > a {
  white-space: nowrap;  
  vertical-align : middle;
  font-weight: 500;
  font-size: 13px;
  color: #333333;
  cursor: pointer;
}
.file_info_wrap img {
  width: 28px;
  height: 28px;
  aspect-ratio: 1/1;
}
.file_info {
  width: calc(100% - 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.file_name {
  display:block;
  text-overflow: ellipsis;
  /* white-space: nowrap; */
}
.attach_file_name{
  color: var(--Gray-900, #26282A);
}
.attach_file_name:hover{
  text-decoration: underline;
}
.file_name_inner_wrap {
  display: inline-block;
  vertical-align: middle;
  line-height: 1.2;
  width: calc(100% - 50px);
}
.file_name_inner_wrap a {
  color: black;
  margin-right: 6px;
  overflow: hidden;
  display: inline-block;
  width: 100%;
  text-wrap: nowrap;
  text-overflow: ellipsis;
  vertical-align: middle;
}
.file_size {
  color: #6C747A;
}
.file_button_wrap {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.file_button_wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.file_button_wrap a.button_sm{
  padding: 9px;
}
.file_icon {
  display:inline-block;
  width:28px;
  height:28px;
  border-radius:3px;
}
.file_icon.file_icon_download {
  background: url('/el/images/class/icon/attachment/icon_download.png') no-repeat;
}
.file_icon.file_icon_download:not(.disabled):hover,
.file_icon.file_icon_download:not(.disabled):focus {
  background: url('/el/images/class/icon/attachment/icon_download_hover.png') no-repeat;
}
.file_icon.file_icon_doc_preview {
  background: url('/el/images/class/icon/attachment/icon_doc_preview.png') no-repeat;
}
.file_icon.file_icon_doc_preview:not(.disabled):hover,
.file_icon.file_icon_doc_preview:not(.disabled):focus {
  background: url('/el/images/class/icon/attachment/icon_doc_preview_hover.png') no-repeat;
}
.file_button_wrap > a.site-link:hover > .file_icon.file_icon_download:not(.disabled),
.file_button_wrap > a.site-link:focus > .file_icon.file_icon_download:not(.disabled){
  background: url('/el/images/class/icon/attachment/icon_download_hover.png') no-repeat;
}
.file_button_wrap > a.site-link:hover > .file_icon.file_icon_doc_preview:not(.disabled),
.file_button_wrap > a.site-link:focus > .file_icon.file_icon_doc_preview:not(.disabled){
  background: url('/el/images/class/icon/attachment/icon_doc_preview_hover.png') no-repeat;
}
/* 231207 버튼 추가 디자인 끝 */

@media screen and (max-width: 640px) {
  .file_title {
    margin-bottom: 10px;
  }
  .notice_content_file {
    text-align: left;
  }
}
/* iPad Mini : 768px */
@media screen and (max-width: 767px){
  .file_button_wrap{
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .notice_file{
    padding: 4px 12px;
  }
  .notice_file_list{
    padding: 10px 4px;
  }
}
@media screen and (max-width: 480px) {
  .attach_file_name{
    overflow : hidden;
    text-overflow: ellipsis;
    /* white-space: nowrap; */
  }
}