.account-wrap {
    margin-left: 32px;
    margin-right: 32px;
    border: 1px solid #CCCCCC;
    border-radius: 8px;
    background-color: #FFFFFF;
    overflow: hidden;
}

.account-wrap.groom {
    margin-bottom: 30px;
}

.account-btn {
    font-size: 15px;
    color: #333333;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 15px;
    cursor: pointer;
    list-style: none;
    text-align: left;
    background-color: #f5f3f2;
}

.account .account-info {
    display: flex;
    justify-content: space-between; /* 텍스트 왼쪽 / 아이콘 오른쪽 */
    align-items: center;     
    padding: 15px;
}
.account .account-name {
    text-align: left;
    font-size: 15px;
    margin-bottom: 8px;
    color: #333333;
}
.account .account-number {
    text-align: left;
    font-size: 15px;
    margin-bottom: 0px;
    color: #333333;
}
.account-text {
    display: flex;
    flex-direction: column;
}
.account-copy {
    color: #333333;
}

.account hr {
	height: 1px;
	width: 100%;
	border: 0px;
  margin: 0px;
	background-color:#CCCCCC;
}

.groom-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 1s ease, opacity 1s ease;
}

.groom-content.show {
  max-height: 1000px;
  opacity: 1;
}

.bride-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.bride-content.show {
  max-height: 500px;
  opacity: 1;
}