
.eztoggleWrapper {
    width: 100%;
    margin: 0 auto;
    color: #fff;
    font-family: "mulilight";
}

.accordion {
    padding: 0px 0;
    margin: 0 auto;
    list-style: none outside;
    border-bottom-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-width: 0px;
    -webkit-margin-start: 0px;
    -webkit-padding-start: 0px;
    -webkit-margin-after: 0px;
}
}

.accordion a {
    color: #666;
    text-decoration: underline;
}

/* title */

.accordion-item-hd {
    display: block;
    padding:16px 10px;
    border-radius:10px;
    position: relative;
    cursor: pointer;
    font-size:18px;
    background: #6504C5;
    z-index: 1;
}
.accordion-item-input:checked ~ .accordion-item-hd span:first-child{
    position: relative;
}

/* expand it */

.accordion-item-input:checked ~ .accordion-item-bd {
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 14px;
    max-height: 1000px;
    padding-top: 5px;
    margin-bottom: 10px;
    -webkit-transition: max-height 1s ease-in, margin .3s ease-in, padding .3s ease-in;
    transition: max-height 1s ease-in, margin .3s ease-in, padding .3s ease-in;
    border-top: 1px solid #ccc;
    background: #dddddd;
    color:#666;
    position:relative;
    z-index: 2;
    /* separator */
}
.accordion-item-bd:after{
    content: "";
    clear: both;
    visibility: hidden;
    display: block;
    height: 0;
}
.accordion-item-input:checked ~ .accordion-item-hd:before{
    content:"";
    width:100%;
    height:20px;
    background: #6504C5;
    position: absolute;
    bottom:0;
    left: 0;
    z-index: 0;
}
.accordion-item-input:checked ~ .accordion-item-hd > .accordion-item-hd-cta {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.accordion-item-hd-cta {
    display: block;
    width: 30px;
    position: absolute;
    top: calc(50% - 9px);
    /*minus half font-size*/
    right: 0;
    pointer-events: none;
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    text-align: center;
    font-size: 20px;
    line-height: 1;
}

.accordion-item-bd {
    max-height: 0;
    margin-bottom: 0;
    overflow: hidden;
    -webkit-transition: max-height .15s ease-out, margin-bottom .3s ease-out, padding .3s ease-out;
    transition: max-height .15s ease-out, margin-bottom .3s ease-out, padding .3s ease-out;
    padding:0 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.accordion-item-input {
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    margin: -1;
    overflow: hidden;
    position: absolute;
    left: -9999px;
}


/* Fixes size of Document Manager icons in toggle */

.eztoggleWrapper .RadTreeView .rtImg {
    width: 16px !important;
    height: 16px !important;
}
@media screen and (max-width:1160px) {
    .accordion-item-input:checked ~ .accordion-item-hd:before{
        height:10px;
    }
}
