.dlgl-wrap * {
    box-sizing: border-box;
}
.dlgl-wrap {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}
.dlgl-wrap > ul.dlgl-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    list-style: none;
}
.dlgl-wrap ul.dlgl-header li {
    margin: 0 12px 12px 0;
    padding: 0;
}
.dlgl-wrap ul.dlgl-header a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    color: var(--color-primary);
    background: #ffffff!important;
    text-decoration: none;
    border: 1px solid #c3c3c3;
    box-shadow: 0 0 3px #c3c3c3;
    font-size: 24px;
    line-height: 0.8;
    text-transform: uppercase;
    width: 50px;
    height: 50px;
}
.dlgl-wrap ul.dlgl-header a:hover {
    opacity: 0.6;
    text-decoration: none;
    border: 1px solid #c3c3c3;
}
.dlgl-item {
    margin-bottom: 40px;
}
.dlgl-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    margin: 0 0 16px 0;
    padding-bottom: 14px;
    border-bottom: 1px solid #000;
}
.dlgl-item-header h2 {
    margin: 0 !important;
    font-size: 24px;
    padding: 0;
    max-width: 40%;
}
.dlgl-item-header a {
    font-size: 12px;
    align-self: flex-end;
}
.dlgl-panel {
    margin-bottom: 20px;
}
.dlgl-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #eee;
    background-color: var(--color-primary) !important;
    color: #ffffff;
    cursor: pointer;
}
.dlgl-panel-heading {
    font-size: 18px;
    padding: 12px 12px;
    width: 100%;
}
.dgl-panel-icon {
    border-left: 1px solid #ffffff;
    min-width: 58px;
    text-align: center;
    cursor: pointer;
}
.dlgl-panel-content {
    display: none;
    padding: 12px 12px 0 12px;
    border: 1px solid #cecece;
    border-top: none;
}
.dgl-panel-icon .fa-angle-up {
    display: none;
}
.dlgl-panel-active .dgl-panel-icon .fa-angle-up {
    display: inline-block;
}
.dlgl-panel-active .dgl-panel-icon .fa-angle-down {
    display: none;
}
.dlgl-panel-active .dlgl-panel-content {
    display: block;
}
.dlgl-panel-content p {
    margin-bottom: 20px;
}