/***************** TYPE *****************/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

/***************** COMMON *****************/
.wrap {
  width: 100%;
  margin: 0 auto;
  font-weight: 500;
  font-family: "Pretendard Variable", Pretendard, -apple-system,
    BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}
.btn {
  display: block;
  outline: none;
  border: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid transparent;
  box-sizing: border-box;
  cursor: pointer;
  transition-duration: 0.3s;
}

.btnPrimary {
  background-color: #528eff;
  color: #ffffff;
}
.btnPrimary:hover {
  color: #ffffff;
}
.btnDefault {
  background-color: transparent;
}
.btnRed {
  background-color: #f23a2e;
  color: #fff;
}
.btnRed:hover {
  color: #fff;
}
.btnBlue {
  background-color: #1c3bb0;
  color: #fff;
}
.btnBlue:hover {
  color: #fff;
}
.btnGreen {
  background-color: #03a84e;
  color: #fff;
}
.btnGreen:hover {
  color: #fff;
}
.btnYellow {
  background-color: #ffbf00;
  color: #fff;
}
.btnYellow:hover {
  color: #fff;
}
.btnGray {
  background-color: rgba(72, 84, 101, 0.4);
  color: #fff;
}
.btnGray:hover {
  color: #fff;
}
.btnSkyBlue {
  background-color: rgba(82, 142, 255, 0.1);
  color: rgba(82, 142, 255, 1);
  border: 1px solid #528eff;
}
.btnSkyBlue:hover {
  background-color: #528eff;
  color: #fff;
}
.flex,
.graphMenu span {
  display: flex;
}
.pointColor {
  color: #528eff;
}
input,
textarea {
  padding: 0 14px;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 2px;
  box-sizing: border-box;
}
select {
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 2px;
  box-sizing: border-box;
  background-color: transparent;
  font-weight: 400;
  font-size: 16px;
}
input:focus,
select:focus {
  outline: none;
  border-color: #528eff !important;
}
.copyright {
  color: #7b92ae;
  font-weight: 400;
  text-align: right;
  letter-spacing: 1px;
}
textarea {
  outline: none;
  resize: none;
}

.tableWrap {
  width: 100%;
}
.tableWrap thead th,
.writeBoardWrap .head {
  padding: 10px 0;
  text-align: center;
  font-weight: 500;
  color: #7b92ae;
}
.tableWrap tbody td,
.writeBoardWrap .body {
  text-align: center;
  padding: 10px 0;
  font-weight: 400;
}
.datepicker {
  background-image: url("../images/icon/calender.png");
  background-repeat: no-repeat;
  background-position: 95% center;
}
.text-left {
  text-align: left !important;
}

.writeBoardWrap .body li {
  flex-flow: wrap;
  justify-content: space-between;
}
.writeBoardWrap ul.head,
.writeBoardWrap .body ul {
  padding: 14px;
}
.writeBoardWrap .body ul {
  cursor: pointer;
}

.dashboardWrap .writeBoardWrap .body ul.active + .msg {
  border-bottom: 1px solid transparent;
}
.w100 {
  width: 100% !important;
}
.flexend {
  justify-content: end;
}

.modalWrap {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.modalWrap .modalContents {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid transparent;
  border-radius: 2px;
  box-sizing: border-box;
}
.modalWrap .modalContents.small {
  min-width: 345px;
}
.modalWrap .buySellWrap {
  margin: 20px auto 0;
}
.modalWrap .buySellWrap .btnWrap {
  display: grid;
  flex-flow: wrap;
  grid-template-columns: repeat(3, 1fr);
}
.modalWrap .buySellWrap .btnWrap .btn {
  width: auto;
  font-weight: 500;
  border-radius: 3px;
  height: 40px;
}
.modalWrap .buySellWrap .price {
  align-items: center;
  justify-content: space-between;
  margin: 20px auto 15px;
}
.modalWrap .buySellWrap .price h5 {
  font-weight: 600;
}
.modalWrap .buySellWrap .price input {
  text-align: right;
}
.modalWrap .title {
  border-bottom: 1px solid transparent;
  font-weight: 700;
  padding: 15px;
  font-size: 17px;
  text-align: center;
}
.modalWrap .contentArea {
  padding: 15px;
}
.modalWrap .buySellWrap .btnWrap {
  gap: 8px;
}
.modalWrap.account .btnSkyBlue {
  border-radius: 2px;
  height: 34px;
}
.modalWrap.account .buySellBtn {
  gap: 8px;
}
.modalWrap.account .buySellBtn .btn:nth-child(1) {
  width: 35%;
}
.modalWrap.account .buySellBtn .btn:nth-child(2) {
  width: 65%;
}
.modalWrap .icon {
  background-color: #f6f7fa;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}
.modalWrap.confirm .icon img {
  max-width: 16px;
}
.modalWrap.normal {
  text-align: center;
}
.modalWrap.normal .contentArea {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modalWrap.normal .title {
  border: none;
  padding: 0;
}
.modalWrap.normal p {
  font-weight: 400;
  font-size: 17px;
}

.modalWrap.write .formControl label {
  display: block;
  margin-bottom: 6px;
}
.modalWrap.write .formControl label,
.modalWrap.write .formControl input,
.modalWrap.write .formControl textarea {
  width: 100%;
  font-size: 15px;
  font-weight: 500;
}
.modalWrap.write .contentArea {
  display: flex;
  flex-flow: column;
  gap: 20px;
}
.modalWrap.write .formControl textarea {
  padding-top: 10px;
  padding-bottom: 10px;
}
.modalWrap.write .btnWrap {
  gap: 8px;
}
.modalWrap.write .btnWrap .btn {
  font-size: 16px;
}
.modalWrap.write .btnWrap .btn:nth-child(1) {
  width: 35%;
}
.modalWrap.write .btnWrap .btn:nth-child(2) {
  width: 65%;
}

/***************** HEADER *****************/
.headerWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  border-bottom: 1px solid transparent;
}
.headerWrap button {
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
}
.headerWrap .iconWrap {
  display: flex;
  align-items: center;
}
.themeBtn {
  display: flex;
  height: 34px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  font-size: 12px;
  padding: 0 14px 0 4px;
  cursor: pointer;
}
.iconThemeBtn {
  margin-right: 4px;
}
.themeBtn input {
  width: 0;
  height: 1px;
  overflow: hidden;
  margin-top: -1px;
}
.headerWrap .btnMenu {
  background-color: #528eff;
  width: 60px;
  height: 45px;
  display: block;
  margin: 0 auto;
}
.headerWrap .btnMenu img {
  margin: 0 auto;
}
.navWrap {
  display: flex;
  width: 220px;
  box-sizing: border-box;
  min-height: calc(100vh - 70px);
  flex-flow: column;
  justify-content: space-between;
  border-right: 1px solid transparent;
  z-index: 100;
}

.navWrap > ul > li > div,
.navWrap > ul > li > a {
  height: 60px;
  line-height: 60px;
  padding: 0 30px;
}
.navWrap li ul li {
  height: 50px;
  line-height: 50px;
}
.navWrap .btnWrap {
  flex-flow: column;
  margin: 40px auto;
}
.navWrap .btn {
  width: 160px;
  text-align: center;
}
.navWrap .toggleMenu {
  padding-top: 2px;
}

.navWrap li div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid transparent;
  box-sizing: border-box;
}
.navWrap > ul > li > a {
  border-bottom: 2px solid transparent;
}
.navWrap li > div,
.navWrap li > a {
  cursor: pointer;
  color: #7b92ae;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}
.navWrap li:hover > div,
.navWrap li:hover > a {
  transition-duration: 0.3s;
}
.navWrap li:hover > div,
.navWrap li:hover > a,
.navWrap li a.active,
.navWrap li div.active {
  color: #528eff !important;
}
.navWrap li li img:nth-of-type(1) {
  margin-right: 2px;
}
.navWrap li li img:nth-of-type(2) {
  margin-right: 10px;
}

.navWrap > ul > li > a.active,
.navWrap li div.active {
  border-bottom-color: #528eff;
}
.navWrap li div + ul {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.navWrap li div.active + ul {
  max-height: inherit;
}
.navWrap ul ul a {
  font-weight: 500;
  font-size: 14px;
}
.navWrap li li a {
  display: flex;
  align-items: center;
  padding-left: 50px;
}
.navWrap > ul > li > a {
  display: block;
}
.navWrap .menuIcon {
  display: inline-block;
  border: 4px solid transparent;
  margin-top: 3px;
}
.navWrap li:hover .menuIcon {
  border-top-color: #528eff;
}
.navWrap .active .menuIcon {
  border-bottom-color: #528eff;
  border-top-color: transparent !important;
  margin-top: -7px;
}

.navWrap .btnWrap {
  display: flex;
  gap: 10px;
}
.navWrap .btnWrap .btn {
  font-weight: 700;
}

/***************** CONTAINER *****************/
.contentHeader {
  border-bottom: 1px solid transparent;
  box-sizing: border-box;
  align-items: center;
  padding: 0 30px;
}
.contentHeader .nameWrap b,
.contentHeader .priceWrap {
  font-weight: 700;
}
.contentHeader .nameWrap b {
  text-decoration: underline;
  padding-right: 2px;
}
.contentHeader .priceWrap {
  text-align: right;
}
.contentHeader .btnWrap {
  gap: 8px;
}

.dashboardWrap {
  flex-flow: wrap;
}
.dashboardWrap article {
  border: 1px solid transparent;
  box-sizing: border-box;
  border-radius: 3px;
}
.dashboardWrap article .title {
  height: 64px;
  font-weight: 700;
  align-items: center;
  justify-content: space-between;
}
.dashboardWrap article .graphMenuWrap {
  gap: 14px;
}
.dashboardWrap .graphMenu {
  gap: 6px;
  color: #528eff;
}
.dashboardWrap .graphMenu::before {
  content: "\005B";
  display: block;
}
.dashboardWrap .graphMenu::after {
  content: "\005D";
  display: block;
}
.dashboardWrap .graphMenu span:nth-of-type(1)::after {
  content: "\002F";
  display: block;
  margin-left: 6px;
}
.dashboardWrap .graphMenu span img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
}
.dashboardWrap .graphMenu img {
  width: 18px;
}
.dashboardWrap article .tabWrap {
  font-size: 12px;
  font-weight: 500;
  align-items: center;
  border-radius: 3px;
  overflow: hidden;
}
.dashboardWrap article .tabWrap a {
  height: 34px;
  line-height: 34px;
  border: 1px solid transparent;
  border-right: none;
  box-sizing: border-box;
  text-align: center;
  color: #7b92ae;
}
.dashboardWrap article .tabWrap a:last-child {
  border-right: 1px solid transparent;
}
.dashboardWrap article .tabWrap a.active {
  background-color: #528eff;
  border-color: #528eff !important;
  color: #ffffff;
}

.dashboardWrap .graphWrap .content div {
  width: 100%;
  align-items: center;
  justify-content: center;
  background-color: #f6f7fa;
}
.dashboardWrap .chartWrap .title {
  border-bottom: 1px solid transparent;
  box-sizing: border-box;
}
.dashboardWrap .chartWrap .title h3 {
  align-items: center;
  gap: 20px;
}
.dashboardWrap .chartWrap .move:hover {
  opacity: 0.7;
  transition-duration: 0.3s;
}
.dashboardWrap .chartWrap .time {
  font-weight: 600;
}
.dashboardWrap .chartWrap .content .timeWrap {
  display: inline-block;
  border-radius: 2px;
  color: #528eff;
  padding: 2px 6px;
  overflow: hidden;
}
.dashboardWrap .chartWrap .content .timeWrap img {
  float: left;
  margin-right: 4px;
}
.dashboardWrap .buySellWrap .btnWrap {
  display: grid;
  flex-flow: wrap;
  grid-template-columns: repeat(3, 1fr);
}
.dashboardWrap .buySellWrap .btnWrap .btn {
  font-weight: 500;
  border-radius: 3px;
}
.dashboardWrap .buySellWrap .price {
  align-items: center;
  justify-content: space-between;
}
.dashboardWrap .buySellWrap .price h5 {
  font-weight: 600;
}
.dashboardWrap .buySellWrap .price input {
  text-align: right;
}

.tableWrap .btn {
  margin: 0 auto;
  border-radius: 2px;
  line-height: 1;
  white-space: nowrap;
  padding: 0;
}

.dashboardWrap .boardWrap {
  width: 100%;
}
.dashboardWrap .boardWrap .title,
.dashboardWrap .writeBoardWrap .title {
  border-bottom: 1px solid transparent;
}
.dashboardWrap .searchWrap {
  justify-content: space-between;
  margin-top: 15px;
}
.dashboardWrap .searchWrap .search {
  border: 1px solid transparent;
  border-radius: 2px;
  border-top: 0;
  border-bottom: 0;
}
.dashboardWrap .searchWrap .search input,
.dashboardWrap .searchWrap .search select {
  border-radius: 0;
}
.light .dashboardWrap .searchWrap .search select:focus,
.light .dashboardWrap .searchWrap .search input:focus {
  border-color: #c0ccda !important;
}
.dark .dashboardWrap .searchWrap .search select:focus,
.dark .dashboardWrap .searchWrap .search input:focus {
  border-color: #323030 !important;
}

.dashboardWrap .pagenationWrap {
  align-items: center;
  justify-content: space-between;
}
.pagenation {
  border-radius: 3px;
  border: 1px solid transparent;
}
.pagenation a {
  display: flex;
  align-items: center;
  justify-items: center;
  text-align: center;
  justify-content: center;
  color: #7b92ae;
  box-sizing: border-box;
  font-size: 12px;
}
.pagenation a.active {
  background-color: #528eff;
  color: #ffffff;
}
.dashboardWrap .pagenationWrap .total {
  color: #7b92ae;
  font-weight: 400;
}
.dashboardWrap .writeBoardWrap .tableWrap tbody td {
  font-weight: 500;
}
.dashboardWrap .writeBoardWrap .head.flex,
.dashboardWrap .writeBoardWrap .body .flex {
  justify-content: space-between;
}
.dashboardWrap .writeBoardWrap .body .msg {
  height: 0;
  overflow: hidden;
  text-align: left;
  font-weight: 400;
  line-height: 1.6em;
}
.dashboardWrap .writeBoardWrap .body ul.active + .msg {
  height: auto;
}
.dashboardWrap .writeBoardWrap .body ul.active {
  background-color: #528eff;
  color: #fff;
}

.dashboardWrap .writeBoardWrap.msg .title .btn {
  border-radius: 2px;
  letter-spacing: -0.5px;
}

@media screen and (min-width: 1221px) {
  /***************** COMMON *****************/
  .btn {
    width: 140px;
    height: 38px;
  }
  input,
  select {
    height: 48px;
  }
  .copyright {
    font-size: 14px;
    padding: 30px;
  }
  .tableWrap thead th,
  .tableWrap tbody td {
    font-size: 14px;
  }
  .tableWrap .btn {
    width: 44px;
    height: 22px;
    font-size: 12px;
    font-weight: 500;
  }
  .datepicker {
    font-size: 16px;
    letter-spacing: -0.5px;
  }
  .mo {
    display: none !important;
  }

  /***************** HEADER *****************/
  .headerWrap {
    height: 70px;
    padding: 0 30px;
  }

  .navWrap {
    display: flex;
    width: 220px;
    box-sizing: border-box;
    min-height: calc(100vh - 70px);
    flex-flow: column;
    justify-content: space-between;
    border-right: 1px solid transparent;
  }

  .navWrap > ul > li > div,
  .navWrap > ul > li > a {
    height: 60px;
    line-height: 60px;
    padding: 0 30px;
  }
  .navWrap li ul li {
    height: 50px;
    line-height: 50px;
  }
  .navWrap .btnWrap {
    flex-flow: column;
    margin: 40px auto;
  }
  .navWrap .btn {
    width: 160px;
  }
  .navWrap .toggleMenu {
    padding-top: 2px;
  }

  /***************** CONTAINER *****************/
  .contentWrap {
    width: calc(100% - 220px);
    min-height: calc(100vh - 70px);
  }
  .container {
    display: flex;
    padding: 0;
    margin: 0;
    max-width: 100%;
  }
  .contentHeader {
    height: 60px;
    gap: 40px;
  }
  .contentHeader .namePriceWrap {
    gap: 20px;
    padding-top: 2px;
  }
  .contentHeader .nameWrap {
    min-width: 114px;
    font-size: 15px;
  }
  .contentHeader .priceWrap {
    min-width: 140px;
    font-size: 16px;
  }

  .dashboardWrap {
    padding: 30px;
  }
  .dashboardWrap section {
    width: 100%;
    gap: 20px;
    margin-bottom: 15px;
  }
  .dashboardWrap article.w60 {
    width: 60.98%;
  }
  .dashboardWrap article.w40 {
    width: 37.8%;
  }

  .dashboardWrap article .title {
    padding: 20px 30px 10px;
  }
  .dashboardWrap .graphWrap .title {
    padding-top: 0;
    padding-bottom: 0;
  }
  .dashboardWrap article .content {
    padding: 0 30px 30px;
  }
  .dashboardWrap article .title h3 {
    font-size: 22px;
  }
  .dashboardWrap article .title .graphMenu,
  .dashboardWrap article .title .graphMenu span {
    font-size: 18px;
  }
  .dashboardWrap article .tabWrap a {
    width: 34px;
  }

  .dashboardWrap .graphWrap .content div {
    min-height: 380px;
  }

  .dashboardWrap .chartWrap .title .time {
    gap: 10px;
    font-size: 20px;
  }

  .dashboardWrap .chartWrap .content {
    padding: 10px 30px 20px;
  }
  .dashboardWrap .countWrap .content {
    padding: 30px;
  }
  .dashboardWrap .chartWrap .content .time {
    gap: 5px;
    font-size: 18px;
  }

  .dashboardWrap .buySellWrap .btnWrap {
    margin: 20px auto 20px;
    gap: 10px;
  }
  .dashboardWrap .buySellWrap .btn {
    font-size: 16px;
    width: 100%;
    height: 48px;
  }
  .dashboardWrap .buySellWrap .price {
    padding: 8px 0;
  }
  .dashboardWrap .buySellWrap .price h5 {
    font-size: 16px;
  }
  .dashboardWrap .buySellWrap .price input {
    width: 75%;
  }
  .dashboardWrap .buySellWrap .buySellBtn {
    gap: 10px;
    margin-top: 20px;
  }

  .dashboardWrap .boardWrap .title {
    height: auto;
    padding-bottom: 15px;
  }
  .dashboardWrap .boardWrap .title h3 {
    margin-bottom: 20px;
  }

  .dashboardWrap .boardWrap .searchWrap .search.col7 {
    width: 79.75%;
  }
  .dashboardWrap .boardWrap .searchWrap .search.col7 .setinput {
    width: 14.28%;
  }
  .dashboardWrap .boardWrap .searchWrap .search.col2 {
    width: 360px;
  }
  .dashboardWrap .boardWrap .searchWrap .search.col2 .setinput {
    width: 50%;
  }

  .dashboardWrap .boardWrap .searchWrap .search .setinput {
    border-right: none;
  }
  .dashboardWrap .boardWrap .searchWrap .search .setinput {
    font-size: 16px;
  }
  .dashboardWrap .boardWrap .searchWrap .search .setinput::placeholder {
    color: rgba(72, 84, 101, 1);
  }

  .dashboardWrap .boardWrap .searchWrap .search .setinput:first-child {
    border-left: 0;
  }
  .dashboardWrap .boardWrap .searchWrap .btnWrap {
    width: 18.99%;
  }
  .dashboardWrap .boardWrap .searchWrap .btnWrap .btn {
    width: 100%;
    height: 48px;
    border-radius: 2px;
    font-size: 16px;
  }
  .dashboardWrap .boardWrap .tableWrap,
  .dashboardWrap .writeBoardWrap .tableWrap {
    margin-top: 15px;
  }
  .dashboardWrap .tableWrap tbody tr:hover,
  .dashboardWrap .writeBoardWrap .body ul:hover {
    transition-duration: 0.3s;
  }
  .dashboardWrap .boardWrap .tableWrap thead th,
  .dashboardWrap .boardWrap .tableWrap tbody td,
  .dashboardWrap .writeBoardWrap .tableWrap thead th,
  .dashboardWrap .writeBoardWrap .tableWrap tbody td {
    font-size: 16px;
    padding: 16px 0;
  }
  .tableWrap .text-left:first-child {
    padding-left: 20px !important;
  }
  .dashboardWrap .writeBoardWrap.msg .title .btn {
    width: 220px;
    height: 48px;
    font-size: 16px;
  }

  .dashboardWrap .pagenationWrap {
    margin-top: 15px;
  }
  .dashboardWrap .pagenation {
    max-width: 238px;
    align-items: center;
    justify-content: center;
  }
  .pagenation a {
    width: 34px;
    height: 34px;
    border-right: 1px solid transparent;
  }
  .pagenation a:last-child {
    border-right: none;
  }
  .dashboardWrap .pagenationWrap .total {
    font-size: 14px;
  }

  .dashboardWrap .writeBoardWrap .content {
    padding-top: 15px;
  }
  .dashboardWrap .writeBoardWrap .title {
    height: 83px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .dashboardWrap .writeBoardWrap .body .msg {
    font-size: 16px;
  }

  .dashboardWrap .writeBoardWrap .body .active + .msg {
    padding: 40px 14px;
    min-height: 180px;
  }

  /* TABLE SIZE */
  .qnaTable li:nth-of-type(1) {
    width: 62%;
  }
  .noticeTable li:nth-of-type(1) {
    width: 80%;
  }
  .noticeTable .head li:nth-of-type(2) {
    padding-right: 60px;
  }

  .messageTable li:nth-of-type(1) {
    width: 70%;
  }
  .messageTable li:nth-of-type(2),
  .messageTable li:nth-of-type(3),
  .qnaTable li:nth-of-type(2),
  .qnaTable li:nth-of-type(3),
  .qnaTable li:nth-of-type(4) {
    width: 15%;
  }
}
@media screen and (max-width: 1220px) {
  /***************** COMMON *****************/
  .btn,
  input,
  select {
    height: 48px;
    font-size: 15px;
  }
  .copyright {
    font-size: 14px;
    padding: 20px;
  }
  .pc,
  .contentHeader .btnWrap {
    display: none !important;
  }
  .container {
    position: relative;
    overflow-x: hidden;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
  .copyright {
    font-size: 12px;
    text-align: center;
    letter-spacing: 1px;
  }

  /***************** HEADER *****************/
  .headerWrap {
    height: 45px;
    padding-left: 15px;
  }

  .dashboardWrap .buySellWrap .btnWrap,
  .dashboardWrap .buySellWrap .buySellBtn {
    gap: 8px;
  }
  .dashboardWrap .buySellWrap .price h5 {
    font-size: 14px;
  }

  .navWrap {
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
    bottom: 0;
    min-height: calc(100vh - 45px);
    justify-content: normal;
    transition-duration: 0.3s;
  }

  .navWrap.active {
    left: 0;
  }
  .navWrap .btnWrap {
    gap: 6px;
    width: calc(100% - 40px);
    padding: 0 20px;
    margin: 30px auto;
  }
  .navWrap .btn {
    width: 100%;
    line-height: 34px;
  }
  .navWrap > ul > li > div,
  .navWrap > ul > li > a {
    padding: 0 20px;
  }
  .themeBtn.mo {
    max-width: 138px;
    margin: 0 auto;
  }

  .contentHeader {
    width: 100%;
    display: block;
    padding: 0;
  }
  .contentHeader .namePriceWrap {
    justify-content: space-between;
    padding: 12px 15px;
  }
  .contentHeader .nameWrap {
    font-size: 14px;
  }
  .contentHeader .priceWrap {
    font-size: 18px;
  }

  /***************** CONTENTS *****************/
  .dashboardWrap {
    display: block;
    padding: 15px;
  }
  .dashboardWrap > section.flex {
    flex-direction: column;
    gap: 10px;
  }
  .dashboardWrap > section.flex:nth-of-type(1) {
    margin-bottom: 10px;
  }

  .tableWrap {
    min-width: 800px;
  }

  .tableWrap thead th,
  .writeBoardWrap .head {
    font-size: 14px;
  }
  .tableWrap tbody td,
  .writeBoardWrap .body {
    font-size: 14px;
  }
  .tableWrap .btn {
    width: 44px;
    height: 22px;
    font-size: 12px;
  }
  .boardWrap .tableWrap thead th {
    padding: 14px 0;
  }
  .boardWrap .tableWrap tbody td {
    padding: 14px 0;
  }

  .dashboardWrap article .content {
    overflow-x: auto;
  }
  .dashboardWrap article .title {
    height: auto;
    padding: 15px 15px;
  }
  .dashboardWrap article .title h3 {
    font-size: 17px;
  }
  .dashboardWrap article .title .graphMenu span {
    font-size: 16px;
  }
  .dashboardWrap article .content {
    padding: 15px 15px;
  }
  .dashboardWrap .graphWrap .content {
    padding: 0 15px 15px;
  }

  .dashboardWrap .graphWrap .content div {
    min-height: 200px;
  }
  .dashboardWrap .graphWrap .title {
    flex-flow: column;
  }
  .dashboardWrap .graphWrap .graphMenuWrap {
    justify-content: space-between;
    width: 100%;
    margin-bottom: 10px;
  }
  .dashboardWrap article .tabWrap {
    width: 100%;
  }
  .dashboardWrap article .tabWrap a {
    width: 33.3%;
  }

  .dashboardWrap .chartWrap .title .time {
    gap: 8px;
    font-size: 14px;
  }
  .dashboardWrap .chartWrap .content .timeWrap {
    margin-bottom: 10px;
  }
  .dashboardWrap .chartWrap .content .time {
    font-size: 13px;
    gap: 6px;
  }
  .dashboardWrap .chartWrap .content .time span:nth-of-type(1) {
    font-weight: 400;
  }

  .dashboardWrap .buySellWrap .price {
    margin: 15px auto 15px;
  }
  .dashboardWrap .buySellWrap .price input {
    width: 72%;
  }
  .dashboardWrap .buySellWrap .buySellBtn {
    gap: 10px;
  }
  .dashboardWrap .buySellWrap .buySellBtn .btn {
    width: 100%;
    border-radius: 3px;
  }

  .dashboardWrap .searchWrap,
  .dashboardWrap .boardWrap .searchWrap .search {
    width: 100%;
    flex-flow: wrap;
  }
  .dashboardWrap .boardWrap .searchWrap .btnWrap {
    width: 100%;
  }
  .dashboardWrap .boardWrap .searchWrap .btnWrap .btn {
    width: 100%;
    border-radius: 2px;
  }
  .dashboardWrap .boardWrap .searchWrap .search {
    margin: 0 auto 15px;
  }
  .dashboardWrap .searchWrap .search {
    border-top: 1px;
    border-bottom: 1px;
  }
  .dashboardWrap .boardWrap .searchWrap .search.col7 .setinput {
    border-left: 0;
  }
  .dashboardWrap .boardWrap .searchWrap .search.col7 .setinput:nth-child(1),
  .dashboardWrap .boardWrap .searchWrap .search.col7 .setinput:nth-child(2),
  .dashboardWrap .boardWrap .searchWrap .search.col7 .setinput:nth-child(3) {
    width: 33.33%;
    border-bottom: 0;
  }
  .dashboardWrap .boardWrap .searchWrap .search.col7 .setinput:nth-child(3),
  .dashboardWrap .boardWrap .searchWrap .search.col7 .setinput:nth-child(5),
  .dashboardWrap .boardWrap .searchWrap .search.col7 .setinput:nth-child(7) {
    border-right: 0;
  }

  .dashboardWrap .boardWrap .searchWrap .search.col7 .setinput:nth-child(4),
  .dashboardWrap .boardWrap .searchWrap .search.col7 .setinput:nth-child(5),
  .dashboardWrap .boardWrap .searchWrap .search.col7 .setinput.datepicker,
  .dashboardWrap .boardWrap .searchWrap .search.col2 .setinput {
    width: 50%;
  }
  .dashboardWrap .boardWrap .searchWrap .search.col7 .setinput.datepicker {
    border-top: 0;
  }
  .dashboardWrap .boardWrap .searchWrap .search.col2 .setinput {
    border-left: 0;
  }
  .dashboardWrap .boardWrap .searchWrap .search.col2 .setinput:last-child {
    border-right: 0;
  }

  .dashboardWrap .pagenationWrap {
    flex-flow: column-reverse;
    align-items: normal;
  }
  .dashboardWrap .pagenationWrap .total {
    font-size: 12px;
    text-align: right;
    margin-top: 10px;
    margin-bottom: 40px;
  }
  .dashboardWrap .pagenationWrap .pagenation {
    justify-content: center;
    border: 0;
  }
  .dashboardWrap .pagenationWrap .pagenation a {
    width: 44px;
    height: 44px;
  }
  .dashboardWrap .pagenationWrap .pagenation a:not(:last-child) {
    border-right: 0;
  }
  .dashboardWrap .pagenationWrap .pagenation a:first-child {
    border-radius: 3px 0 0 3px;
  }
  .dashboardWrap .pagenationWrap .pagenation a:last-child {
    border-radius: 0 3px 3px 0;
  }
  .light .pagenation a {
    border: 1px solid #c0ccda;
  }
  .dark .pagenation a {
    border: 1px solid #323030;
  }
  .dashboardWrap .pagenationWrap .pagenation a.active {
    border-color: #528eff;
  }

  .dashboardWrap .writeBoardWrap.msg .title .btn {
    width: 120px;
    height: 34px;
    font-size: 14px;
  }
  .dashboardWrap .writeBoardWrap .body .active + .msg {
    padding: 20px 10px;
    min-height: 100px;
  }
  .dashboardWrap .writeBoardWrap .body ul.active + .msg {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .dashboardWrap .writeBoardWrap .msg .boardDesc {
    margin-top: 40px;
  }
  .dashboardWrap .writeBoardWrap .msg .boardDesc span {
    font-weight: 500;
    font-size: 12px;
    color: #7b92ae;
  }
  .dashboardWrap .writeBoardWrap .msg .boardDesc span em {
    font-weight: 400;
    font-style: normal;
  }

  .writeBoardWrap .head {
    justify-content: space-between;
  }
  .qnaTable li:nth-of-type(3),
  .qnaTable li:nth-of-type(4),
  .noticeTable li:nth-of-type(2),
  .messageTable li:nth-of-type(2),
  .messageTable li:nth-of-type(3) {
    display: none;
  }
}

@media screen and (min-width: 731px) {
  .modalWrap.write .modalContents {
    width: 720px;
  }

  .modalWrap.write .btnWrap .btn:nth-child(1) {
    max-width: 110px;
  }
  .modalWrap.write .btnWrap .btn:nth-child(2) {
    max-width: 197px;
  }
}

@media screen and (max-width: 730px) {
  .modalWrap.write .modalContents {
    width: 90%;
  }
}

@media screen and (max-width: 350px) {
  .modalWrap .modalContents.small {
    width: 90%;
    min-width: auto;
  }
}
