@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html,
body,
body > form {
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
}

body {
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

p {
  hyphens: auto;
}

html:focus-within {
  scroll-behavior: smooth; /* for English */
}

a {
  text-decoration: none;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
}

textarea:focus,
select:focus,
input:focus,
button:focus,
a:focus {
  outline: none !important;
}

.utf-8 {
  content: "Für charset"; /* DO NOT remove this */
}

:root {
  --font-family-default: "Inter", sans-serif;
  --font-weight-default: 400;
  --font-color-default: hsl(0, 0%, 24%);
  --font-size-default: 1.5rem; /*  px */
  --primary-color: hsl(245, 45%, 53%);
  --primary-color: hsl(0, 0%, 14%);
  --zindex-sidenav: 907;
  --zindex-sidenav-checked: 1017;
  --zindex-topnav: 1000;
  --page-max-width: 137rem;
  --page-header-height: 9rem;
  --page-padding-inline: 4rem;
  --page-padding-inline-mobile: 1.2rem;
  --left-panel-width: 25rem;
  --left-panel-width-mobile: var(--left-panel-width);
  --left-panel-width-min: 7rem;
  --left-panel-bg: hsl(240, 31%, 98%);
  --left-panel-border: hsl(240, 33%, 95%);
  --border-color: #c3c3c3;
  --elm-radius: 0.4rem;
  --elm-height: 4rem;
  --btn-height: var(--elm-height);
  --btn-line-height: var(--elm-height);
  --btn-radius: var(--elm-radius);
}

html {
  font-size: 62.5% !important; /* 1rem is set to 10px */
}

body {
  font-family: var(--font-family-default);
  font-weight: var(--font-weight-default);
  font-size: var(--font-size-default);
  color: var(--font-color-default);
  overflow-x: hidden;
}

a {
  color: var(--font-color-default);
}

a:hover {
  color: var(--primary-color);
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

.btn-group {
  box-shadow: none;
}
.btn-group:hover, .btn-group:focus, .btn-group:active {
  box-shadow: none;
}

.btn-wrap {
  align-items: center;
  display: flex;
  column-gap: 1rem;
}

.btn {
  display: flex;
  column-gap: 0.5rem;
  align-items: center;
  border-radius: var(--btn-radius);
  padding: 1.2rem 1.7rem;
  font-size: calc(var(--font-size-default) - 0.1rem);
  line-height: 100%;
  white-space: nowrap;
  border-width: 0;
  background-color: var(--primary-color);
  color: white;
  cursor: pointer;
}
.btn:hover {
  filter: saturate(1.2) brightness(1.2);
}
.btn .btn .material-symbols-outlined {
  font-size: 1.4rem;
  margin-right: 0.3rem;
}

[class*=btn-outline] {
  color: var(--primary-color);
  border-width: 1px;
  border-color: var(--primary-color);
  background-color: white;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: calc(var(--font-size-default) - 0.2rem);
}

.chip-wrap {
  display: flex;
  column-gap: 0.5rem;
}

.chip {
  display: flex;
  align-items: center;
  font-size: calc(var(--font-size-default) - 0.1rem);
  white-space: nowrap;
  background-color: hsla(0deg, 0%, 76%, 0.2);
  padding: 0.6rem 0.8rem 0.7rem 1.5rem;
  border-radius: 2rem;
  cursor: pointer;
}

.dark-mode .chip {
  color: hsla(255deg, 100%, 100%, 0.6);
}
.dark-mode .chip-selected {
  background-color: var(--primary-color);
  filter: brightness(0.6);
  border: solid 1px var(--primary-color);
  color: white;
}

.chip-selected {
  background-color: white;
  border: solid 1px var(--primary-color);
  color: var(--primary-color);
}

.chip .material-symbols-outlined {
  font-size: 1.6rem;
  margin-left: 0.3rem;
}

html,
body {
  min-height: 100%;
}

.site-body {
  position: relative;
  margin: 0 auto 0 auto;
  text-align: center;
  overflow: hidden;
}

.body-wrap {
  max-width: var(--page-max-width);
  position: relative;
  margin-inline: auto;
  padding-left: var(--page-padding-inline);
  padding-right: var(--page-padding-inline);
}

.site-header-wrap {
  position: fixed;
  z-index: var(--zindex-topnav);
  top: 0;
  left: 0;
  width: 100%;
  height: var(--page-header-height);
  background-color: white;
  border-bottom: solid 1px rgb(226, 226, 226);
  transition: height 0.27s ease-out;
}

.site-header {
  position: relative;
  max-width: var(--page-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--page-padding-inline);
  padding-right: var(--page-padding-inline);
  display: flex;
  align-items: center;
  height: 100%;
}

.shrinked .site-header-wrap {
  height: 6rem;
}

.site-header .logo {
  width: auto;
  height: 3.2rem;
  font-size: 2.3rem;
  position: relative;
  transition: scale 0.27s ease-out;
}

.site-header .logo img {
  width: 9rem;
  margin-top: -0.4rem;
}

.logo a {
  display: flex;
  align-items: center;
  color: #222;
  font-weight: 700;
}

.shrinked .site-header-wrap .site-header .logo {
  scale: 0.9;
}

/* GLOBAL NAVIGATION */
.header-menu {
  display: flex;
  align-items: center;
}

.btn.btn--header {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  color: white;
  background-color: var(--primary-color);
  transition: scale 0.27s ease-out;
}

.btn--header:hover {
  color: var(--primary-color);
  background-color: white;
}

.shrinked .site-header-wrap .btn--header {
  scale: 0.9;
}

.gnav-wrap {
  z-index: 10;
  margin-left: auto;
  display: flex;
  column-gap: 8rem;
}

.gnav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 5rem;
}

.gnav__item {
  display: flex;
  align-items: center;
  position: relative;
  padding: 1rem;
  transition-duration: 0.5s;
}

.gnav__item .ico--submenu {
  margin-left: 0.8rem;
  width: 1rem;
  height: 1.2rem;
}

.gnav__item a {
  font-weight: 500;
  font-size: 1.6rem;
  color: hsl(0deg, 0%, 24%);
  padding-bottom: 0.3rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.gnav_1stlink {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ico-gnav-wrap {
  margin-left: 0.5rem;
  width: 2rem;
}

.site-header-wrap.shrinked .gnav__item a {
  font-size: 1.6rem;
}

.gnav__item a:hover {
  color: var(--primary-color);
}

.gnav__item:hover > a,
.gnav__item:focus-within > a,
.gnav__item.on a {
  cursor: pointer;
}

.gnav__item:hover > a .ico--submenu,
.gnav__item:focus-within > a .ico--submenu {
  fill: var(--primary-color);
}

.gnav__item:focus-within a {
  outline: none;
}

.gnav__sublist {
  background: white;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  transition: all 0.5s ease;
  top: 4rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  padding: 2rem 3rem;
  border-radius: 0.5rem;
  box-shadow: 0rem 0.4rem 1rem hsla(0deg, 0%, 0%, 0.07), 0rem 0.5rem 2rem hsla(0deg, 0%, 0%, 0.03);
}

.gnav__list li:hover > ul,
.gnav__list li:focus-within > ul,
.gnav__list li ul:hover,
.gnav__list li ul:focus {
  visibility: visible;
  opacity: 1;
  display: block;
}

.gnav__subitem {
  clear: both;
  width: 100%;
  padding-bottom: 1rem;
}

.gnav__subitem:last-child {
  padding-bottom: 0rem;
}

.gnav__sublist .ico--subitem {
  width: 1.3rem;
  height: 1.3rem;
  margin-right: 0.4rem;
  fill: var(--hwp-color);
}

.gnav__sublist .ico--subitem.pdf {
  fill: var(--pdf-color);
}

.gnav__subitem a {
  display: block;
  white-space: nowrap;
  font-size: 1.5rem;
  font-weight: var(--fw-default);
}

.gnav__subitem a:hover {
  color: var(--primary-color);
}

/* hamburger button */
.gnbCheck,
.gnbHandle {
  display: none;
}

/* MOBILE  */
@media (max-width: 992px) {
  .site-wrap {
    width: 100%;
  }
  #gnbCheck:checked + .site-wrap {
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
  }
  .site-header-wrap {
    z-index: var(--zindex-topnav);
    background: transparent;
    border-bottom: none;
  }
  .shrinked .site-header-wrap {
    background-color: white;
    border-bottom: solid 1px rgb(226, 226, 226);
  }
  .site-header {
    display: block;
    width: 100%;
    height: auto;
    z-index: 10;
    padding-inline: 0;
  }
  .logo-wrap {
    position: absolute;
    top: 2.8rem;
    left: 3rem;
    z-index: 2;
    text-align: center;
    transition: top 0.2s ease-in-out, scale 0.27s ease-out;
  }
  .logo-wrap .logo {
    transition: margin 0.2s ease-in-out, scale 0.27s ease-out;
  }
  .shrinked .site-header-wrap .logo-wrap {
    top: 1.2rem;
    scale: 0.9;
  }
  .shrinked .site-header-wrap .gnbHandle {
    top: 1.2rem;
    scale: 0.9;
  }
  .gnbHandle {
    position: absolute;
    z-index: 100000;
    top: 3rem;
    right: 2rem;
    margin-left: 5.5rem;
    display: block;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    transition: top 0.2s ease-in-out, scale 0.27s ease-out;
  }
  .gnbHandle:before,
  .gnbHandle:after,
  .gnbHandle i:before {
    content: "";
    display: block;
    width: 2rem;
    height: 0.3rem;
    background-color: var(--primary-color);
    border-radius: 0.4rem;
    position: absolute;
    top: 0.5rem;
    left: 0.6rem;
    animation-name: gnbH_ani_1;
    animation-duration: 0.3s;
  }
  .gnbHandle:after {
    top: 1.9rem;
    animation-name: gnbH_ani_2;
  }
  .gnbHandle i:before {
    top: 1.2rem;
    animation-name: gnbH_ani_3;
  }
  @keyframes gnbH_ani_1 {
    0% {
      transform: rotate(-45deg);
    }
    100% {
      transform: rotate(0deg);
    }
  }
  @keyframes gnbH_ani_2 {
    0% {
      transform: rotate(45deg);
    }
    100% {
      transform: rotate(0deg);
    }
  }
  #gnbCheck:checked + .site-wrap .gnbHandle:before,
  #gnbCheck:checked + .site-wrap .gnbHandle:after {
    /* close icon */
    width: 2.2rem;
    top: 1.2rem;
    left: 0.2rem;
    transform: rotate(45deg);
    animation-name: gnbH_close_ani_1;
    animation-duration: 0.3s;
  }
  #gnbCheck:checked + .site-wrap .gnbHandle:after {
    /* close icon */
    transform: rotate(-45deg);
    animation-name: gnbH_close_ani_2;
    animation-duration: 0.3s;
  }
  #gnbCheck:checked + .site-wrap .gnbHandle i:before {
    /* close icon */
    display: none;
  }
  @keyframes gnbH_close_ani_1 {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(45deg);
    }
  }
  @keyframes gnbH_close_ani_2 {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(-45deg);
    }
  }
  /* GNB menu */
  .gnav-wrap {
    display: block;
    position: fixed;
    margin: 0;
    z-index: 601;
    width: 27rem;
    background-color: white;
    overflow: hidden;
    transition: transform 0.3s ease;
    right: 0;
    height: 100vh;
    height: 100dvh;
    transform: translateX(100%);
  }
  #gnbCheck:checked + .site-wrap .gnav-wrap {
    z-index: 601;
    opacity: 1;
    overflow: visible;
    overflow: auto;
    transform: translateX(0%);
  }
  .gnav-bg-mobile {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    visibility: hidden;
    opacity: 0;
    background: #000;
  }
  #gnbCheck:checked + .site-wrap .gnav-bg-mobile {
    visibility: visible;
    opacity: 0.6;
  }
  .gnav__list {
    margin: 0;
    display: block;
    padding: 9rem 3rem;
  }
  .gnav__item {
    display: block;
    text-align: center;
    padding: 2rem 2rem;
  }
  .gnav__subitem a {
    font-size: var(--fs-default);
    font-weight: var(--fw-default);
  }
  .gnav__sublist {
    position: relative;
    display: block;
    background: transparent;
    visibility: visible;
    opacity: 1;
    box-shadow: none;
    padding: 1rem 0.4rem;
    margin: -3rem auto 2rem auto;
  }
  /* header menu */
  .site-wrap .header-menu {
    justify-content: center;
  }
}
.right-content {
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.left-panel-wrap {
  z-index: var(--zindex-sidenav);
  position: absolute;
  top: 5rem;
}

.left-panel {
  width: 100%;
  width: var(--left-panel-width);
  height: 100%;
  padding: 0;
  background-color: white;
  border-right: solid 1px #ddd;
  transition: transform 0.3s ease, width 0.3s ease;
  will-change: transform;
}

.openLeftPanel {
  display: none;
}

/* MOBILE
---------------------------------------------------------- */
@media (max-width: 992px) {
  .lpanel-filter-wrap {
    display: none;
  }
  .right-content {
    width: 100%;
    overflow-x: hidden;
  }
  .left-panel-wrap {
    left: 0;
  }
  .no-scroll .left-panel-wrap {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: var(--zindex-sidenav-checked);
  }
  .left-panel {
    width: var(--left-panel-width-mobile);
    margin-top: 0;
    padding-top: 0rem;
    transform: translateX(-100%);
    margin-inline: auto;
    transition: transform 0s;
  }
  .openLeftPanel:checked ~ .left-panel {
    transform: translateX(0);
    margin: 3rem;
    width: calc(100% - 6rem);
    margin-inline: auto;
    height: calc(100vh - 6rem);
    height: calc(100dvh - 6rem);
    border-radius: 1rem;
    overflow-y: auto;
  }
  .openLeftPanel {
    transition: all 0.3s;
  }
  .left-panel-wrap .left-panel-bg-mobile {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    visibility: hidden;
    opacity: 0;
    background: #000;
  }
  .openLeftPanel:checked ~ .left-panel-bg-mobile {
    visibility: visible;
    opacity: 0.6;
  }
  .no-scroll,
  .no-scroll .site-wrap {
    overflow: hidden;
    width: 100vw !important;
  }
  .lpanel-mobile {
    z-index: 1;
    position: absolute;
    top: 1rem;
    left: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4rem;
    width: 1.2rem;
    cursor: pointer;
    width: 6rem;
    height: 2.4rem;
    padding: 0 0.6rem;
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  .lpanel-mobile-ico-wrap {
    width: 1.7rem;
  }
  .lpanel-mobile-ico {
    display: block;
    width: 100%;
    height: 2px;
    background: #333;
    transition: 0.3s;
  }
  .lpanel-mobile-ico:nth-child(2) {
    width: 60%;
  }
  .lpanel-mobile-ico + .lpanel-mobile-ico {
    margin-top: 0.3rem;
  }
  .lpanel-mobile {
    top: -2.5rem;
    left: 2.8rem;
    transition: none;
  }
  .openLeftPanel:checked ~ .lpanel-mobile {
    top: 1rem;
    left: auto;
    right: 2rem;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    padding: 1rem;
    background: white;
    box-shadow: 0rem 0.4rem 1.5rem rgba(0, 0, 0, 0.2);
  }
  .openLeftPanel:checked ~ .lpanel-mobile .lpanel-filter-mobile-icon {
    display: none;
  }
  .openLeftPanel:checked ~ .lpanel-mobile .lpanel-mobile-ico:nth-of-type(1) {
    transform: translate3d(0, 0.45rem, 0) rotate(45deg);
  }
  .openLeftPanel:checked ~ .lpanel-mobile .lpanel-mobile-ico:nth-of-type(2) {
    opacity: 0;
  }
  .openLeftPanel:checked ~ .lpanel-mobile .lpanel-mobile-ico:nth-of-type(3) {
    transform: translate3d(0, -0.45rem, 0) rotate(-45deg);
  }
  .left-nav {
    padding: 5rem 4rem;
  }
}
/* DESKTOP left panel Toggler
---------------------------------------------------------- */
@media (min-width: 992px) {
  .left-panel {
    border: solid 1px #ddd;
    padding: 7rem 0rem 2.5rem 0;
    border-radius: 2rem;
  }
  .left-panel.minimized .accrd-m2__list,
  .left-panel.minimized .accrd-m1__item.open > ul,
  .left-panel.minimized .accrd-m2__item > ul {
    height: 2rem !important;
    max-height: 0 !important;
  }
  .lpanel-mobile.lpanel-mobile {
    display: none;
  }
  .lpanel-filter-wrap {
    position: absolute;
    top: 2.2rem;
    left: 2rem;
    display: flex;
    align-items: center;
  }
  .lpanel-ico-wrap {
    width: 1.2rem;
  }
  .lpanel-ico {
    display: block;
    width: 100%;
    height: 2px;
    background: #333;
    transition: 0.3s;
  }
  .lpanel-ico:nth-child(2) {
    width: 60%;
  }
  .lpanel-ico + .lpanel-ico {
    margin-top: 0.3rem;
  }
  .left-panel.minimized .lpanel-ico-wrap {
    display: none;
  }
  .side-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 1rem;
    width: calc(100% - var(--left-panel-width));
    width: 100%;
  }
  .account__list {
    display: flex;
    align-items: center;
  }
  .right-content {
    margin-left: var(--left-panel-width);
  }
  .right-content.minimized {
    margin-left: var(--left-panel-width-min);
  }
  .left-panel.minimized {
    width: var(--left-panel-width-min);
    overflow: hidden;
  }
  .left-nav-level1-text {
    transition: opacity 0.3s ease-in-out;
  }
  .left-panel.minimized .left-nav-level1-text {
    opacity: 0;
  }
  .left-panel.minimized .ico-left-nav-level1,
  .left-panel.minimized .left-nav-level1-sub {
    display: none;
  }
  .lpanel-folder {
    position: absolute;
    top: 2rem;
    right: 1rem;
    z-index: 100;
    height: 3rem;
    width: 5rem;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .lpanel-folder .lpanel-folder-ico {
    position: absolute;
    top: 1.4rem;
    right: 1.2rem;
  }
  .lpanel-folder .lpanel-folder-ico::before,
  .lpanel-folder .lpanel-folder-ico::after {
    position: absolute;
    content: "";
    width: 0.8rem;
    height: 0.2rem;
    background: rgb(72, 72, 72);
    border-radius: 1rem;
    transition: 500ms cubic-bezier(0.77, 0, 0.175, 1);
  }
  .lpanel-folder > .lpanel-folder-ico::before {
    transform: rotate(45deg);
    top: 0.2rem;
    right: 0rem;
  }
  .lpanel-folder > .lpanel-folder-ico::after {
    top: -0.2rem;
    right: 0rem;
    transform: rotate(-45deg);
  }
  .lpanel-folder.minimized {
    right: 0.8rem;
  }
  .lpanel-folder.minimized .lpanel-folder-ico {
    right: 0.5rem;
  }
  .lpanel-folder.minimized > .lpanel-folder-ico::before {
    transform: rotate(-45deg);
  }
  .lpanel-folder.minimized > .lpanel-folder-ico::after {
    transform: rotate(45deg);
  }
}
.left-nav-division {
  height: 1px;
}

.left-nav-level1 {
  position: relative;
  font-size: var(--font-size-default);
  font-weight: var(--font-weight-default);
  cursor: pointer;
  padding: 1.2rem 2rem 1.2rem 5.5rem;
  margin-bottom: 0;
  cursor: pointer;
  height: 5rem;
  white-space: nowrap;
}

.left-nav-level1:first-child {
  margin-top: 0;
}

.navi-ico {
  display: block;
  position: absolute;
  left: 2.4rem;
  top: 1.2rem;
  width: 3rem;
  height: 3rem;
  font-size: 2.2rem;
}

.left-panel.minimized .left-nav-level1 .navi-ico {
  left: 2.2rem;
}

.left-nav-level2 {
  position: relative;
  padding: 0.6rem 0.6rem 0.6rem 5rem;
  margin-bottom: 0.1rem;
  width: 100%;
  outline: none;
  font-size: var(--font-size-default);
  font-weight: var(--font-weight-default);
  cursor: pointer;
  transition: 0.4s;
  white-space: nowrap;
}

.left-nav-level3 {
  padding: 0.3rem 0.6rem 0.3rem 6.5rem;
  font-size: var(--font-size-default);
  font-weight: var(--font-weight-default);
  cursor: pointer;
  white-space: nowrap;
}

.ico-left-nav-level1 {
  position: absolute;
  top: 2rem;
  right: 2.4rem;
  display: block;
  width: 0.6rem;
  height: 0.5rem;
}

.ico-left-nav-level1::before,
.ico-left-nav-level1::after {
  content: "";
  position: absolute;
  width: 0.7rem;
  height: 0.2rem;
  background-color: rgba(0, 0, 0, 0.427);
  border-radius: 1rem;
  transition: 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

.dark-mode .ico-left-nav-level1::before,
.dark-mode .ico-left-nav-level1::after {
  background-color: rgba(255, 255, 255, 0.7);
}

.ico-left-nav-level1::before {
  transform: rotate(45deg);
  top: 0;
  left: 0rem;
}

.ico-left-nav-level1::after {
  top: 0rem;
  left: 0.4rem;
  transform: rotate(-45deg);
}

.left-nav-level1.navi-active,
.left-nav-level2.navi-active,
.left-nav-level3.navi-active {
  color: var(--primary-color);
}

.left-nav-level1.navi-active .ico-left-nav-level1::before {
  transform: rotate(-45deg);
  background-color: var(--primary-color);
}

.left-nav-level1.navi-active .ico-left-nav-level1::after {
  transform: rotate(45deg);
  background-color: var(--primary-color);
}

.ico-left-nav-level2:before {
  position: absolute;
  content: "";
  top: 50%;
  right: 2.2rem;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 0.4rem solid transparent;
  border-right: 0.4rem solid transparent;
  border-top: 0.4rem solid hsl(0deg, 0%, 54%);
  transition: 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

.left-nav-level2.navi-active .ico-left-nav-level2:before {
  border-left: 0.4rem solid transparent;
  border-right: 0.4rem solid transparent;
  border-bottom: 0.4rem solid var(--primary-color);
  border-top: 0 none;
}

.left-nav-level1-sub {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  text-align: left;
  transition: 0.6s ease-in-out;
}

.left-nav-level1-sub.show {
  opacity: 1;
  max-height: 100rem; /* Whatever you like, as long as its more than the height of the content (on all screen sizes) */
  margin-bottom: 2rem;
}

.left-nav-level2-sub {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  text-align: left;
  max-width: 100%;
  transition: 0.6s ease-in-out;
}

.left-nav-level2-sub.show {
  opacity: 1;
  max-height: 100rem; /*Whatever you like, as long as its more than the height of the content (on all screen sizes)*/
}

.left-nav-level2 input {
  margin-right: 0.7rem;
}

.ms-auto {
  margin-left: auto;
}

.vscroll {
  overflow-y: auto;
}

.right-content-footer {
  display: flex;
  position: fixed;
  width: 100%;
  bottom: 0;
  margin-top: 2rem;
  background-color: white;
  padding-block: 0.8rem;
}

.scrollfixed-right-btn {
  position: fixed;
  bottom: 0.8rem;
}

.grid-wrap {
  display: grid;
  column-gap: 1.5rem;
}

.account-profil-box {
  display: flex;
  flex-direction: column;
  row-gap: 0.8rem;
  align-items: center;
  justify-content: center;
  padding: 2rem 2rem;
  margin-bottom: 1rem;
}

.account-profile-pic {
  max-width: 20rem;
  width: 100%;
  height: 120%;
  overflow: hidden;
  margin-bottom: 1rem;
}

.account-profile-pic img {
  width: 100%;
  height: 100%;
}

.accordion-a9-round-title {
  border-radius: var(--elm-radius);
  padding: 0.8rem 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.accordion-item:first-of-type,
.accordion-item:last-of-type,
.accordion-item:not(:first-of-type) {
  border-radius: var(--elm-radius) !important;
  overflow: hidden;
}

.gsico-accordion-title,
.gsico-account-profil {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.2rem;
  margin-right: 0.6rem;
}

.gsico-account-profil {
  width: 2.5rem;
  height: 2.5rem;
}

.accordion-item {
  margin-bottom: 0.8rem;
  border-radius: var(--elm-radius);
  flex-direction: row;
}

.accordion-item-title {
  width: 100%;
}

.account-profile-name {
  display: flex;
  align-items: center;
  column-gap: 0.4rem;
  justify-content: center;
  line-height: 1.4;
}

.account-profile-name .name {
  font-size: 1.75rem;
}

.account-profile-name .id {
  display: block;
}

.accordion-button,
.accordion-body {
  padding: 1rem 1.2rem;
}

.accordion-button:after {
  margin-inline: 0.8rem -0.1rem;
  width: 1rem;
  background-size: 1rem;
}

.accordion-item p {
  margin-bottom: 0;
}

.accordion-body li {
  margin-bottom: 1.2rem;
}

.accordion-body li:last-child {
  margin-bottom: 0;
}

.accordion-body h4 {
  margin-bottom: 0.3rem;
}

/* MOBILE
---------------------------------------------------------- */
@media (max-width: 992px) {
  .right-content-footer {
    position: fixed;
    width: 100%;
  }
  .grid-wrap {
    display: block;
  }
  .gridcol-fixed {
    width: 100%;
  }
  .account-profil-box {
    flex-direction: row;
    column-gap: 1.5rem;
  }
  .account-profile-pic {
    max-width: 14rem;
    max-height: 15rem;
    margin-bottom: 0;
  }
  .gsico-account-profil {
    flex-shrink: 0;
  }
}
.page-title_line {
  margin-top: 4rem;
  padding: 1.5rem var(--page-padding-inline) 1.5rem var(--page-padding-inline);
}

.page-title {
  font-size: 2.3rem;
  font-weight: 600;
}

.search-wrap--header .search-input {
  min-width: 30rem;
}

.search-wrap {
  position: relative;
  height: 25rem;
  margin-top: var(--page-header-height);
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-wrap .top-bg {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/top-1.jpg");
  background-size: 100% auto;
  background-position: center -41rem;
  background-position: center center;
  background-repeat: none;
  filter: brightness(0.87);
}

.search-wrap .top-bg.top-bg-1 {
  background-image: url("../images/top-1.jpg");
  animation: ani-bg1 10s infinite;
  z-index: 3;
}

.search-wrap .top-bg.top-bg-2 {
  background-image: url("../images/top-2.jpg");
  animation: ani-bg2 10s infinite;
  z-index: 2;
}

.search-wrap .top-bg.top-bg-3 {
  background-image: url("../images/top-3.jpg");
  filter: brightness(0.87);
  z-index: 1;
}

@keyframes ani-bg1 {
  10% {
    opacity: 1;
  }
  24% {
    opacity: 0;
  }
  77% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
}
@keyframes ani-bg2 {
  0% {
    opacity: 1;
  }
  44% {
    opacity: 1;
  }
  57% {
    opacity: 0;
  }
  95% {
    opacity: 0;
  }
  96% {
    opacity: 1;
  }
}
.search-bar {
  position: relative;
  z-index: 5;
  display: flex;
  width: 80%;
  max-width: 47rem;
  align-items: center;
  height: 6rem;
  border-radius: var(--btn-radius);
  overflow: hidden;
  background: hsla(0deg, 0%, 0%, 0.37);
}

.search-input {
  border: solid 0 transparent;
  background-color: transparent;
  width: calc(100% - 10rem);
  padding-inline: 2rem;
  font-size: 1.7rem;
  color: white;
}

.search-button {
  background-color: var(--primary-color);
  color: white;
  margin-left: auto;
  height: 6rem;
  width: 6rem;
  border-radius: 0rem;
  border: 0 none;
  cursor: pointer;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.65);
  opacity: 1; /* Firefox */
}

.search-input::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: rgba(255, 255, 255, 0.65);
}

.search-bar .material-symbols-outlined {
  line-height: 145%;
}

@media (max-width: 992px) {
  .search-wrap {
    margin-top: 0;
    height: 30rem;
  }
  .search-title {
    display: none;
  }
  .page-title_line {
    margin-top: 5rem;
    padding-inline: 0;
  }
}
.carList {
  vertical-align: top;
  margin: 2rem 0 2rem 0;
  width: 100%;
  font-size: 0;
}

.carList,
.carList * {
  transition: all 0.2s ease !important;
}

.carCard {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  /*
  margin:2rem 1.5rem 4rem 1.5rem;
  width:calc(20% - 3rem);  
  padding:2rem 0;
  */
  padding: 4rem 1.5rem 5rem 1.5rem;
  padding: 3rem 5rem 7rem 5rem;
  width: 33.333333333%;
}

.carCard {
  /*   *******  FIX for CONFLICT with PREV-CSS  : overlapped class name : car_info *******  */
}
.carCard .car_pic {
  margin: 2rem auto 0rem auto;
  width: 65%;
  height: 12rem;
}
.carCard .car_pic img {
  margin-left: -2rem;
  width: 100%;
}
.carCard .car_name {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.carCard .car_info {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f1f1;
  border-radius: 2rem;
  width: auto;
  max-width: 20rem;
  height: 2.9rem;
  padding: 0rem 1.5rem 0 1.5rem;
  margin: 0 auto;
  border: solid 1px #f1f1f1;
  font-size: 1.4rem;
}
.carCard .car_info .num {
  font-weight: 500;
  font-size: 1.6rem;
  margin-right: 0.7rem;
}
.carCard .car_info .material-symbols-outlined {
  margin-left: 1rem;
  cursor: pointer;
}
.carCard .car_info p {
  display: inline-block;
  position: relative;
  width: auto;
  height: 2.4rem;
  line-height: 2.4rem;
  font-size: 1.1rem;
  margin-right: 1rem;
  color: #727272;
  padding-left: 1.7rem;
  white-space: nowrap;
}
.carCard .car_info p:last-child {
  margin-right: 0rem;
}
.carCard .car_info p::before {
  position: absolute;
  top: 0.5rem;
  left: 0rem;
  font-size: 1.4rem;
  margin-right: 0.5rem;
  color: #333;
  width: 1.3rem;
  height: 1.3rem;
}
.carCard .car_info p.inStock::before {
  top: 0.7rem;
  content: "\e909";
  font-size: 1.2rem;
}
.carCard .car_info p .num {
  font-size: 1.4rem;
  color: #000;
}
.carCard .car_info p .num.null {
  font-size: 1.2rem;
  color: #888;
}
.carCard .car_info p a {
  display: flex;
  align-items: center;
  column-gap: 0.4rem;
}
.carCard .car_info p a:hover .num {
  text-decoration: underline;
}
.carCard .car_info p a:hover .num.null {
  text-decoration: none;
  color: #888;
}

.btnCircle.view {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  top: 3.5rem;
  right: 3.5rem;
  font-size: 0;
}

.btnCircle.view::before {
  font-size: 1.5rem;
  color: white;
  background: #c80000;
  border-radius: 50%;
  width: 2.6rem;
  height: 2.6rem;
  line-height: 180%;
  text-align: center;
}

.icoWrap {
  padding-top: 0.4rem;
  text-transform: uppercase;
  font-size: 1.3rem !important;
}

.icoWrap .icoInfo {
  display: inline-block;
  margin-right: 0.2rem;
}
.icoWrap .icoInfo::before {
  font-size: 1.5rem;
  color: white;
  background: #51aeae;
  border-radius: 50%;
  width: 2.2rem;
  height: 2.2rem;
  line-height: 155%;
  text-align: center;
  margin-left: 1rem;
}
.icoWrap .icoInfo.phev::before {
  background: #96ae51;
}
.icoWrap .icoInfo.hev::before {
  background: #999;
  content: "\e914";
  font-size: 1.3rem;
  line-height: 180%;
}

.car_ico {
  position: absolute;
  top: 3.8rem;
  right: 7rem;
}

.icoInfo {
  display: inline-block;
  margin-left: 0.6rem;
}

.icoInfo::before {
  font-size: 1.5rem;
  color: white;
  background: #51aeae;
  border-radius: 50%;
  width: 2.2rem;
  height: 2.2rem;
  line-height: 155%;
  text-align: center;
}

.icoInfo.phev::before {
  background: #96ae51;
}

.icoInfo.hev::before {
  background: #999;
  content: "\e914";
  font-size: 1.3rem;
  line-height: 180%;
}

@media (min-width: 801px) {
  /* desktop  */
  .carCard:hover {
    z-index: 10;
    transform: scale(1.1);
    /*
    border:solid 1px #b9b9b9;
    box-shadow: 1rem 1rem 3rem rgba(0, 0, 0, 0.1); 
    */
  }
  .carList:hover > .carCard:not(:hover) {
    opacity: 0.71;
    transform: scale(0.95);
  }
  .carList:hover > .carCard:not(:hover) .btnCircle.view,
  .carList:hover > .carCard:not(:hover) .car_ico {
    opacity: 0.4;
  }
  .carCard:hover .car_pic {
    width: 90%;
  }
  .carCard:hover .car_pic img {
    margin-left: 0rem;
  }
  .carCard:hover .btnCircle.view {
    right: 0rem;
  }
  .carCard:hover .car_ico {
    right: 3.5rem;
  }
  .carCard:hover .btnCircle.view::before {
    box-shadow: 0.5rem 0.7rem 1rem rgba(219, 34, 34, 0.15);
  }
  .carCard:hover .icoInfo.phev {
    color: #96ae51;
  }
  .carCard:hover .icoInfo.hev {
    color: #7c7c7c;
  }
  .carCard:hover .icoInfo.phev::before {
    box-shadow: 0.5rem 0.7rem 1rem rgba(150, 173, 82, 0.2);
  }
  .carCard:hover .icoInfo.ev::before {
    box-shadow: 0.5rem 0.7rem 1rem rgba(81, 174, 174, 0.2);
  }
  .carCard:hover .icoInfo.hev::before {
    box-shadow: 0.5rem 0.7rem 1rem rgba(153, 153, 153, 0.2);
  }
  .carCard:hover .car_info {
    box-shadow: 0.5rem 1rem 1rem rgba(153, 153, 153, 0.2);
    border: solid 1px #686868;
    background: white;
  }
  .carCard:hover .car_info p {
    color: #414141;
    transform: scale(1.1);
  }
  /*
  .carCard:hover .car_info p .num {  
      color:#C80000; 
  }
  .carCard:hover .car_info p .num.null {  
      color:#888; 
  }*/
  .carCard:hover .car_info p::before {
    transform: scale(0.7);
  }
}
@media (max-width: 1200px) {
  /*    */
  .carCard {
    width: 50%;
  }
  .car_pic {
    max-width: 30rem;
    padding-bottom: 3rem;
    height: auto !important;
  }
  .car_pic img {
    margin-left: 0rem;
  }
  .noticeSection {
    background: #fafafa;
    border: solid 1px #ebebeb;
    border-radius: 0;
    width: calc(100% + 4rem);
    margin-left: -2rem;
    margin-right: -2rem;
  }
  .mainCard {
    width: calc(100% + 4rem);
    margin-left: -2rem;
    margin-right: -2rem;
    position: relative;
    margin-bottom: 1rem !important;
  }
  .mainCard > li {
    width: 100% !important;
    height: 20rem !important;
    border-radius: 0;
  }
  .mainCard > li:nth-child(odd) {
    margin-right: 0rem !important;
  }
  .mainCard > li:nth-child(even) {
    margin-left: 0rem !important;
  }
  .scroll_list {
    height: 10rem;
  }
  .btnWrap.right {
    text-align: center;
  }
}
@media (max-width: 600px) {
  /* MOBILE  */
  .carCard {
    width: 100%;
  }
}
.site-footer-wrap {
  position: sticky;
  top: 100vh;
  background: #333;
  padding: 5rem 0 8rem 0;
  color: whtie;
}

.site-footer {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: var(--page-max-width);
  padding-inline: var(--page-padding-inline);
}

.site-footer,
.site-footer a {
  color: hsl(0deg, 0%, 50%);
}

.site-footer a:hover {
  color: hsl(0deg, 0%, 67%);
  text-decoration: underline;
}

.footer-title {
  margin-bottom: 1rem;
  display: block;
}

.footer-top {
  display: flex;
  column-gap: 10rem;
  align-items: flex-start;
}

.footer-company {
  display: flex;
  align-items: flex-start;
  column-gap: 3rem;
}

.f-com-logo {
  width: 7rem;
  opacity: 0.5;
}

.footer-touch {
  margin-left: auto;
}

.f-media-li {
  display: flex;
  align-items: center;
  column-gap: 2rem;
}

.f-media-icon {
  width: 3rem;
  opacity: 0.5;
}

.f-media-item a:hover .f-media-icon {
  opacity: 0.9;
}

.footer-bottom {
  margin-top: 8rem;
  border-top: solid 1px #444;
  padding-top: 1.5rem;
}

@media (max-width: 1000px) {
  .footer-top {
    display: block;
  }
  .footer-company,
  .footer-touch {
    margin-bottom: 7rem;
  }
  .footer-company,
  .footer-touch,
  .footer-socialmedia,
  .f-media-li,
  .footer-bottom {
    text-align: center;
    justify-content: center;
  }
  .footer-bottom {
    margin-inline: var(--page-padding-inline-negative);
  }
}

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