
/* expand Start */
.panel-expand {
}

.panel-expand-item {
    margin-bottom: 30px;
}

.expand-container {
}

.expand-header {
    margin-bottom: 10px;
    cursor: pointer;
}

.expand-header-row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;

    position: relative;
    padding: 0px 40px 0px 0px;
}

.expand-header-col {
}

.expand-header-num {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #595959;
}

.expand-header-lbl {
    color: #595959;
}

.expand-header-ico {
    display: flex;
    justify-content: center;
    align-items: center;

    position: absolute;
    top: 0px;
    right: 0px;

    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #f37924;
    background-color: #f37924;
    color: #ffffff;

    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    transition: 0.2s;
}

.panel-expand-item .expand-header .expand-header-ico::before {
    content: "+";
    position: absolute;
    top: 2px;
    font-family: "verdana";
    font-size: 20px;
    line-height: 20px;

    /* 
    content: "\f078";
    font-family: "FontAwesome"; */
}

.panel-expand-item.expanded .expand-header.active .expand-header-ico::before {
    content: "-";
    position: absolute;
    top: 2px;
    font-family: "verdana";
    font-size: 20px;
    line-height: 20px;
    
    /* 
    content: "\f077";
    font-family: "FontAwesome"; 
    */
}

.expand-header:hover .expand-header-ico {
    border: 1px solid #f37924;
    background-color: #ffffff;
    color: #f37924;
}

.expand-body {
}

.expand-body-wrap {
    height: 0px;
    overflow: hidden;

    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
}

.expand-body-content {
    padding: 20px;
    border-radius: 10px;
    background-color: transparent;
}
/* expand End */

/* vertical Start */
.type-vertical .expand-header-row {
    justify-content: center;
    align-items: center;
    padding: 0px;
}

.type-vertical .expand-header-num {
    display: none;
}

.type-vertical .expand-header-lbl {
}

.type-vertical .expand-header-ico {
    position: relative;
    right: auto;
}

.type-vertical .panel-expand-item .expand-header .expand-header-ico::before {
    font-family: "Material Symbols Outlined";
    content: "\e984";

    position: absolute;
    top: 4px;
    font-size: 20px;
    line-height: 20px;
}

.type-vertical .panel-expand-item.expanded .expand-header.active .expand-header-ico::before {
    font-family: "Material Symbols Outlined";
    content: "\e986";

    position: absolute;
    top: 4px;
    font-size: 20px;
    line-height: 20px;
    
}
/* vertical End */