/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 
 /* Accordion */
.aqara-accordion-section {
    overflow:hidden;
    border-radius:4px;
    background:#f7f7f7;
}
.aqara-accordion-section .accordion-section-title {
    width:100%;
    padding:15px;
}
.aqara-accordion-section .accordion-section-title {
    width: 100%;
    padding: 15px;
    display: inline-block;
    background-color: #333;
    border-bottom: 1px solid #1a1a1a;
    font-size: 1.2em;
    color: #fff;
    transition: all linear 0.5s;
    text-decoration:none;
}
.aqara-accordion-section .accordion-section-title.active {
    background-color:#4c4c4c;
    text-decoration:none;
}
.aqara-accordion-section .accordion-section-title:hover {
    background-color:grey;
    text-decoration:none;
}
.aqara-accordion-section .accordion-section:last-child .accordion-section-title {
    border-bottom:none;
}
.aqara-accordion-section .accordion-section-content {
    padding:15px;
    display:none;
}