/** 
* Footer
*/
footer {
  align-items: center;
  background: var(--gray-secondary-dark, #2b2b31);
  border: 0;
  color: var(--gray-secondary-200, #d0d0df);
  display: flex;
  flex-direction: column;
  font-weight: bold;
  justify-content: center;
  min-height: 48px;
}

footer .container {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  height: inherit;
  justify-content: flex-start;
  max-width: 1220px;
  padding: 0;
  white-space: nowrap;
  width: 100%;
}
footer .left {
  align-items: center;
  align-self: stretch;
  display: flex;
  flex-wrap: wrap;
  flex: 1 0 0;
  gap: 12px;
  padding: 8px 16px;
}
footer .right {
  align-items: center;
  align-self: stretch;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding: 8px 16px;
}

footer select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-size: 8px 8px;
  background: url('../image/icon-arrow-custom-drop-down.svg') no-repeat right center;
  border: 0;
  color: var(--gray-secondary-200, #d0d0df);
  padding: 2px 16px 0 0;
}

/* ~ 578px 화면용 스타일 (mobile) */
@media (max-width: 578px) {
  footer .left {
    border-bottom: 1px solid var(--gray-secondary-main, #3c3d4f);
  }
}
