﻿.akordeon
{
    width: 100%;
    border-top:1px solid #e8e8e8;
    font-size:15px;
}
.akordeon-item
{
    position: relative;
}
.akordeon-item .akordeon-item-head
{   
    position:relative;
    width:100%;
    background:#fff;
    border:1px solid #e8e8e8;
    border-top:none;
    height:40px;
}
.akordeon-item .akordeon-item-body
{

    border-bottom: none;
    overflow: hidden;
}
.akordeon-icon
{
    position:absolute;
    width: 30px;
    height: 30px;
    left:-10px;
    top:5px;
    padding: 0;
    margin: 0;
    float: left;
    cursor: pointer;
    display:none;
}
.akordeon-heading
{
    width:100%;
    float: left;
    padding-left: 8px;
    line-height:40px;
    color:#333;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    margin-bottom:1px;
    overflow:hidden;
}
.akordeon-heading:before
{
    display:block;
    float:left;
    width:40px;
    height:39px;
    content:'\f067';
    font-family:'FontAwesome';
    line-height:40px;
    text-align:center;
    font-size:20px;
    margin-right:10px;
    color:#ff0963;
    background:#fff;
    border-right:1px solid #e8e8e8;
    border-bottom:1px solid #e8e8e8;
}
.akordeon-item.expanded .akordeon-heading:before{
  content: "\f068";
}
.akordeon-icon span
{
    text-align:center !important;
    color: #fff;
    font-size: 36px;
    position: absolute;
    left: 10px;
    top: -6px;
    text-align: center;
}
.akordeon-item.expanded .akordeon-icon span
{
    top: -9px;
}
.akordeon-item-head-container
{
    width: 100%;
    position: absolute;
    left: -8px;
    cursor: pointer;
}

.akordeon-item.expanded .akordeon-item-body
{
    border-top:inherit;
}
.akordeon-item.collapsed
{
}

.akordeon-item.expanded .akordeon-heading
{

}

.akordeon-item.expanded .akordeon-item-head
{

}
.akordeon-item-content
{
    background:#fff;
    padding:15px;
    height: auto;
    border:1px solid #e8e8e8;
    border-top:0;
    text-align:justify;
}
@media screen and (min-width:0px) and (max-width:768px) {

.akordeon-heading{
    font-size:13px;
}
.akordeon-item-content
{
    font-size:13px;
}

}

