.data-card {
}

.data-card-checkbox {
}

/* Cargo */


.data-card-label-cargo {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 1em;
    background: #F4F5F7;
    cursor: pointer;
    /* Icon */
    margin-bottom: 0px;
}

    .data-card-label-cargo:hover {
        background: #F4F5F7;
    }

    .data-card-label-cargo::after {
        content: "";
        width: 1em;
        height: 1em;
        text-align: center;
        -webkit-transition: all .35s;
        transition: all .35s;
        display: block;
        width: 25px;
        height: 25px;
        background: #EDEDEE;
        -moz-border-radius: 20px;
        -webkit-border-radius: 20px;
        background-image: url("/assets/img/icon_basic_18x18_outline_arrow-ios-down.svg");
        background-position: 50% 50%;
        background-repeat: no-repeat; 
        margin-right: 6px;
    }


/* Cargo */

.data-card-label {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 1em;
    background: #F4F5F7;
    cursor: pointer;
    /* Icon */
    margin-bottom: 0px;
}

    .data-card-label:hover {
        background: #F4F5F7;
    }

    .data-card-label::after {
        content: "";
        width: 1em;
        height: 1em;
        text-align: center;
        -webkit-transition: all .35s;
        transition: all .35s;
        display: block;
        width: 25px;
        height: 25px;
        background: #EDEDEE;
        -moz-border-radius: 20px;
        -webkit-border-radius: 20px;
        background-image: url("/assets/img/icon_basic_18x18_outline_arrow-ios-down.svg");
        background-position: 50% 50%;
        background-repeat: no-repeat;
        margin-top: 32px;
        margin-right: 6px;
    }

.data-card-content {
    max-height: 0;
    padding: 0 1em;
    color: #2c3e50;
    background: white;
    -webkit-transition: all .35s;
    transition: all .35s;
}


.data-card-close {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: end;
    justify-content: flex-end;
    padding: 1em;
    font-size: 0.75em;
    background: #F4F5F7;
    cursor: pointer;
}

    .data-card-close:hover {
        background: #F4F5F7;
    }

input:checked + .data-card-label {
    background: #F4F5F7;
}

    input:checked + .data-card-label::after {
        -webkit-transform: rotate(90deg);
        transform: rotate(180deg);
        margin-bottom: 3px;
    }

input:checked ~ .data-card-content {
    max-height: 5000vh;
    padding: 1em;
}


.data-card-dot {
    background: #27b737;
}


input:checked ~ .data-card-dot {
    background: red;
}