body {
    color: #2c3e50;
    background: #ecf0f1;
}
.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;
}

/* Accordion styles */
.faq-container .tabs {
    overflow: hidden;
}
.faq-container .tab {
    width: 100%;
    color: #000;
    overflow: hidden;
   	background: #FFFFFF;
	box-shadow: 0px 2px 5px rgba(77, 113, 137, 0.2);
	border-radius: 10px;
	margin-bottom: 8px;
}
 
.faq-container .tab-label {
    display: flex;
    justify-content: left;
    padding: 16px;
	font-weight: 400;
	font-size: 18px;
	line-height: 21px;
    cursor: pointer;
    position: relative;
    /* Icon */
}
.faq-container .fruit {
    margin-top: 0;
    margin-right: 15px;
	display: none;
}    
.faq-container .tab:hover .tab-label {
    opacity: .9;
}
.faq-container .dm-q {
    max-width: 75%;
}
/*
.faq-container .tab-label:hover {
  background: #1a252f;
}
*/
.faq-container .tab-label::after {
    content: "\276F";
    text-align: right;
    position: absolute;
    right: 30px;
}
.faq-container .tab-content {
    max-height: 0;
    font-weight: 400;
	font-size: 16px;
	color: #000000;
	line-height: 19px;
    background: #fff;
}
.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: #1a252f;
}
.faq-container input:checked + .tab-label {
    font-weight: 700;
}
.faq-container input:checked + .tab-label::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
}
.faq-container input:checked ~ .tab-content {
    max-height: 100vh;
    padding: 16px;
    border-top: 1px solid #EBF4FA;
}