/* --- accord --- */
.accord .tabs .tap-label {
    cursor: pointer;
}
.accord .tabs .tap-label.tap-active {
    color: #F05544;
}
.accord > .col1 {
    width: 30%;
    border-right: 1px solid silver;
    padding-left: 2vw;
}
.accord > .col2 {
    width: 100%;
}
.accord > .col1 .tap-label {
    padding-right: 2em;
    line-height: 2em;
    padding-top: 2.4em;
    padding-bottom: 2.4em;
}
.accord > .col1 .tap-label.tap-active {
    position: relative;
}
.accord > .col1 .tap-label.tap-active:after {
    position: absolute;
    top: calc(50% - 6px);
    right: 0;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 12px 6px 0;
    border-color: transparent #F05544 transparent transparent;
}
.accord > .col1 .tap-label.tap-active:before {
    position: absolute;
    display: block;
    right: -1px;
    content: "";
    width: 4px;
    height: 100%;
    background-color: #F05544;
    font-size: 0;
    top: 0;
}
.accord .wrap2 {
    position: relative;
    overflow: hidden;
}
.accord .content {
    width: 100%;
    overflow: hidden;
    color: #282828;
    transition: all 0.4s ease;
    box-sizing: border-box;
    position: relative;
    opacity: 1;
    z-index: 1;
    padding-left: 0;
    height: 0;
}
.accord .accord-label {
    display: block;
    border: 1px solid black;
    padding: 1em 2em;
    color: blue;
}
/* there can be no top/bottom margin in the content for the script to work */
.accord .content > * > *:first-child {
    margin-top: 0;
}
.accord .content > * > *:last-child {
    margin-bottom: 0;
}
.accord .content.tap-active {
    opacity: 1;
    z-index: 1;
}
