.mypage {
  width: 100%;
  margin-top: 1rem;
}

.mypage_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}

.mypage_menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: 15px;
  position: relative;
}

.mypage_menu a:after {
  content: '';
  width: 0%;
  height: 6px;
  border-radius: 5px;
  -webkit-transition: all .5s;
  transition: all .5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}

.mypage_menu a:hover:after, .mypage_menu a.active:after {
  width: 100%;
  background-color: #a8a8a8;
}

.mypage_item_box {
  border-radius: 0.6em;
  background-color: var(--color-widget-box-primary);
  -webkit-box-shadow: var(--color-widget-box-shadow);
          box-shadow: var(--color-widget-box-shadow);
  padding: 15px 0;
}

.mypage_item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 30% 1fr;
      grid-template-columns: 30% 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 10px;
  width: 100%;
  min-height: 40px;
  padding: 5px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #3b414a;
}

.mypage_item dt {
  color: #a8a8a8;
  font-size: 14px;
}

.mypage_item dt .img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #202020;
}

.mypage_item dt .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.mypage_item dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #a8a8a8;
  font-size: 14px;
  height: 100%;
}

.mypage_item dd input {
  text-align: right;
  background-color: #131313;
  border: 0;
  color: #bbb;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 40px;
  border-radius: 10px;
  outline: none;
}

.mypage_item dd button {
  background: none;
  border: 0;
}

.mypage_item:last-child {
  margin-bottom: 0;
}

.mypage .button-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 15px;
}

.mypage .button-box button {
  background: var(--color-login-button-primary);
  border-radius: 5px;
  font-size: 14px;
  padding: 11px 15px;
  font-weight: bold;
  width: 100%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-align: center;
  color: #ffffff;
  -webkit-box-shadow: var(--color-login-button-box-shadow-1);
          box-shadow: var(--color-login-button-box-shadow-1);
  background-size: 200% auto;
  border: 0;
  max-width: 200px;
  margin: 0 auto;
}

.mypage .pointArea {
  margin-top: 10px;
}

.mypage .pointArea_item .point_info {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 70px 1fr;
      grid-template-columns: 70px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 10px;
  border-radius: 0.6em;
  background-color: #2b2d38;
  -webkit-box-shadow: var(--color-widget-box-shadow);
          box-shadow: var(--color-widget-box-shadow);
  padding: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
}

.mypage .pointArea_item .point_info .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 50%;
  background-color: #131313;
}

.mypage .pointArea_item .point_info .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.mypage .pointArea_item .point_info .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mypage .pointArea_item .point_info .info strong {
  font-size: 14px;
  color: #bbb;
}

.mypage .pointArea_item .point_info .info strong span {
  color: #D48A21;
}

.mypage .pointArea_item .point_info .info .control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 7px;
}

.mypage .pointArea_item .point_info .info .control_item {
  margin-right: 20px;
}

.mypage .pointArea_item .point_info .info .control_item span,
.mypage .pointArea_item .point_info .info .control_item font {
  color: #bbb;
  font-size: 12px;
}

.mypage .pointArea_item .point_list {
  margin-top: 10px;
  border-radius: 0.6em;
  background-color: var(--color-widget-box-primary);
  -webkit-box-shadow: var(--color-widget-box-shadow);
          box-shadow: var(--color-widget-box-shadow);
  overflow: hidden;
}

.mypage .pointArea_item .point_list_item {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 20% 1fr;
      grid-template-columns: 20% 1fr;
  height: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  border-bottom: 1px solid #3b414a;
  background-color: var(--color-widget-box-primary);
}

.mypage .pointArea_item .point_list_item strong {
  font-size: 12px;
  color: #BABABA;
  width: 100%;
  height: 100%;
  background-color: #2b2d38;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-right: 1px solid #2b2d38;
}

.mypage .pointArea_item .point_list_item span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  color: #1EF467;
  padding-left: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mypage .pointArea_item .point_list_item:last-child {
  border-bottom: 0;
}

.mypage .pointArea_item .point_list_table {
  margin-top: 20px;
}

.mypage .pointArea_item .point_list_table strong {
  font-size: 14px;
  color: #D48A21;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.mypage .pointArea_item .point_list_table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border-radius: 0.6em;
  background-color: var(--color-widget-box-primary);
  -webkit-box-shadow: var(--color-widget-box-shadow);
          box-shadow: var(--color-widget-box-shadow);
  overflow: hidden;
}

.mypage .pointArea_item .point_list_table table thead tr {
  background-color: #363844;
}

.mypage .pointArea_item .point_list_table table thead tr th {
  height: 50px;
  color: #000;
  text-align: center;
  font-size: 14px;
  padding-left: 0;
}

.mypage .pointArea_item .point_list_table table thead tr th .tit {
  width: 100%;
  height: 50px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
  box-sizing: border-box;
}

.mypage .pointArea_item .point_list_table table thead tr th .tit strong {
  font-size: 14px;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0 !important;
}

.mypage .pointArea_item .point_list_table table thead tr th .tit strong font {
  color: #ED9921;
  margin-left: 5px;
}

.mypage .pointArea_item .point_list_table table thead tr th .tit strong font:last-of-type {
  color: #BABABA;
}

.mypage .pointArea_item .point_list_table table thead tr th .tit select {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #000;
  border: 1px solid #6a6a6a;
  width: auto !important;
  height: 34px !important;
  color: #bbb;
  font-size: 12px;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 !important;
  margin-left: 15px !important;
}

.mypage .pointArea_item .point_list_table table thead tr th .tit .point_tip {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #1EF467;
  height: 36px;
  padding: 0 10px;
  cursor: pointer;
}

.mypage .pointArea_item .point_list_table table thead tr th .tit .point_tip span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 10px;
}

.mypage .pointArea_item .point_list_table table thead tr th .tit .point_tip strong {
  margin: 0;
}

@media (max-width: 980px) {
  .mypage .pointArea_item .point_list_table table thead tr th .tit {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: unset;
    padding: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .mypage .pointArea_item .point_list_table table thead tr th .tit strong {
    font-size: 12px;
    margin-bottom: 0;
  }
  .mypage .pointArea_item .point_list_table table thead tr th .tit select {
    margin: 0;
  }
  .mypage .pointArea_item .point_list_table table thead tr th .tit .point_tip {
    position: unset;
    -webkit-transform: unset;
            transform: unset;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    margin-top: 5px;
  }
  .mypage .pointArea_item .point_list_table table thead tr th .tit .point_tip strong {
    font-size: 12px;
  }
}

.mypage .pointArea_item .point_list_table table tbody tr {
  border-bottom: 1px solid #363844;
  background-color: #2b2d38;
}

.mypage .pointArea_item .point_list_table table tbody tr td {
  color: #BABABA;
  text-align: center;
  height: 40px;
  font-size: 12px;
  vertical-align: middle;
}

.mypage .pointArea_item .point_list_table table tbody tr td .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mypage .pointArea_item .point_list_table table tbody tr td .text span {
  margin-left: 10px;
  cursor: pointer;
}

.mypage .pointArea_item .point_list_table table tbody tr td .text span img {
  -webkit-filter: brightness(0.5);
          filter: brightness(0.5);
}

@media (max-width: 980px) {
  .mypage .pointArea .point_list .point_list_item {
    -ms-grid-columns: 40% 1fr;
        grid-template-columns: 40% 1fr;
  }
}

.mypage .panels .panels_body ul li a {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 43px;
      grid-template-columns: 1fr 43px;
  grid-gap: 10px;
  height: unset;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mypage .panels .panels_body ul li a .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.panels {
  width: 100%;
}

.panels_head {
  background-color: #282828;
  border-bottom-color: #282828;
}

.panels_head strong {
  color: #ED9921;
  font-size: 12px;
}

.panels_body {
  background-color: var(--color-widget-box-primary);
  -webkit-box-shadow: var(--color-widget-box-shadow);
          box-shadow: var(--color-widget-box-shadow);
  color: #999;
  font-size: 12px;
  padding: 0;
  border-radius: 10px;
  width: 100%;
}

.panels_body ul li {
  border-bottom: 1px solid #3b414a;
}

.panels_body ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  height: 44px;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.panels_body ul li a .textArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.panels_body ul li a .textArea .text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.panels_body ul li a .textArea .text font {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.panels_body ul li a .textArea .text font .type {
  font-size: 12px;
  margin-right: 5px;
  min-width: 32px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.panels_body ul li a .textArea .text .number {
  color: #ED9921;
}

.panels_body ul li a .textArea .viewinfo p {
  font-size: 12px;
  color: #a8a8a8;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  cursor: pointer;
  line-height: 22px;
}

.panels_body ul li a .textArea .viewinfo_date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 5px;
  color: #6c757d;
}

.panels_body ul li a .textArea .viewinfo_date span {
  margin-right: 10px;
}

.panels_body ul li a .textArea .viewinfo_date span::before {
  margin-right: 5px;
}

.panels_body ul li a .img {
  width: 43px;
  height: 43px;
  overflow: hidden;
  border-radius: 4px;
  background-color: #434b57;
  display: none;
}

.panels_body ul li a .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.panels_body ul li:last-child {
  border-bottom: 0;
}

.panels_body .buttonArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.panels_body .buttonArea button {
  padding: 5px 10px;
  margin-right: 10px;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  min-height: unset;
}

.panels_body .buttonArea button:before {
  margin-right: 5px;
}

.panels_body .buttonArea button:last-child {
  margin-right: 0;
}

.panels_body .buttonArea button.edit {
  background-color: #ff9400;
  color: #fff;
}

.panels_body .buttonArea button.delete {
  background-color: #c40000;
  color: #fff;
}

.new {
  width: 15px;
  height: 15px;
  min-width: 15px;
  min-height: 15px;
  border-radius: 50%;
  background-color: #ff0000;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  font-size: 12px;
  z-index: 100;
}

.new font {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  margin: 0;
  margin-top: 1px;
}

.hot {
  width: 27px;
  height: 27px;
  background-image: url(../image/Frame.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.viewArea {
  position: relative;
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 0px;
}

.viewArea span {
  margin-right: 5px;
}

.viewArea span:last-child {
  margin-right: 0;
}

.iconHistory:before {
  content: '\f1da';
  font-family: 'FontAwesome';
}

.iconleft:before {
  content: '\f100';
  font-family: 'FontAwesome';
  margin-right: 5px;
}

.iconright:after {
  content: '\f101';
  font-family: 'FontAwesome';
  margin-left: 5px;
}

.iconlist:before {
  content: '\f15c';
  font-family: 'FontAwesome';
  margin-right: 5px;
}

.iconEdit:before {
  content: '\f044';
  font-family: 'FontAwesome';
}

.iconEnter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.iconEnter:before {
  content: '';
  background-image: url(../image/enter.png);
  background-size: 21px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 21px;
  height: 16px;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}

.iconView:before {
  content: '\f06e';
  font-family: 'FontAwesome';
}

.iconImage:before {
  content: '\f03e';
  font-family: 'FontAwesome';
  color: #0896e7;
}

.iconMenu::before {
  content: '\f0c9';
  font-family: 'FontAwesome';
}

.iconSearch::before {
  content: '\f002';
  font-family: 'FontAwesome';
}

.iconDelete:before {
  content: '\f1f8';
  font-family: 'FontAwesome';
}

.iconClose:before {
  content: '\f00d';
  font-family: 'FontAwesome';
}

.iconTwitter:before {
  content: '\f099';
  font-family: 'FontAwesome';
}

.iconTelegram:before {
  content: '\f2c6';
  font-family: 'FontAwesome';
}

.iconApple:before {
  content: '\f179';
  font-family: 'FontAwesome';
}

.iconInstagram:before {
  content: '\f16d';
  font-family: 'FontAwesome';
}

.iconTwitch:before {
  content: '\f1e8';
  font-family: 'FontAwesome';
}

.iconComment:before {
  content: '\f27a';
  font-family: 'FontAwesome';
}

.buttonArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.buttonArea button {
  padding: 5px 10px !important;
  margin: 0 !important;
  margin-right: 10px !important;
  font-size: 12px !important;
  width: auto !important;
  height: auto !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  border-radius: 5px !important;
  min-height: unset !important;
  outline: none !important;
  border: 0;
}

.buttonArea button:before {
  margin-right: 5px;
}

.buttonArea button:last-child {
  margin-right: 0;
}

.buttonArea button.edit {
  background-color: #ff9400 !important;
  color: #fff !important;
}

.buttonArea button.delete {
  background-color: #c40000 !important;
  color: #fff !important;
}

.text-left {
  text-align: left !important;
}

.text-red {
  color: #D72626 !important;
  border-radius: 10px;
  overflow: hidden;
}

.illustrate {
  width: 436px;
  margin: 0 auto;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: none;
  border-radius: 10px;
  overflow: hidden;
}

.illustrate_head {
  background-color: #434B57;
  width: 100%;
  height: 50px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 23px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.illustrate_head strong {
  font-size: 16px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: 'nanumgothic_bold';
}

.illustrate_head .close {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}

.illustrate_body {
  background-color: var(--color-widget-box-primary);
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #282828;
}

.illustrate_body .item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #424450;
  width: 100%;
  height: 50px;
  padding: 0 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 5px;
}

.illustrate_body .item strong {
  color: #BABABA;
  font-size: 12px;
}

.illustrate_body .item .number {
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-self: flex-end;
}

.illustrate_body .item:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.illustrate:after {
  content: '';
  position: fixed;
  top: -200%;
  left: -200%;
  right: -200%;
  bottom: -200%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.8);
}

.illustrate.on {
  display: block;
}

@media (max-width: 980px) {
  .illustrate {
    width: 95%;
    margin: 0 auto;
  }
}

.text-green {
  color: #1EF467 !important;
}

.iconHistory:before {
  content: '\f1da';
  font-family: 'FontAwesome';
}

.iconleft:before {
  content: '\f100';
  font-family: 'FontAwesome';
  margin-right: 5px;
}

.iconright:after {
  content: '\f101';
  font-family: 'FontAwesome';
  margin-left: 5px;
}

.iconlist:before {
  content: '\f15c';
  font-family: 'FontAwesome';
  margin-right: 5px;
}

.iconEdit:before {
  content: '\f044';
  font-family: 'FontAwesome';
}

.iconEnter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.iconEnter:before {
  content: '';
  background-image: url(../image/enter.png);
  background-size: 21px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 21px;
  height: 16px;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}

.iconView:before {
  content: '\f06e';
  font-family: 'FontAwesome';
}

.iconImage:before {
  content: '\f03e';
  font-family: 'FontAwesome';
  color: #0896e7;
}

.iconMenu::before {
  content: '\f0c9';
  font-family: 'FontAwesome';
}

.iconSearch::before {
  content: '\f002';
  font-family: 'FontAwesome';
}

.iconDelete:before {
  content: '\f1f8';
  font-family: 'FontAwesome';
}

.iconClose:before {
  content: '\f00d';
  font-family: 'FontAwesome';
}

.iconTwitter:before {
  content: '\f099';
  font-family: 'FontAwesome';
}

.iconTelegram:before {
  content: '\f2c6';
  font-family: 'FontAwesome';
}

.iconApple:before {
  content: '\f179';
  font-family: 'FontAwesome';
}

.iconInstagram:before {
  content: '\f16d';
  font-family: 'FontAwesome';
}

.iconTwitch:before {
  content: '\f1e8';
  font-family: 'FontAwesome';
}

.iconComment:before {
  content: '\f27a';
  font-family: 'FontAwesome';
}

.purchase_pop_layout {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: -1;
}

.purchase_pop_layout .purchase_pop {
  background-color: var(--color-widget-box-primary);
  -webkit-box-shadow: var(--color-widget-box-shadow);
          box-shadow: var(--color-widget-box-shadow);
  width: 520px;
  border-radius: 10px;
}

.purchase_pop_layout .purchase_pop .info {
  padding: 35px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.purchase_pop_layout .purchase_pop .info .tit {
  font-size: 16px;
  color: #fff;
  margin-top: 25px;
}

.purchase_pop_layout .purchase_pop .info .tit span {
  color: #ED9921;
  font-weight: bold;
  font-family: 'nanumgothic_bold';
}

.purchase_pop_layout .purchase_pop .info .cash {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.purchase_pop_layout .purchase_pop .info .cash .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 10px;
}

.purchase_pop_layout .purchase_pop .info .cash strong {
  color: #1EF467;
  font-size: 14px;
}

.purchase_pop_layout .purchase_pop .info .form {
  margin-top: 15px;
  width: 100%;
  max-width: 280px;
}

.purchase_pop_layout .purchase_pop .info .form input {
  background-color: #30323c;
  border: 1px solid #2b2d3a;
  border: 0;
  font-size: 16px;
  color: #fff;
  width: 100%;
  height: 50px;
  text-align: center;
  border-radius: 5px;
  outline: none;
}

.purchase_pop_layout .purchase_pop .info .form input::-webkit-input-placeholder {
  color: #666;
}

.purchase_pop_layout .purchase_pop .info .form input:-ms-input-placeholder {
  color: #666;
}

.purchase_pop_layout .purchase_pop .info .form input::-ms-input-placeholder {
  color: #666;
}

.purchase_pop_layout .purchase_pop .info .form input::placeholder {
  color: #666;
}

.purchase_pop_layout .purchase_pop .info .form p {
  font-size: 14px;
  color: #fff;
  margin-top: 10px;
  text-align: center;
}

.purchase_pop_layout .purchase_pop .info .end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 15px;
}

.purchase_pop_layout .purchase_pop .info .end .tit {
  color: #FF881B;
  font-size: 24px;
}

.purchase_pop_layout .purchase_pop .info .end .sub_tit {
  font-size: 24px;
  color: #fff;
  margin-top: 15px;
}

.purchase_pop_layout .purchase_pop .info .end .text {
  margin-top: 15px;
}

.purchase_pop_layout .purchase_pop .info .end .text p {
  color: #fff;
  text-align: center;
}

.purchase_pop_layout .purchase_pop .info .end .text p:first {
  color: #bbb;
}

.purchase_pop_layout .purchase_pop .info .end .text p:last-child {
  margin-top: 10px;
}

.purchase_pop_layout .purchase_pop .control {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #272830;
  border-radius: 0 0 10px 10px;
}

.purchase_pop_layout .purchase_pop .control button {
  width: 100%;
  height: 60px;
  background-color: #f5f5f5;
  border: 1px solid #eaeaea;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #000;
  font-weight: bold;
  font-family: 'nanumgothic_bold';
  font-size: 16px;
  border: 0;
  border-radius: 5px;
}

.purchase_pop_layout .purchase_pop .control button.submit {
  background-color: #434b57;
  border: 1px solid #434b57;
  color: #fff;
}

.purchase_pop_layout .purchase_pop .control.one {
  -ms-grid-columns: (1fr)[1];
      grid-template-columns: repeat(1, 1fr);
}

.purchase_pop_layout.on {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 999;
}

@media (max-width: 980px) {
  .purchase_pop_layout .purchase_pop {
    width: 95%;
  }
}
/*# sourceMappingURL=mypage.css.map */