body {
    color: #2c3e50;
}
.faq-container {
    margin-bottom: 30px;
}
.faq-container h1 {
    margin: 0;
    line-height: 2;
    text-align: center;
}
.faq-container h2 {
    margin: 0 0 .5em;
    /* font-weight: normal; */
}
.faq-container input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}
.faq-container .row {
    display: flex;
}
.faq-container .row .col {
    flex: 1;
    max-width: 100%;
}
/*
.faq-container .row .col:last-child {
    margin-left: 1em;
}
*/
/* Accordion styles */
.faq-container .tabs {
    overflow: hidden;
	box-shadow: 0px 1px 0px #B96500;
	border-radius: 10px;
}
.faq-container .tab {
    width: 100%;
   	color: #9a3900;
    overflow: hidden;
    background-color: #fff;
	border-bottom:  1px solid #FF9900;
}

.faq-container .tab:last-child {
	border-bottom: 0;
}
  
.faq-container .tab-label {
    display: flex;
    justify-content: left;
    padding:  1em;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    /* Icon */
}
.faq-container .fruit {
    margin-top: 0;
    margin-right: 15px;
}    
.faq-container .tab:hover {
    background: #FFF5EA;
}
.faq-container .dm-q {
    max-width: 75%;
	font-size: 20px;
}
.faq-container h3 {
    border: none;
    margin: 0;
    line-height: 1.618;
    padding: 0 !important;
}
.faq-container .tab-label::after {
    content: "\276F";
    text-align: right;
    transition: all .35s;
    position: absolute;
    right: 30px;
}
.faq-container .tab-content {
    max-height: 0;
    padding: 0 1em;
    color: #2c3e50;
    background: white;
    transition: all .35s;
}
.faq-container .tab-close {
    display: flex;
    justify-content: flex-end;
    padding: 1em;
    font-size: 0.75em;
    background: #2c3e50;
    cursor: pointer;
}
.faq-container .tab-close:hover {
     background: #FFF5EA;
}
.faq-container input:checked + .tab-label {
     background: #FFF5EA;
}
.faq-container input:checked + .tab-label::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
}
.faq-container input:checked ~ .tab-content {
    max-height: 100vh;
    padding: 1em;
    border-bottom: 1px solid #f5f5f5;
}

@media screen and (max-width: 768px) {
		.faq-container .dm-q {
		max-width: 75%;
		font-size: 16px;
	}
}