html, body {
  width: 100vw;
  height: 100vh;
}

header.gnb {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  background-color: var(--bgc);
  border-bottom: 1px solid var(--brd);
  z-index: 999;
}
header.gnb .logo {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  padding: 0 10px;
}
header.gnb .toggle-menu {
  display: none;
}

header.gnb .logo span {
  display: inline-block;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 5px;
}
header.gnb .logo .sub-logo {
  font-size: 0.8em;
  opacity: 0.8;
}

.main-menu, .sub-menu {
  display: flex;
  gap: 10px;
}

.pages .main-menu .toggle-menu {
  display: none;
}

.sub-menu.float {
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 999;
}

.main-container {
  width: 100%;
  height: 100vh;
  display: flex;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.main-container.main {
  padding-top: 60px;
}
.main-container.main .right-part {
  height: 100%;
}
.main-container .left-part {
  max-width: 250px;
  height: 100vh;
  flex-shrink: 0;
}
.main-container .right-part {
  flex-grow: 1;
  max-width: 100%;
  height: 100%;
  overflow-y: auto;
}

.side-menu {
  width: 250px;
  height: calc(100dvh - 60px);
  overflow-y: auto;
  flex-shrink: 0;
  position: relative;
  background-color: var(--bgc);
}

.menu-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
  height: 100%;
  transition: transform 250ms ease;
  transform: translateX(-100%);
  overflow-y: auto;
}

.ui-list {
  width: 100%;
  height: 100%;
}
.ui-list .menu-header {
  padding: 10px;
  font-size: 1.2em;
}
.ui-list .menu-contents {
  padding: 10px;
}
.ui-list .nav-item {
  border-radius: 4px;
}
.ui-list .nav-item a {
  width: 100%;
  padding: 10px;
}
.ui-list .nav-item a::first-letter {
  text-transform: uppercase;
}

.flex-wrap {
  display: flex;
}

section {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  margin-bottom: 20px;
}
section .section-title {
  padding-bottom: 20px;
  border-bottom: 1px solid #efefef;
}
section .section-title h1 {
  font-size: 3em;
  margin-bottom: 14px;
}
section .section-title .section-desc p {
  font-weight: 300;
  color: #999;
  font-size: 1.2em;
}
section .section-contents {
  padding: 30px 0;
}
section .section-contents .contents-title {
  margin-bottom: 10px;
}
section .section-contents .contents-wrapper .contents-item {
  padding: 10px;
}

.grid-table {
  width: 80%;
}
.grid-table .rows {
  border-bottom: 1px solid #e4e4e4;
}
.grid-table .rows.grid-header {
  font-weight: 600;
  border-top: 2px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
}

.summary .sub-title {
  margin: 10px 0 20px;
  color: #ccc;
  font-weight: bold;
}
.summary .column-wrapper {
  display: flex;
  align-items: center;
}
.summary .gray-item {
  padding: 4px 8px;
  text-align: center;
  min-height: 40px;
  height: 100%;
}
.summary .field {
  margin-bottom: 5px;
}

#typography .mainWord {
  font-size: 4em;
}
#typography .subWord {
  color: #ababab;
}
#typography .contents-wrapper p {
  letter-spacing: 5px;
  font-weight: 500;
}
#typography .color-box {
  display: inline-block;
  min-width: 120px;
  height: 120px;
  padding: 10px;
  word-break: break-word;
  margin: 5px;
}
#typography .color-box.bordered {
  border: 1px solid;
}
#typography .color-box.small {
  min-width: 30px;
}

#colors .color-item {
  text-align: center;
}
#colors .color-item .chip {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  margin: 0 auto;
}
#colors .color-item .name {
  color: #ccc;
}

#button .contents-wrapper, #input .contents-wrapper, #tag .contents-wrapper, #checkbox .contents-wrapper, #badge .contents-wrapper, #toast .contents-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

#grid .ga-grid2:not(.tabled) > .column:after,
#grid .ga-grid > .rows .column:after,
#grid .ga-grid > .column:after {
  content: "";
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: #f2f2f2;
  display: block;
  box-shadow: 0 0 0 1px #efefef inset;
  min-height: 50px;
}

#form .ga-form {
  padding: 10px 20px;
}

#list .ga-list {
  max-width: 250px;
  border: 1px solid var(--brd);
}
#list .ga-list .item {
  padding: 10px;
}

#selectbox .select-menu .option-item {
  padding: 10px;
}

.flex {
  display: flex;
}

#toast .ex_toast_board {
  position: relative;
}
#toast .ex_toast_board .toast {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 5px;
  opacity: 0.95;
  box-shadow: 2px 5px 5px rgba(0, 0, 0, 0.16);
  transition: all 500ms;
  line-height: 1em;
  vertical-align: baseline;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--brd);
}
#toast .ex_toast_board .toast:hover {
  transform: translateX(10px);
}
#toast .ex_toast_board .toast .toast-icon, #toast .ex_toast_board .toast .toast-close {
  padding: 10px;
  flex-shrink: 0;
}
#toast .ex_toast_board .toast .toast-contents {
  flex-grow: 1;
  padding: 10px;
  max-width: 100%;
}
#toast .ex_toast_board .toast.round {
  border-radius: 2em;
}
#toast .ex_toast_board .toast.border-left .toast-contents {
  border-left: 5px solid;
}

.ga-card .footer {
  background-color: var(--suf);
  overflow-x: auto;
}

section pre {
  background-color: transparent !important;
  margin: 0 !important;
}

/* Extra Small Mobile */
/* Small Mobile */
@media (max-width: 599px) {
  header.gnb .logo {
    text-align: center;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  header.gnb .main-menu .toggle-menu {
    display: block;
  }
  .main-container .left-part .side-menu {
    position: absolute;
    width: 100%;
    z-index: 9999;
    transition: margin 250ms ease;
    margin-left: -100%;
  }
  .main-container.open .left-part .side-menu {
    margin-left: 0;
  }
  #typography .color-box {
    min-width: 90px;
    height: 90px;
  }
}
/* Mobile - Landscape */
/* Tablet */
/* Desktop */
/* Desktop (Large) */

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