/* Developed for GraffitiSuite [https://graffitisuite.com].
   
   See the GraffitiSuite Source Code EULA for licensing terms:
   [https://graffitisuite.com/legal/source-eula/]
   Contact at [licensing@graffitisuite.com]
*/

.gwaccontainer{
    width: 100%;
    margin: 0;
}
.gwaccontainer > div > label{
    padding: 0;
    position: relative;
    display: block;
    height: 30px;
    cursor: pointer;
    height: 34px;
    line-height: 34px;
    display: block;
    position: relative;
}
.gwaccontainer > div > label:hover{
    cursor: pointer;
}
.gwaccontainer > div > input[class*="accheader"]:checked + label,
.gwaccontainer > div > input[class*="accheader"]:checked + label:hover{
    cursor: pointer;
}
.gwaccontainer > div > label:hover:after,
.gwaccontainer > div > input[class*="accheader"]:checked + label:hover:after{
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    right: 13px;
    top: 7px;
}

.gwaccontainer > div > input[class*="accheader"]{
    display: none;
}

.gwaccontainer > div > article {
    margin-top: -1px;
    height: 0px;
    position: relative;
}

.gwaccontainer > div > label > i {
	display: inline;
}

.gwaccontainer > div > label {
    text-indent: 34px;
    cursor: pointer;
    background-color: var(--light);
    border-bottom: 1px solid var(--dark);
    height: 38px;
    line-height: 38px;
    text-indent: 12px;
    display: block;
    position: relative;
    color: var(--dark);
    margin: 0;
}
.gwaccontainer > div > label:hover{
    background-color: var(--secondary);
    border-bottom: 1px solid var(--dark);
    color: var(--light);
    cursor: pointer;
}

.gwaccontainer > div {
    border-bottom: 1px solid var(--dark);
}

.gwaccontainer > div > input[class*="accheader"]:checked + label,
.gwaccontainer > div > input[class*="accheader"]:checked + label:hover{
    background-color: var(--primary);
    border-bottom: 1px solid var(--dark);
    color: var(--light);
    cursor: pointer;
}
.gwaccontainer > div > article{
    background: var(--light);
    -webkit-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
    -moz-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
    -o-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
    -ms-transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
    transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
}

.gwaccontainer > div > input[class*="accheader"]:checked ~ article{
    -webkit-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
    -moz-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
    -o-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
    -ms-transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
    transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
}