.mypage-head {
  display: flex;
  background-color: #f8f9f9;
  border-radius: .5rem;
  overflow: hidden;
  .mypage-head__profile {
    display: flex;
    flex-direction: column;
    min-width: 300px;
    padding: 42px;
    height: 8rem;
  }
  .mypage-head__info-wrapper {
    display: flex;
    flex: auto;
    .mypage-head__info {
      position: relative;
      display: flex;
      flex: 1;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;      
      .mypage-head__info-label {
        font-size: 1rem;
        color: #5A5D60;
      }
      .mypage-head__info-num {
        position: relative;
        display: inline-block;
        font-size: 2.5rem;
        font-weight: bold;
        color: #0964ED;
        &::after {
          content: '';
          position: absolute;
          bottom: .3125rem;
          left: 0;
          right: 0;
          height: 1px;
          background-color: #0964ED;
        }
      }
      &::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 1px;
        background: #f0f0f0;
      }
    }  
  }
}
/* tab */
.mypage-side {
  .mypage-side__nav {
    display: flex;
    gap: 1.25rem;
    padding: 0 .5rem;
    flex-wrap: wrap;
    .mypage-side__nav-link {
      span {
        display: block;
        line-height: 3rem; 
        font-size: 1.125rem;       
        color: #9DA5AA;
        i {
          display: inline-block;
          line-height: 2;
          padding-left: .25rem;          
          /* padding: 0 1rem;
          background-color: #f8f9f9;
          border-radius: 5rem; */
          font-size: 0;
          b {
            font-size: 1.125rem;
            color: #1b76ff;
            font-weight: bold;
            text-decoration: underline;
          }
        }
      }
      img {
        display: none;
      }
      &.mypage-side__nav-link--active, &.active {
        span {
          border-bottom: 2px solid #222322;
          color: #222322;
          font-weight: bold;
        }
      }
    }
  }
}
.mypage-divider {
  display: none;
}
.mypage-post-table {
  width: 100%;
  /* border-top: 1px solid #dfdfdf; */
  background-color: #f8f9f9;
  tr {
    border-bottom: 1px solid #e9e9e9;
    td {
      cursor: pointer;

      &.font-bold {
        background-color:#fff;
        .subtitle {font-weight:bold;}
        .subtitle:before {content:"공지";display:inline-block;padding:.25rem .65rem;margin-right:.5rem;border-radius:10rem;background-color:#257cff;color:#fff;font-weight:normal;font-size:.875rem;}
      }
      &.font-bold + .mypage-post-table__info {background-color:#fff;}

      span {
        display: block;
        padding: 1.5rem 2rem;
        font-size: 1.125rem;
      }
      &.mypage-post-table__info {
        color: #9DA5AA;
        text-align: center;
        font-size: .875rem;
        vertical-align:middle;
      }
      &.mypage-post-table__title {
        display: table;
        table-layout: fixed;
        width: 100%;
        white-space: nowrap;
        vertical-align:middle;
        * {vertical-align:middle;}
        span {
          overflow: hidden;
          text-overflow: ellipsis;
        }
        .subtitle {display:inline-block;padding-right:.5rem;}
        .comment-count {display:inline-block;padding:0 0 0 .5rem;font-size:.875rem;color:#1b76ff;}
        .loca {display:inline-block;padding-left:.5rem;color:#888;}
        .loca span {display:inline-block;padding:0;font-size:.9375rem;}
        .category {display:inline-block;padding-right:.75rem;font-size:1rem;color:#4077e9;}
        .category + .subtitle {padding-left:0;}
      }
    }
    /* &:is(:last-child) {
      border-bottom: 0;
    } */
  }  
  .highlight {
    color: #004bb0;
  }
}
.mypage-content {
  padding: 1rem 0;
  .mypage-post__header {
    .mypage-post__title {
      position: relative;
      border-top: .5rem solid #f8f9f9;
      padding: 1.5rem 2.25rem;
      font-size: 1.5rem;
      text-align: center;
      box-shadow: 0 3px 5px rgba(0, 0, 0, .02);

      .category {padding-right:1rem;color:#4077e9;font-weight:normal;}
    }
    .mypage-post__date {
      background-color: #f8f9f9;
      padding:1.25rem 2rem;
      border-bottom:1px solid #eee;
      text-align: right;
      font-size: .875rem;
      color: #5A5D60;

      span {
        padding-left:1rem;
        vertical-align:middle;
      }

      .loca {
        display:inline-block;
        font-size:.875rem;
        padding-right:2rem;
        vertical-align:middle;

        span {
          padding:0 .25rem;font-weight:bold;font-size:1rem;
        }
      }

      &.file {
        span {
          display: inline-block;
          padding:0 .5rem;
          text-decoration:underline;font-size:.875rem;
        }
      }
    }    
  }
  .comment-list {
    padding:.5rem 1rem;

    .title {padding:1rem 0 .5rem;font-weight:bold;font-size:1rem;}
    .title b {color:#1b76ff;}
    li {display:flex;border-top:1px solid #e9e9e9;padding:.25rem 0;align-items: center;}
    li .name {flex:none;width:10rem;padding:.5rem 0;color:#5A5D60;font-size:.85rem;}
    li .comment {flex:auto;}
    li .date {flex:none;width:10rem;padding-right:1rem;font-size:.85rem;color:#9DA5AA;text-align:right;}
    li .delete {flex:none;height: 2rem;padding: 0;font-size: .875rem;}
  }
  .mypage-post__content {
    padding: 3rem;
    background-color: #f8f9f9;
    /* border-bottom: 1px solid #ddd; */
  }
  .button_wrap {
    /*padding-top: 1rem;*/
    gap: .5rem;
  }
}
.my-info__form-container {
  position: relative;
  background: #f8f9f9;
  padding: 3rem 4rem;

  .form__input-wrapper {    
    padding: 0;
    label {
      max-width: 16rem;
    }
  }
  input {
    background-color: #fff;
  }
  .button.text {
    padding: 0;
    font-size: 1rem;
  }  
}
/* ???? */
.support-patent {
  display: flex;
  gap: 2rem;
  padding: 3.75rem;
  justify-content: center;
  .support-patent__title {
    font-size: 1.5rem;
    margin-bottom: .625rem;
  }
  .support-patent__info {
    font-size: 2.25rem;
  }
  img {
    width: auto;
    height: 6rem;
  }
}
.cooperation__container {
  background: #eceeef;
  text-align: center;
  padding: 3.75rem;
  .cooperation__title {
    font-size: 1.5rem;
    font-weight: 700;
    padding-bottom: 1.875rem;
  }
  .cooperation__table-list {
    width: 100%;
    td {
      width: 33.333333%;
      text-align: center;
      vertical-align: middle;
      height: 5rem;
      font-size: 1.125rem;
      color: #5A5D60;
      border: 1px solid #dddddd;
      background: #ffffff;
    }
  }
}

/* 내차관리 */
.notification__wrapper {
  display: flex;
  gap: 1rem;
  padding-bottom: 2rem;
  .notification__item {
    flex: 1;
    border: 1px solid #eceeef;
    .notification__header {
      position: relative;
      .notification__header-title {        
        padding: 1rem 1.5rem;
        background-color: #f8f9f9;
        font-weight: bold;
        img {
          display: none;
        }        
      }
      .notification__header-subtext {
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        span {
          font-weight: bold;
          color: #1b76ff;
        }
      }
    }    
    .notification__content {
      padding: 1.5rem 2rem;
      height: 8rem;
      overflow: auto;
      * {
        font-size: 14px;
        color: #5A5D60;
      }
    }
  }
}
.mypage_info {
  position: relative;
  padding-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  .rightbtn {
    display: flex;
    justify-content: flex-end;
    flex: auto;
    gap: .5rem;
  }
  > button {
    position: absolute;
    right: 0;
    top: 0;
  }
  .mypage-side .mypage-side__nav {
    gap: 2rem;
  }
}
.fax_able_modal .content {
  > div {    
    padding-bottom: 1rem;
    > div {
      padding-left: .5rem;
      padding-right: .5rem;
    }
    .description {
      color: #2070ff !important;
      font-size: .9375rem;
    }
  }
}
.update_wrap {
  display: flex;
  gap: 5rem;
  section {
    flex: 1;
    .title_wrap {
      padding: 3rem 0 1.5rem;
    }
    .input_box {
      flex-direction: row;      
      label {
        width: 8rem;
        flex: none;
        padding-top: .75rem;
        font-size: 1rem;
        color: #5A5D60;
        word-break: keep-all;
      }
      .flex, .car-info__second {
        flex: auto;
        gap: .65rem;
      }
      #dealerNumber, #dealerHp, #dealerList {
        padding-top: .5rem;
      }
      textarea {
        flex: auto;
        width: auto;
        height: 11rem;
      }
      label[for="show_ban"] + p {
        padding-left: 2rem;
        font-size: .875rem;
        color: #858B93;
        word-break: keep-all;
      }
      .checkbox {
        flex: 1;
      }
    }
    .ul_info {
      margin-bottom: .5rem;
      li {
        padding: .75rem 0;        
      }
      span {
        width: 8rem;
        flex: none;
        margin-right: .5rem;
        font-size: 1rem;
        color: #5A5D60;
      }
      span + div {
        width: 100%;
        flex: auto;
        margin-right: .5rem;
      }
    }
  }
}





















.mypage-head__profile-name {
  font-size: 30px;
  font-weight: 700;
}
.mypage-head__profile-update {
  display: inline-flex;
  align-items: center;
  font-size: 20px;
  margin-top: auto;
}
.mypage-head__profile-update img {
  margin-left: 14px;
  width: 9px;
}
.mypage-size__withdraw {
  display: block;
  width: 100%;
  position: relative;
  padding: 12px 16px;
  background: #f5f5f5;
  color: #666666;
}
.mypage-size__withdraw:after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 17px;
  background: url(../icons/icon-arrow-right.png) no-repeat center;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}


