.vc-ggt-accordion{
    border: 1px solid rgba(0,0,0,0.2);
}

.vc-ggt-accordion-tab{

}

.ggt-accordion-content{
    padding: 0 20px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

.accordion-active .ggt-accordion-content{
    opacity: 1;
    max-height: 999px;
    padding: 20px;
}

.ggt-accordion-title {
    position: relative;
}

.ggt-accordion-icon{
    font-family: 'ggticons';
    color: #ddd;
    content: "\ed43";
    width: 25px;
    height: 25px;
    font-size: 25px;
    line-height: 25px;
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -13px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.ggt-accordion-icon:before{
    font-weight: 700;
}

.accordion-active .ggt-accordion-icon{
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.ggt-accordion-label{
    font-weight: 700;
    display: inline-block;
    vertical-align: top;
}

.ggt-accordion-header{
    padding: 10px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.ggt-accordion-header:hover{
    background-color: #f7f7f7;
}

.vc-ggt-accordion-tab:last-child .ggt-accordion-header{
    border-color: transparent;
}