.explore {

  /* explore */
  #explore {
    padding: 78px 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;

    .prompt {
      margin-top: 0;
    }

    .title {
      width: 100%;
      margin-top: 108px;
      text-align: center;

      h2 {
        font-size: 30px;
        font-weight: 600;
      }
    }

    .searchBox {
      width: 900px;
      height: 54px;
      border-radius: 12px;
      background: var(--Grey-800);
      margin-top: 26px;
      display: flex;
      justify-content: space-between;
      flex-direction: row;
      align-items: center;
      padding: 16px 8px 16px 30px;
      margin-bottom: 16px;

      &.afterInput {
        width: 706px;
        padding: 0px 10px 0px 15px;
        border-radius: 6px;
        height: 40px;
        margin-top: 16px;

        input {
          font-size: 20px;
          line-height: 1;
          width: calc(100% - 20px);
        }

        .icon-close_big {
          color: var(--Grey-500);
          cursor: pointer;
        }
      }

      input {
        width: calc(100% - 160px);
        height: 100%;
        border: none;
        border-radius: 0;
        padding: 0;
        font-size: 18px;
        background: var(--Grey-800);
        color: var(--fff);

        &::placeholder {
          color: var(--Grey-600);
        }

        &:-webkit-autofill,
        &:-webkit-autofill:hover,
        &:-webkit-autofill:focus,
        &:-webkit-autofill:active {
          -webkit-text-fill-color: var(--fff);
          /* 원하는 글자색 */
          -webkit-box-shadow: 0 0 0px 1000px var(--fff) inset;
          /* 원하는 배경색 */
          box-shadow: 0 0 0px 1000px var(--Grey-800) inset;
          transition: background-color 5000s ease-in-out 0s;
        }
      }

      .mainBtn {
        border-radius: 10px;
        font-size: 17px;
        font-weight: 500;
        width: 130px;
        height: 40px;
        position: relative;



        i {
          font-size: 1.4em;
          margin: 0 7px 0 0;
        }

      }

    }

    .hashBox {
      width: 100%;
      margin: 0 0 60px;
      /*color: var(--fff);*/
      display: flex;
      justify-content: center;
      gap: 16px;
      align-items: center;
    }

    .hashBox i {
      font-size: 20px;
    }

    .hashBox button {
      font-size: 17px;
      transition: all 0.2s ease-in-out;
      background: none;
      border: 0;
      cursor: pointer;
      font-weight: 500;
    }

    .hashBox button:hover,
    .hashBox button.active {
      color: var(--Pink-900);
    }

    .tabBox {
      width: 100%;
      margin-bottom: 18px;
      color: var(--fff);
      overflow-x: auto;
      overflow-y: hidden;
      scrollbar-width: none;
      /* Firefox */
      -ms-overflow-style: none;
      /* IE and Edge */
      gap: 20px;

      &::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, Opera */
      }

      &.filter_box {
        margin-bottom: 0;
        overflow: auto;
        width: auto;
      }

      >ul {
        border-bottom: 1px solid var(--Grey-800);
        display: flex;
        gap: 20px;
        margin-bottom: 14px;
        flex-shrink: 0;

        >li {

          button,
          a {
            font-size: 16px;
            font-weight: 500;
            background: none;
            color: var(--Grey-600);
            padding: 12px 4px;
            border-bottom: 3px solid transparent;
            cursor: pointer;
            display: inline-block;
          }

          button.active,
          a.active {
            color: var(--fff);
            border-bottom: 3px solid var(--fff);
            font-weight: 600;
          }

        }
      }

      .tab {
        background: #000000;
        height: 31px;
        border-radius: 15px;
        margin: 0 14px 0 0;
        display: flex;
        flex-shrink: 0;

        div {
          padding: 6px 16px;
          border-radius: 15px;
          color: var(--fff);
          font-size: 16px;
          cursor: pointer;
          display: flex;
          align-items: center;
          flex-shrink: 0;
        }

        &.active {
          background: var(--Pink-900);
          color: var(--fff);
        }

        i {
          font-size: 20px;
          margin: 0 8px 0 0;
        }
      }
    }

    .type {
      width: auto;
      display: flex;
      gap: 8px;
      align-items: center;
      flex-shrink: 0;
      overflow-x: auto;
      /* padding-bottom: 12px; */

      /* react-horizontal-scrolling-menu 내부에서 사용될 때 */
      .react-horizontal-scrolling-menu--inner-wrapper & {
        width: 100%;
        min-width: max-content;
      }

      >span {
        margin-right: 17px;
        font-size: 14px;
        font-weight: 600;
      }


      button {
        padding: 2px 16px;
        border: 1px solid var(--Grey-700);
        color: var(--Grey-300);
        border-radius: 27px;
        cursor: pointer;
        transition: all 0.2s ease-in-out;
        display: flex;
        font-size: 16px;
        background: var(--Grey-750);
        align-items: center;
        line-height: 24px;
        flex-shrink: 0;

        &:hover,
        &.active {
          background: var(--fff);
          border-color: var(--fff);
          color: var(--000);
        }

        i {
          margin-right: 5px;
          font-weight: 400;
          font-size: 20px;
        }

        p {
          letter-spacing: normal;
          word-wrap: normal;
          white-space: nowrap;
        }
      }
    }
  }

}

.grid-item {
  width: calc(25% - 15px);
  height: auto;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;

  img {
    width: 100%;
    display: block;
    border-radius: 6px;
  }

  i.icon-bookmark,
  i.icon-bookmark_add {
    font-size: 42px;
    position: absolute;
    right: 16px;
    top: 16px;
    cursor: pointer;
    opacity: 0;
  }

  &:hover {

    i.icon-bookmark,
    i.icon-bookmark_add {
      opacity: 1;
    }
  }
}

.isotope {
  .grid-item {
    margin-bottom: 20px;
  }
}

.grid {
  width: calc(100%);
  max-width: calc(100%);
  /* margin-left: 20px; */
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.grid.image_list {

  .grid-item {
    div {
      display: block;
      position: absolute;
      top: 16px;
      right: 16px;
      z-index: 1;
      cursor: pointer;

      i.icon-star-default {
        font-size: 34px;
        opacity: 0;
      }

      i.icon-star-default.active {
        &:before {
          content: '\e817';
        }
      }
    }

    &:hover {
      i.icon-star-default {
        opacity: 1;
      }
    }
  }
}


.dataset_list {
  /* width: calc(100% + 20px); */
  /* max-width: calc(100% + 20px); */
  margin-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  width: 100%;

  &.grid_view {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    display: none;
  }

  &.line_view {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    display: none;
    width: 100%;
    margin-left: 0;

    .line-item {
      display: flex;
      gap: 20px;
      flex-direction: column;


      >li {
        padding: 20px;
        border: 1px solid var(--Grey-700);
        border-radius: 10px;
        display: flex;
        gap: 10px;





        >div {
          font-size: 12px;
          font-weight: 600;
          color: var(--Grey-50);
          min-width: 80px;




          >p {
            display: flex;
            flex-direction: column;
            align-items: flex-start;



            button {
              border-radius: 4px;
              background: var(--Grey-800);
              font-size: 18px;
              padding: 6px;
              line-height: 1;
              margin-top: 4px;
              cursor: pointer;

              &.on {
                background-color: #565656;
                color: var(--Pink-900);

                .icon-star-default::before {
                  content: '\E817';
                }

              }
            }

          }
        }

        >ul {
          display: flex;
          gap: 7px;
          width: 100%;

          >li {
            margin-bottom: 0;
            width: 100%;
            flex: 1;

            &.failed {
              background: var(--Grey-850);
              border: 1px solid var(--white-opacity-10);
              display: flex;
              align-items: center;
              justify-content: center;
              text-align: center;
              line-height: 110%;

              &.width100 {}

              >div {
                i {
                  font-size: 20px;
                  margin-bottom: 20px;
                  display: block;
                }

                h5 {
                  font-size: 16px;
                  font-weight: 600;
                  margin-bottom: 10px;
                }

                p {
                  font-size: 12px;
                }
              }
            }
          }
        }
      }

    }
  }

  &.active {
    display: flex;
  }

  .grid-item {
    position: relative;
    color: var(--fff);
    height: 260px;

    img {
      /*position: relative;
      top: 50%;
      transform: translate(0%, -50%);*/
      min-width: 100%;
      min-height: 100%;
      object-fit: cover;
    }

    >div.tit {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--Grey-850);
      padding: 10px;
      z-index: 1;

      h4 {
        font-size: 14px;
        font-weight: 500;
        line-height: 130%;
      }

      h5 {
        font-size: 13.606px;
        font-weight: 500;
        line-height: 130%;
      }

      >p {
        font-size: 9.719px;
        font-weight: 500;
        line-height: 130%;
        margin-top: 8px;
        color: var(--Grey-500);
      }

      >ul {
        li {
          background: var(--Grey-700);
          padding: 3px 9px;
          color: var(--Grey-300);
          border-radius: 100px;
          font-size: 12px;
          white-space: nowrap;
          flex: 0 1 auto;
          font-weight: 500;
        }

        display: flex;
        gap: 4px;
        margin-top: 10px;
        overflow-x: auto;
      }
    }

    >div.favor {
      position: absolute;
      display: flex;
      justify-content: space-between;
      left: 0;
      right: 0;
      top: 0;
      padding: 10px;
      align-items: center;
      font-size: 14px;
      z-index: 2;

      .pinkBtn {
        padding: 3px 6px 1px 6px;
        border-radius: 4px;
        line-height: 140%;

        i {
          font-size: 16px;
          margin-right: 4px;
        }
      }

      >p {
        background: rgba(0, 0, 0, 0.30);
        border-radius: 100px;
        padding: 4px 10px;
        gap: 4px;
        display: flex;
        align-items: center;

        i {
          font-size: 16px;
        }

        span {
          font-size: 13px;
          font-weight: 600;
        }
      }

      .ver {
        color: var(--Grey-700);
        font-size: 12px;
      }

      .heart {
        display: flex;
        font-size: 13px;
        align-items: center;
        gap: 4px;
        cursor: pointer;
        float: right;
        font-weight: 600;

        i {
          font-size: 20px;
          position: relative;
          text-align: left;
          overflow: hidden;
        }

        i.icon-bookmark {
          color: var(--Pink-900);
          right: 0;
          top: 0;
          opacity: 1;
        }

        i.icon-bookmark_add {

          right: 0;
          top: 0;
          opacity: 1;
        }

        i.icon-star-default:hover:before,
        i.icon-star-default.active:before {
          content: '\e817';
          /* position: relative; */
          /* left: -5px; */
        }

        ul {
          display: flex;
          gap: 6px;

          li {
            border-radius: 4px;
            background: rgba(34, 34, 34, 0.50);
            backdrop-filter: blur(2px);
            padding: 6px;

            i {
              font-size: 18px;
            }
          }
        }

        &.bg {
          >* {
            background: rgba(82, 82, 82, 0.50);
            padding: 5px;
            border-radius: 4px;
            backdrop-filter: blur(2px);

            i.icon-brush {
              margin-right: 10px;
            }

            &.on {
              color: var(--Pink-900);
              background: rgba(147, 147, 147, 0.50);

              &.icon-star-default:before {
                content: '\E817';
              }
            }
          }

          >div {
            padding: 5px 10px;

            a {
              display: flex;
              align-items: center;
            }
          }
        }
      }

    }

    .imgWrap {
      >ul {
        display: flex;
        gap: 2px;

        >li {
          width: 50%;
          height: 148px;
          overflow: hidden;
          background: #D9D9D9;

          img {
            position: relative;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
          }
        }
      }

      >ul.two {
        >li {
          aspect-ratio: 1 / 1;
        }
      }

      >ul.three {
        >li {
          background: none;
          aspect-ratio: 1/ 1;
        }

        ul {
          display: flex;
          flex-direction: column;
          gap: 2px;

          li {
            overflow: hidden;
            aspect-ratio: 2 / 1;
          }

        }

      }
    }

  }
}

.gridItemPop {
  position: absolute;
  z-index: 2;
  background: var(--Grey-800);
  border-radius: 6px;
  padding: 0 12px;
  top: 46px;
  right: 10px;
  display: none;

  >ul {
    display: flex;
    flex-direction: column;
    font-weight: 500;
    line-height: 140%;
    cursor: pointer;

    li {
      border-top: 1px solid var(--white-opacity-10);
      font-size: 14px;
      font-weight: 500;
      line-height: 140%;
      padding: 8px 0;
      text-align: center;
      width: 74px;

      &:first-child {
        border-top: 0;
      }
    }
  }
}

@media (max-width: 1220px) {
  /* .dataset_list {
    & .grid-item {
      &>div.favor {
        padding: 5px;

        & .heart {
          &.bg {
            >i {
              font-size: 15px;
            }

            &>div {
              padding: 5px;

              a {
                i.icon-brush {
                  margin-right: 0;
                  font-size: 15px;

                }

                font-size: 0;
              }
            }
          }
        }
      }
    }
  } */
}

@media (max-width: 1024px) {
  .explore {
    #explore {
      .searchBox {
        width: 100%;
      }
    }
  }
}

@media (max-width: 1000px) {
  .grid-item {
    i.icon-star-default {
      opacity: 1 !important;
    }
  }
}

@media (max-width: 900px) {
  /* .dataset_list {
    & .grid-item {
      &>div.favor {
        & .heart {
          &.bg {
            >i {
              font-size: 12px;
            }

            &>div {
              padding: 5px;

              a {
                i.icon-brush {
                  font-size: 12px;

                }
              }
            }
          }
        }
      }
    }
  } */
}


@media (max-width: 768px) {
  .explore {
    #explore {
      padding-top: 70px;



      .title {
        margin-top: 13px;

        h2 {
          font-size: 18px;
          font-weight: 600;
          line-height: normal;
        }
      }

      .searchBox {
        width: calc(100% - 40px) !important;
        margin: 24px 20px 18px;
        height: 47px !important;
        padding: 16px !important;
        border-radius: 12px !important;

        &.afterInput {
          margin-top: 0;
        }

        input {
          font-size: 16px;
          font-weight: 500;
          width: calc(100% - 30px);
          border-radius: 0;
        }

        .mainBtn {
          background: none;
          width: auto;

          p {
            display: none;
          }

          i {
            font-size: 20px;
            margin: 0;
            color: var(--Grey-300);
          }


        }
      }

      .tabBox {
        margin-bottom: -2px;

        >div {
          display: flex;
          gap: 20px;
          flex-direction: column;
          align-items: flex-start;

          .thumbnail {
            display: flex;
            width: 100%;
            height: auto;
            align-items: center;
            gap: 28px;

            img {
              width: 92px;
            }

            >div {
              display: flex;
              flex-direction: column;

              h4 {
                font-size: 18px;
                font-weight: 600;
              }

            }
          }

          display: flex !important;
          flex-direction: column;

          &.filter_box {
            display: none !important;
          }

          .tagBox {
            padding-bottom: 0;
          }

          &.creators_profile {
            display: none !important;
          }
        }

        >ul {
          padding: 0 20px;
          align-items: center;

          >li {

            button,
            a {
              font-size: 14px;
              line-height: 140%;
            }

            &:last-child {
              font-size: 24px;
              position: absolute;
              right: 20px;
            }
          }
        }

      }

      .grid {
        width: calc(100% - 40px);
        /* max-width: calc(100% + 20px); */
        margin-left: 0px;

        .grid-item {
          width: calc(50% - 10px);
          margin-bottom: 16px;
          /* height: auto; */
        }

        &.three {
          .grid-item {
            width: calc(33.33333% - 5px);
            margin-bottom: 8px;
          }
        }
      }
    }

    &.creators {
      #explore {
        .tabBox {
          ul {
            li:last-child {
              position: static;
            }
          }
        }
      }

    }
  }

  .dataset_list {
    gap: 8px;
    width: calc(100% + 8px);
    max-width: calc(100% + 8px);

    .grid-item {
      width: calc(33.33333% - 8px);
      margin-bottom: 8px;
      height: auto;

      img {
        position: relative;
        top: 00%;
        transform: translate(0%, 0%);
      }

      >div.favor {
        padding: 8px;

        .pinkBtn {
          font-size: 10px;
          line-height: 140%;
          font-weight: 500;
          padding: 2px 6px;
          border-radius: 4px;
        }

        >p {
          font-weight: 500;
          line-height: 140%;
          font-size: 12px;
          padding: 0 10px;

          i {
            font-size: 12px;
          }

          span {
            font-size: 12px;
          }
        }

        .heart {
          display: none;
        }


      }

      >div.tit {
        >ul {
          flex-wrap: wrap;
          display: none;
        }
      }

    }
  }


}

/* explore End*/

/* creators_profile*/
.creators_profile {
  display: flex;
  gap: 32px;
  align-items: center;


  >div {
    display: flex;
    gap: 32px;
    align-items: center;

    >span {
      display: block;
      width: 70px;
      height: 70px;
      background: var(--Grey-300);
      border-radius: 100px;
      overflow: hidden;

      img {
        max-width: 100%;
      }
    }

  }

  h4 {
    font-size: 22px;
    font-weight: 500;

    a {
      color: var(--fff);
    }

    p {
      max-width: 160px;
    }

    em {
      margin-top: 10px;
      display: block;
      color: var(--Grey-100);
      font-size: 14px;
      font-weight: 400;
      opacity: .6;
    }

  }

  button {
    color: var(--Grey-300);
    padding: 0 16px 0 18px;
    line-height: 38px;
    border: 1px solid var(--Grey-600);
    border-radius: 8px;
    font-size: 16px;
    display: flex;
    gap: 4px;
    cursor: pointer;
    font-weight: 500;
    width: 125px;
    justify-content: center;

    i {
      font-size: 24px;
    }
  }

  button.follow {
    background: var(--Pink-900);
    border: 0;
    color: var(--fff);
    border: 1px solid var(--Pink-900);
  }
}

.creators .creators_profile {
  width: 100%;
  margin: 60px 0 40px;

  >span {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    overflow: hidden;
  }
}

@media (max-width: 1100px) {
  .creators_list {
    &>li {
      &>ul {

        >li:nth-child(4),
        >li:nth-child(5) {
          display: none;
        }
      }
    }
  }
}

/* creators_profile End*/

/* creators_list */
.creators_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;

  >li {
    display: flex;
    justify-content: space-between;
    color: var(--fff);


    >ul {
      display: flex;
      gap: 12px;
      align-items: center;
      position: relative;
      padding-right: 40px;

      >li {
        border-radius: 8px;
        overflow: hidden;
        background: var(--Grey-800);

        img {
          max-width: 72px;
          display: block;
          aspect-ratio: 1/1;
          object-fit: contain;
        }

      }

      >i {
        margin-left: 18px;
        position: static;
        position: absolute;
        font-size: 24px;
        top: 50%;
        right: 0;
        transform: rotate(90deg) translate(-50%, 0%);

      }
    }

    >ul.search {
      li {
        position: absolute;
        right: 50px;

        &:before {
          content: '';
          display: block;
          width: 72px;
          height: 72px;
          background: rgba(0, 0, 0, 0.40);
          position: absolute;
        }

        &:first-child {
          transform: rotate(10deg) translate(0%, 0%);
          z-index: 1;

          &:before {
            display: none;
          }
        }

        &:nth-child(2) {
          transform: rotate(20deg) translate(0%, 0%);
        }

        &:nth-child(3) {
          transform: rotate(-10deg) translate(0%, 0%);
        }

        &:nth-child(4) {
          transform: rotate(-10deg) translate(0%, 0%);
        }
      }
    }

  }
}

@media (max-width: 900px) {
  .creators_profile {
    gap: 12px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0 20px;

    >div {
      gap: 12px;

      >span {
        width: 48px;
        height: 48px;
        gap: 12px;
      }

      h4 {
        font-size: 16px;

        em {
          margin-top: 5px;
        }
      }
    }

    button {
      padding: 0 12px 0 18px;
      font-weight: 500;
    }
  }

  .creators_list {
    margin: 0 20px;
    gap: 20px;



    >li {
      /* margin: 0 20px; */
      display: flex;
      justify-content: space-between;
      width: 100%;

      >ul {
        display: none;
      }
    }
  }

  .creators {
    .creators_profile {
      display: flex;
      justify-content: flex-start;
    }
  }
}

@media (max-width: 768px) {
  .creators {
    >i.page_back {
      top: 16px;
      z-index: 10;
      position: fixed;
      left: 16px;
    }

    .creators_profile {
      padding-left: 20px;
      margin: 30px 0 30px;

      >span {
        width: 48px;
        height: auto;
      }

      h4 {
        font-size: 18px;

        em {
          font-size: 13px;
        }
      }
    }
  }
}

/* creators_list End */

/*modal*/
.modal_open {
  cursor: pointer;
}

/*modal End*/

/* detailDataset */
.detailDataset {
  padding: 69px 65px 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--white-opacity-10);
  margin-bottom: 14px;
  max-width: 1200px;
  margin: 0 auto 14px;
  /* position: relative; */
  width: 100%;
  left: 0;
  right: 0;
  z-index: 5;
  background: var(--Grey-950);

  +p {
    color: var(--fff);
    width: 100%;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 600;
    /* margin-top: 280px; */
  }

  .thumbnail {
    width: 148px;
    height: 148px;

    img {
      border-radius: 8px;
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  }

  .tabBox {
    display: flex;
    gap: 33px;
    margin-bottom: 0 !important;
    justify-content: space-between;
    align-items: flex-end;




    .favor {
      font-size: 13px;
      color: var(--Grey-400);

      i {
        font-size: 16px;
      }

      >p {
        display: flex;
        gap: 4px;
        align-items: center;
        font-weight: 500;
        margin: 4px 0;
      }
    }


    >div {
      display: flex;
      gap: 33px;
      align-items: flex-end;

      &.creators_profile {
        gap: 20px;
        margin-right: 0;
        width: auto;
        min-width: 265px;
      }
    }

    h4 {
      font-size: 20px;
      font-weight: 500;
    }

    .tagBox {
      gap: 8px;
      display: flex;
      flex-direction: column;
      padding-bottom: 12px;



      .type {
        flex-wrap: wrap;

        button {
          p {
            font-size: 14px;
          }
        }
      }
    }
  }

  .creators_profile {
    gap: 20px;
    padding: 12px 0;


    >div {
      gap: 8px;




      >span {
        width: 40px;
        height: 40px;
      }

      h4 {
        font-size: 18px;

      }
    }

    button {}

    .icon-chat {
      color: var(--Grey-300);
      font-size: 24px;
      margin-left: 8px;
    }
  }

  &.small {
    padding: 20px 65px;
    position: fixed;
    top: 78px;
    z-index: 1;



    .type {
      display: none !important;
    }

    .thumbnail {
      width: 72px;
      height: 72px;
      border-radius: 8px;
    }

    &.tabBox {
      >div {
        display: flex;
        align-items: center;
      }
    }

    .profile_wrap {

      p {
        color: var(--Grey-200);
        border-right: 1px solid var(--white-opacity-10);
        padding-right: 20px;
        font-size: 14px;
        line-height: 140%;
      }
    }
  }

  .grid-item {
    margin-bottom: 20px;
  }
}

@media (max-width: 1000px) {
  .explore {
    & #explore {
      & .tabBox {
        &.filter_box {}
      }

      padding-top: 70px;
    }
  }
}


@media (max-width: 1280px) {
  .detailDataset {
    padding: 20px;

    &.small {
      left: 80px;
      width: auto;
      right: 80px;
      padding: 20px;
      /* top: 54px; */
    }
  }

  .detailDataset {
    padding: 20px;

    &.small {
      left: 80px;
      width: auto;
      right: 80px;
      padding: 20px;
      /* top: 54px; */
    }
  }
}


@media (max-width: 1000px) {
  .detailDataset {
    &.small {
      top: 54px;
    }
  }

  .detailDataset {
    &.small {
      top: 54px;
    }
  }
}

@media (max-width: 768px) {
  .detailDataset {
    padding: 11px 20px 30px;

    +p {
      padding: 10px 20px;
    }

    &.small {
      padding: 10px 20px;
      display: none;




      .tabBox {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;

        >div {
          >span.name {
            width: 26px;
            height: 26px;
            border-radius: 100px;
            background: var(--Pink-900);
            line-height: 26px;
            text-align: center;
            display: block !important;
            position: absolute;
            top: 7px;
            left: 7px;
          }







          gap:30px;
          align-items: center;
          position: relative;







          .thumbnail {
            width: 92px;
            height: 92px;
          }

          .tagBox {
            h4 {
              font-size: 18px;
            }
          }

        }

        .type {
          flex-wrap: wrap;
          gap: 6px !important;
          padding-bottom: 30px !important;

          button {
            font-size: 13px !important;
            line-height: 130% !important;
            padding: 4px 12px !important;
          }
        }
      }

    }
  }
}