﻿.CollapsibleSectionRoundArrow {
    min-width: 100px;
}
.CollapsibleSectionRoundArrow input[type="checkbox"] {
    position: absolute;
    left: -9999em;
}
.CollapsibleSectionRoundArrow label {
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    cursor: pointer;
    border-radius: 50%;
    background-image: url('/images/default-source/cvi/common/expand-arrow-50x50.png?sfvrsn=73eab56e_2');
    background-size: contain;
    transform: rotateZ(180deg);
    transition: transform 300ms linear;
}
.CollapsibleSectionRoundArrow .WrapperPanel{
    opacity: 1;
    height: auto;
    max-height: 200em;
    overflow: hidden;
    transition: opacity 500ms linear, max-height 500ms linear, margin 500ms linear;
}
.CollapsibleSectionRoundArrow input[type="checkbox"]:checked + label {
    transform: rotateZ(0deg);
}
.CollapsibleSectionRoundArrow input[type="checkbox"]:checked ~ .WrapperPanel {
    opacity: 0;
    max-height: 0;
}
/* Reset options to ensure they don't affect child elements added */
.CollapsibleSectionRoundArrow .WrapperPanel input[type="checkbox"] {
    position: initial;
    left: initial;
}
.CollapsibleSectionRoundArrow .WrapperPanel label {
    display: initial;
    width: initial;
    height: initial;
    margin: initial;
    cursor: initial;
    border-radius: initial;
    background-color: initial;
    background-image: initial;
    background-size: initial;
}
.CollapsibleSectionRoundArrow .WrapperPanel input[type="checkbox"]:checked {
    transform: initial;
}
