@import url(https://fonts.googleapis.com/css?family=Lobster|Noto+Sans+KR|Pacifico);
.side-menu__color-button {
  position: relative;
  height: 50px;
  width: 50px;
  border: 0.5px solid transparent; }
  .side-menu__color-button:hover {
    cursor: pointer; }
  .side-menu__color-button.primary {
    top: 0;
    left: 0;
    border-top: 0.5px solid black;
    border-left: 0.5px solid black;
    border-radius: 15px 0 0 0;
    transition: border .3s ease, top .3s ease, left .3s ease; }
  .side-menu__color-button.primary.active {
    top: -5px;
    left: -5px;
    border: 0.5px solid black; }
  .side-menu__color-button.secondary {
    top: 0;
    right: 0;
    border-top: 0.5px solid black;
    border-right: 0.5px solid black;
    border-radius: 0 15px 0 0;
    transition: border .3s ease, top .3s ease, right .3s ease; }
  .side-menu__color-button.secondary.active {
    top: -5px;
    right: -5px;
    border: 0.5px solid black; }
  .side-menu__color-button.mainbg {
    left: 0;
    bottom: 0;
    border-bottom: 0.5px solid black;
    border-left: 0.5px solid black;
    border-radius: 0 0 0 15px;
    transition: border .3s ease, bottom .3s ease, left .3s ease; }
  .side-menu__color-button.mainbg.active {
    bottom: -5px;
    left: -5px;
    border: 0.5px solid black; }
  .side-menu__color-button.aditionalbg {
    bottom: 0;
    right: 0;
    border-right: 0.5px solid black;
    border-bottom: 0.5px solid black;
    border-radius: 0 0 15px 0;
    transition: border .3s ease, bottom .3s ease, right .3s ease; }
  .side-menu__color-button.aditionalbg.active {
    bottom: -5px;
    right: -5px;
    border: 0.5px solid black; }

.color-picker {
  display: block;
  margin: 15px auto;
  width: fit-content; }
  .color-picker__saturation {
    position: relative;
    height: 200px;
    width: 200px;
    touch-action: manipulation; }
    .color-picker__saturation:hover {
      cursor: crosshair; }
  .color-picker__hue {
    position: relative;
    height: 15px;
    width: 200px;
    padding: 0;
    border-radius: 7.5px;
    margin: 10px 0 0;
    overflow: hidden;
    background-color: red;
    touch-action: manipulation; }
    .color-picker__hue .hue-horizontal {
      margin: 0 7.5px !important;
      -webkit-tap-highlight-color: transparent; }
  .color-picker__hue-pointer {
    position: absolute;
    z-index: 1;
    top: 10px;
    transform: translate(-50%, -10px);
    cursor: pointer;
    height: 15px;
    width: 15px;
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
    border-radius: 7.5px;
    box-shadow: inset 0 0 7px 1px rgba(0, 0, 0, 0.2); }

@media screen and (max-width: 824px) and (max-height: 824px) {
  .color-picker__saturation {
    position: relative;
    height: 50vh;
    width: auto;
    margin: 0 10px; }
  .color-picker__hue {
    position: relative;
    height: 30px;
    width: calc(100vw - 20px);
    border-radius: 15px;
    margin: 10px 10px 0; }
    .color-picker__hue .hue-horizontal {
      margin: 0 15px !important; }
  .color-picker__hue-pointer {
    height: 30px;
    width: 30px;
    border-radius: 15px; } }

@media screen and (max-width: 824px) and (max-height: 450px) {
  .color-picker {
    display: inline-block;
    height: calc(100vh - 130px);
    width: calc(100vw - 20px);
    margin: 0; }
    .color-picker__saturation {
      position: absolute;
      top: 120px;
      height: calc(100vh - 130px);
      width: calc(100vw - 20px); }
    .color-picker__hue {
      position: absolute;
      z-index: 3;
      top: 80px;
      left: 120px;
      width: calc(100% - 130px);
      margin: 0; } }

.color-input {
  display: block; }
  .color-input__input-header {
    margin: 15px 0 5px;
    text-align: center;
    user-select: none; }
  .color-input__input-box {
    width: fit-content;
    margin: 0 auto; }
    .color-input__input-box__hex-input {
      width: 100%; }
      .color-input__input-box__hex-input::before {
        content: 'HEX';
        display: inline-block;
        width: 40%; }
      .color-input__input-box__hex-input input {
        width: 60%;
        text-align: end; }
    .color-input__input-box__hue-input {
      width: 100%; }
      .color-input__input-box__hue-input::before {
        content: 'H';
        display: inline-block;
        width: 40%; }
      .color-input__input-box__hue-input input {
        width: 60%;
        text-align: end; }
    .color-input__input-box__saturation-input {
      width: 100%; }
      .color-input__input-box__saturation-input::before {
        content: 'S';
        display: inline-block;
        width: 40%; }
      .color-input__input-box__saturation-input input {
        width: 60%;
        text-align: end; }
    .color-input__input-box__lightness-input {
      width: 100%; }
      .color-input__input-box__lightness-input::before {
        content: 'L';
        display: inline-block;
        width: 40%; }
      .color-input__input-box__lightness-input input {
        width: 60%;
        text-align: end; }

@media screen and (max-width: 824px) and (max-height: 824px) {
  .color-input {
    width: 100%; }
    .color-input__input-header {
      display: none; }
    .color-input__input-box * {
      display: none; } }

.copy-buttons {
  display: block;
  margin-bottom: 10px; }
  .copy-buttons__header {
    text-align: center;
    margin: 15px 0 5px;
    user-select: none; }
  .copy-buttons__buttons-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around; }
    .copy-buttons__buttons-container__hex-btn, .copy-buttons__buttons-container__hsl-btn {
      padding: 5px;
      border: 1px solid gray;
      border-radius: 15px;
      user-select: none;
      -webkit-tap-highlight-color: transparent; }
    .copy-buttons__buttons-container__hex-btn:hover, .copy-buttons__buttons-container__hsl-btn:hover {
      cursor: pointer;
      border-color: #03a9f4; }

@media screen and (max-width: 824px) and (max-height: 824px) {
  .copy-buttons {
    width: 100%; }
    .copy-buttons__header {
      position: absolute;
      top: 35px;
      left: calc(50% - 100px);
      width: 200px;
      margin: 0;
      color: gray; }
    .copy-buttons__buttons-container {
      position: absolute;
      top: 40px;
      flex-direction: column;
      justify-content: space-between;
      height: 80px;
      width: 50px;
      margin: 30px 30px 0;
      text-align: center; } }

@media screen and (max-width: 824px) and (max-height: 450px) {
  .copy-buttons {
    display: flex;
    flex-direction: row;
    width: 50vw; }
    .copy-buttons__header {
      position: absolute;
      left: 240px;
      top: 40px;
      width: fit-content;
      margin: 0 10px 0 0;
      text-align: left;
      line-height: 30px; }
    .copy-buttons__buttons-container {
      position: absolute;
      top: 40px;
      left: 120px;
      flex-direction: row;
      justify-content: flex-start;
      height: 30px;
      width: 100px;
      margin: 0;
      text-align: center; }
      .copy-buttons__buttons-container__hsl-btn {
        margin-left: 10px; } }

.side-menu {
  position: relative;
  z-index: 3;
  height: 100vh;
  flex: 0 0 300px;
  margin: 0;
  background-color: white;
  box-shadow: 1px 0 5px 0 rgba(0, 0, 0, 0.75);
  transition: margin-left 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .side-menu ::-webkit-scrollbar {
    width: 0; }
  .side-menu--hidden {
    margin-left: -280px; }
  .side-menu__container {
    display: inline-block !important;
    height: 100%;
    width: calc(100% - 20px);
    background-color: white;
    overflow-x: hidden;
    overflow-y: auto; }
  .side-menu__title {
    position: absolute;
    z-index: 2;
    right: 0;
    top: 0;
    height: 40px;
    width: 75%;
    margin: 0;
    padding: 0 !important;
    border-radius: 0 0 0 30px;
    background-color: #262626;
    opacity: 1;
    overflow: hidden;
    transition: opacity .3s ease; }
  .side-menu .gradient-effect {
    display: block;
    height: 100%;
    width: 100%;
    color: white;
    font-family: 'Pacifico', cursive;
    font-size: 18px;
    font-weight: normal;
    line-height: 40px;
    text-align: center;
    user-select: none;
    background: linear-gradient(280deg, #f40303, #ffa500, #fbfb11, #24ce24, #7bc9e3, #3b84cc, #8a2be2);
    background-size: 1400% 1400%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: AnimationName 18s linear infinite; }

@keyframes AnimationName {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }
  .side-menu--hidden .side-menu__title {
    opacity: 0; }
  .side-menu__colors-container {
    display: grid;
    height: 100px;
    width: 100px;
    margin: 70px auto 0;
    grid-template-columns: repeat(2, 50px); }
  .side-menu__hide-btn {
    display: inline-block;
    height: 100%;
    width: 20px;
    position: relative;
    overflow: hidden;
    user-select: none;
    transition: right .4s .5s ease;
    -webkit-tap-highlight-color: transparent; }
  .side-menu__hide-btn::before {
    content: "";
    position: absolute;
    z-index: 3;
    top: calc(50% - 10px);
    width: 20px;
    height: 20px;
    background-image: url(/images/cef293dc5ca4c3340d3a50af8f593ded.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
    transition: transform .4s ease;
    -webkit-tap-highlight-color: transparent; }
  .side-menu__hide-btn:hover {
    cursor: pointer; }
  .side-menu--hidden .side-menu__hide-btn::before {
    transform: rotate(-180deg); }

@media screen and (max-width: 824px) and (max-height: 824px) {
  .side-menu {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    box-shadow: none;
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1) 0s; }
    .side-menu--hidden {
      margin-left: 0;
      transform: translateX(-100%); }
    .side-menu__container {
      display: block;
      height: 100%;
      width: 100%; }
    .side-menu__title {
      height: 30px;
      width: 200px;
      border-radius: 0 0 0 25px; }
    .side-menu .gradient-effect {
      text-align: left;
      line-height: 30px;
      padding: 0 0 0 20px !important; }
    .side-menu__colors-container {
      margin-top: 60px; }
    .side-menu__hide-btn {
      position: absolute;
      z-index: 5;
      top: 3px;
      right: 3px;
      height: 24px;
      width: 24px;
      padding: 0; }
    .side-menu__hide-btn::before {
      top: 0;
      padding: 2px;
      border-radius: 11px;
      background-color: white;
      background-position-y: center;
      background-position-x: 35%; }
    .side-menu--hidden .side-menu__hide-btn {
      right: -28px; } }

@media screen and (max-width: 824px) and (max-height: 450px) {
  .side-menu__title {
    width: 47%; }
  .side-menu__colors-container {
    position: absolute;
    height: 100px;
    width: 100px;
    margin: 10px !important; } }

:root {
  --color: white; }

.first-template__title {
  -webkit-tap-highlight-color: transparent; }
  .first-template__title:hover {
    cursor: pointer; }

.first-template__main {
  display: flex;
  flex-direction: row;
  justify-content: flex-start; }

.first-template__side-bar {
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 0 0 200px;
  margin-left: 0;
  transition: margin-left .3s ease; }
  .first-template__side-bar__nav-item {
    position: relative;
    height: 30px;
    width: auto;
    border-radius: 15px;
    margin: 10px 5px 0 5px;
    line-height: 30px;
    text-align: center;
    -webkit-tap-highlight-color: transparent; }
  .first-template__side-bar__nav-item::after {
    content: '';
    position: absolute;
    z-index: 2;
    right: 0;
    display: inline-block;
    height: 20px;
    width: 20px;
    border-radius: 10px;
    margin: 5px;
    background-color: transparent;
    transition: background-color .3s ease; }
  .first-template__side-bar__nav-item:hover {
    cursor: pointer; }
  .first-template__side-bar__nav-item:hover::after, .first-template__side-bar__nav-item.active::after {
    background-color: var(--color); }

.first-template__main-space {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 300px));
  grid-gap: 10px;
  justify-content: space-around;
  height: 100%;
  flex-grow: 1;
  padding: 10px 20px;
  overflow-x: hidden;
  overflow-y: auto; }
  .first-template__main-space__post-item {
    position: relative;
    display: block;
    height: 200px;
    flex: 0 1 300px;
    width: auto;
    box-shadow: 3px 3px 7px 0 rgba(0, 0, 0, 0.75); }
  .first-template__main-space__post-title {
    position: absolute;
    bottom: 10px;
    width: 100%;
    padding: 5px 0;
    text-align: center; }

.first-template__side-bar.closed {
  margin-left: -200px; }

@media screen and (max-width: 824px) {
  .page-mock.first-template__title {
    margin-left: 40px !important; }
  .page-mock.first-template__main-space {
    padding: 10px 8px 10px 20px; } }

.second-template__main-space {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  flex-grow: 1;
  padding: 10px 20px;
  overflow-y: auto; }
  .second-template__main-space__post-item {
    position: relative;
    display: block;
    flex-shrink: 0;
    height: 100px;
    width: calc(100% - 20px);
    margin: 5px 10px;
    box-shadow: 3px 3px 7px 0 rgba(0, 0, 0, 0.75); }
  .second-template__main-space__post-item.active {
    height: 300px; }
  .second-template__main-space__post-title {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 30px;
    width: 130px;
    border-radius: 0 0 15px 0;
    box-shadow: inset -2px -2px 7px 0 rgba(0, 0, 0, 0.75);
    line-height: 30px;
    white-space: nowrap;
    text-align: center;
    overflow: hidden;
    transition: width .3s ease, height .3s ease; }
  .second-template__main-space__post-title:hover {
    height: 35px;
    width: 150px; }
  .second-template__main-space__post-item.active .second-template__main-space__post-title {
    top: 15px;
    border-radius: 0 15px 15px 0;
    pointer-events: none; }

@media screen and (max-width: 824px) {
  .second-template__main-space {
    padding: 0 !important; } }

.third-template__main-space {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: min-content;
  grid-gap: 10px;
  justify-content: space-around;
  height: 100%;
  flex-grow: 1;
  padding: 10px 20px !important;
  overflow-y: auto; }
  .third-template__main-space__post-item {
    position: relative;
    display: block;
    height: 200px;
    flex: 0 1 300px;
    width: auto;
    box-shadow: 3px 3px 7px 0 rgba(0, 0, 0, 0.75);
    overflow: hidden; }
  .third-template__main-space__post-item.active {
    height: 300px;
    width: 100%;
    grid-column: 1 / 3; }
  .third-template__main-space__post-title {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    height: 30px;
    width: 100%;
    line-height: 30px;
    white-space: nowrap;
    text-align: center;
    overflow: hidden;
    transition: width .2s ease, left .2s ease, border-radius .2s ease; }
  .third-template__main-space__post-title:hover {
    left: 15%;
    width: 70%;
    border-radius: 15px 15px 0 0; }
  .third-template__main-space__post-item.active .third-template__main-space__post-title {
    width: 70%;
    bottom: 15px;
    left: 15%;
    border-radius: 15px;
    pointer-events: none; }

@media screen and (max-width: 824px) and (max-height: 824px) {
  .third-template__main-space {
    grid-template-columns: repeat(auto-fit, minmax(0, 100%)); }
    .third-template__main-space__post-item.active {
      height: 300px;
      grid-column: unset; } }

.page-mock-router {
  z-index: 1;
  height: 100vh;
  flex-grow: 1;
  user-select: none; }
  .page-mock-router .first-template,
  .page-mock-router .second-template,
  .page-mock-router .third-template {
    width: 100%;
    height: 100%; }
    .page-mock-router .first-template__header,
    .page-mock-router .second-template__header,
    .page-mock-router .third-template__header {
      display: block;
      height: 40px;
      width: 100%;
      overflow: hidden; }
    .page-mock-router .first-template__title,
    .page-mock-router .second-template__title,
    .page-mock-router .third-template__title {
      height: 40px;
      width: fit-content;
      padding: 0 5px;
      margin: 0 0 0 10px;
      line-height: 40px;
      font-family: 'Lobster', cursive;
      font-size: 16px;
      letter-spacing: 2px; }
    .page-mock-router .first-template__main,
    .page-mock-router .second-template__main,
    .page-mock-router .third-template__main {
      height: calc(100% - 50px);
      background-color: white;
      overflow-x: hidden;
      overflow-y: auto !important; }
    .page-mock-router .first-template__footer,
    .page-mock-router .second-template__footer,
    .page-mock-router .third-template__footer {
      height: 10px; }

@media screen and (max-width: 824px) and (max-height: 824px) {
  .first-template__header,
  .second-template__header,
  .third-template__header {
    display: block;
    height: 30px !important; }
  .first-template__title,
  .second-template__title,
  .third-template__title {
    display: block !important;
    margin-left: 40px !important;
    height: 30px !important;
    line-height: 30px !important; }
  .first-template__main,
  .second-template__main,
  .third-template__main {
    height: calc(100% - 35px) !important; }
  .first-template__main-space,
  .second-template__main-space,
  .third-template__main-space {
    padding: 10px 8px 10px 20px; }
  .first-template__footer,
  .second-template__footer,
  .third-template__footer {
    height: 5px !important; } }

* {
  box-sizing: border-box;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 14px;
  font-weight: normal; }

html,
body {
  margin: 0;
  height: 100vh;
  overflow: hidden; }

input {
  border: none;
  -webkit-tap-highlight-color: transparent;
  background: white no-repeat;
  background-image: linear-gradient(to bottom, #03a9f4, #03a9f4), linear-gradient(to bottom, silver, silver);
  background-size: 0% 2px, 60% 1px;
  background-position: 100% 100%, 100% 100%;
  transition: background-size 0.3s cubic-bezier(0.64, 0.09, 0.08, 1); }

input:focus {
  outline: none;
  border: none;
  background-size: 60% 2px, 60% 1px; }

a,
a:link,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none; }

::-webkit-scrollbar {
  width: 14px;
  height: 18px; }

::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none; }

::-webkit-scrollbar-corner {
  background-color: transparent; }

::-webkit-scrollbar-thumb {
  height: 6px;
  border: 4px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
  border-radius: 7px;
  background-color: rgba(0, 0, 0, 0.15);
  box-shadow: inset -1px -1px 0 rgba(0, 0, 0, 0.05), inset 1px 1px 0 rgba(0, 0, 0, 0.05); }
  ::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.25); }

.app,
.container {
  display: flex;
  justify-content: start;
  flex-direction: row;
  min-height: 100%;
  min-width: 100%;
  position: relative; }

@media screen and (max-width: 824px) and (max-height: 824px) {
  input {
    background-size: 0% 2px, 100% 1px;
    background-position: 50% 100%, 100% 100%;
    transition: background-size 0.3s cubic-bezier(0.64, 0.09, 0.08, 1); }
  input:focus {
    background-size: 100% 2px, 100% 1px; }
  ::-webkit-scrollbar {
    width: 10px;
    height: 18px; } }


/*# sourceMappingURL=main.css.map*/