.c7n-accordeon {
    overflow: hidden;
    position: relative;
}

.c7n-accordeon .c7n-accordeon-title{
    position: relative;
}

.c7n-accordeon .c7n-accordeon-title::after{
    content: "\f107";
    font-family: "FontAwesome";
    font-size: 2em;
    position: absolute;
    right: 15px;
    text-align: center;
    top: 30%;
}

.c7n-accordeon .c7n-accordeon-content {
    display: none;
    position: relative;
    overflow: hidden;
}

.c7n-accordeon .c7n-accordeon-content iframe{
    /*webkit-transition : all 0.3s ease-in-out;
    -moz-transition    : all 0.3s ease-in-out;
    -ms-transition     : all 0.3s ease-in-out;
    -o-transition      : all 0.3s ease-in-out;
    transition         : all 0.3s ease-in-out;*/
    opacity: 1;
}

.c7n-accordeon .c7n-accordeon-content iframe.ready{
    opacity: 1;
}

.cke_editable  .c7n-accordeon .c7n-accordeon-content{
    display: inline-block;
}

.c7n-accordeon.open .c7n-accordeon-title::after{
    content     : "\f00d";
    content     : "\f105";
    content     : "\f106";
}

.c7n-accordeon:hover,
.c7n-accordeon:hover .c7n-accordeon-title::after{
    cursor: pointer;
}