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;
}
/*
.faq-container .row .col:last-child {
    margin-left: 1em;
}
*/
/* Accordion styles */
.faq-container .tabs {
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: 0px 4px 24px rgba(183, 37, 101, 0.75);
    border-radius: 5px;
}
.faq-container .tab {
    width: 100%;
    color: #000;
    overflow: hidden;
    background-color: #f5f5f5;
}
.faq-container .tab:nth-child(even) {
    background-color: #ffffff;
}    
.faq-container .tab-label {
    display: flex;
    /* justify-content: space-between; */
    justify-content: left;
    padding: 15px 0 10px;
    /* background: #2c3e50; */
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid #811A3C;
    margin: 0 25px;
    /* Icon */
}
.faq-container .fruit {
    margin-top: 0;
    margin-right: 15px;
}    
.faq-container .tab:hover {
    background: #dbdbdb;
}
.faq-container .dm-q {
    max-width: 75%;
}
/*
.faq-container .tab-label:hover {
  background: #1a252f;
}
*/
.faq-container .tab-label::after {
    content: "\276F";
    /*  width: 1em;*/
    /*  height: 1em;*/
    text-align: right;
    transition: all .35s;
    position: absolute;
    right: 30px;
}
.faq-container .tab-content {
    max-height: 0;
    padding: 0 1em;
    color: #111111;
    background: white;
    transition: all .35s;
}
.faq-container .tab-close {
    display: flex;
    justify-content: flex-end;
    padding: 1em;
    font-size: 0.75em;
    background: #111111;
    cursor: pointer;
}
.faq-container .tab-close:hover {
    background: #1a252f;
}
.faq-container input:checked + .tab-label {
    background: #dbdbdb;
}
.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;
}