
/* 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: 24px;
    height: 24px;
    border-radius: 6px;
    border: 1px solid #fafafa;
    color: #595959;
    font-size: 28px;
}

.panel-expand-item .expand-header .expand-header-ico::before {
    content: "\f107";/* f078 */
    font-family: "FontAwesome";
}

.panel-expand-item.expanded .expand-header.active .expand-header-ico::before {
    content: "\f106";/* f077 */
    font-family: "FontAwesome";
}

.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 */