.footer__container {
  padding-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .footer__container {
    padding-bottom: 60px;
  }
}


body.hidden {
  overflow: hidden;
}
dialog::backdrop {
  
}
dialog {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(247, 245, 230, 0.8);
}
.dialog-wrapper {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  
}
.dialog-container {
  max-width: 720px;
  background-color: #fff;
  padding: 2vw;
  letter-spacing: .2em;
  position: relative;
}
.dialog-close {
  position: absolute;
  right: 0px;
  top: 0px; 
  width: 30px;
  height: 30px;
  cursor: pointer;
  transform: translate(50%,-50%);
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) .5s;
}
.dialog-close:hover {
  transform: translate(50%,-50%) rotate(90deg);
}
/* .dialog-close::before,
.dialog-close::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #666;
  top: 50%;
  left: 0;
}
.dialog-close::before {
  transform: translate(0,-50%) rotate(45deg);
}
.dialog-close::after {
  transform: translate(0,-50%) rotate(-45deg);
} */


dialog h2 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1em;
}
.newclassic-look-modal__store h2 {
  font-size: 2rem;
  padding-right: 0;
}
.newclassic-look-modal__store .section {
  max-height: 50vh;
  overflow: auto;
}
.dialog-content {
  max-height: 50vh;
  overflow: auto;
  padding-bottom: 2rem;
}
.newclassic-look-modal__store .section,
dialog .section {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  color: #37455E;
  
}
.newclassic-look-modal__store dt {
  font-size: 1.8rem;
  line-height: 3em;
}
dialog dl {
  margin: 0;
}
dialog dt {
  font-size: 1.8rem;
  line-height: 3em;
}
.newclassic-look-modal__store dd,
dialog dd {
  margin: 0;
}
.newclassic-look-modal__store ul,
dialog ul {
  margin: 0;
  padding: 0;
  line-height: 2em;
  font-size: 1.3rem;
  letter-spacing: 0;
}
@media screen and (max-width: 820px){
  .newclassic-look-modal__store .section,
  dialog .section {
    flex-direction: column;
    align-items: center;
  }
  dialog h2 {
    text-align: center;
  }
  .newclassic-look-modal__store dt,
  .newclassic-look-modal__store dd,
  dialog dt,
  dialog dd {
    text-align: center;
  }
}
@media screen and (max-width: 480px){
  .dialog-container {
    padding: 4vw;
  }
  .newclassic-look-modal__store h2,
  dialog h2 {
    font-size: 1.8rem;
    text-align: center;
  }
  .newclassic-look-modal__store dt,
  dialog dt {
    font-size: 1.6rem;
  }
  .newclassic-look-modal__store ul,
  dialog ul {
    font-size: 1.2rem;
    
  }
} 