.myo-orders {
	text-align: left;
	margin: 40px 10px 0px 10px;
}
	
.faq-main{
	margin-bottom: 50px;
}
	
.dd-container{
	margin: 10px auto;
	width: 90%;
	align-items: center;
	font-family: "Montserrat", sans-serif;
    font-style: normal;	
}

.dd-container details{
	color: #000;
	font-size: 1.5rem;
}

.dd-container summary {
	padding: 0px 1.3rem;
	list-style: none;
	font-size: 22px;
	display: flex;
	justify-content: space-between;  
	transition: height 1s ease;
}

.dd-container summary::-webkit-details-marker {
	display: none;
}

.dd-container summary:after{
	content: "\002B";
}

.dd-container details[open]  {
    border-bottom: 1px solid #aaa;
	padding-bottom: 5px;
}

.dd-container details[open] summary:after{
	content: "\00D7";
}

.dd-container details[open] div{
	padding: .1em 1.5em;
	font-size: 18px;
	font-weight: 500;
}

.dd-container details[open] .sub-details{
	padding: .1em 1em;
	font-size: 18px;
	font-weight: 500;
}


.dd-container .faq-sub-details {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Adjust the gap between labels */
	margin: 10px 0px; 
}
  
@media screen and (max-width: 540px) {
	
.dd-container{
	margin: 0px auto;
	width: 98%;
	align-items: center;
}

.dd-container summary {
	padding: .5em 1.3rem;
	font-size: 20px;
	list-style: none;
	display: flex;
	justify-content: space-between;  
	transition: height 1s ease;
}

.dd-container details[open] div{
	padding: .1em 1em;
	font-size: 16px;
}

	.dd-container details[open] .sub-details{
	padding: .1em 0.1em;
	font-size: 16px;
	font-weight: 500;
}
}