/*
 * BoxedCheck from flyArtist v1.0.0
 * https://github.com/flyartist/boxed-check
 */
.boxedcheck-two ul{
    display:grid;
    grid-template-columns: 1fr 1fr;
}
.boxedcheck-two  ul li{
    margin: 0 3% 6%;
}

.boxedcheck-five ul{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.boxedcheck-five  ul li{
    margin: 0 3% 6%;
}

.boxed-check-group .boxed-check {
    position: relative;
    display: block;
}
.boxed-check-group .boxed-check .boxed-check-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    display: none;
}
.boxed-check-group .boxed-check .boxed-check-label {
    display: block;
    background-color: #ffffff;
    border: 1px solid #e6e6e6;
    padding: 8px 15px;
    margin: 0;
    border-radius: 1px;
    cursor: pointer;
    font-size:11px;
    text-transform: uppercase;
    color:#5e5e5e;
}

.boxed-check-group .boxed-check .boxed-check-input:disabled + .boxed-check-label {
    border: 1px dashed #bec2c6;
    opacity: .3;
}
.boxed-check-group .boxed-check .boxed-check-input:checked + .boxed-check-label,
.boxed-check-group .boxed-check .boxed-check-input:not(:disabled) + .boxed-check-label:hover{
    border-color: #000000;
}

/* boxed-check default theme */
.boxed-check-group.boxed-check-default .boxed-check .boxed-check-input:checked + .boxed-check-label *{
    color: #000000;
}
.boxed-check-group.boxed-check-default .boxed-check .boxed-check-input:checked + .boxed-check-label {
    color: #000000;
    background-color: #dee2e6;
}
.boxed-check-group.boxed-check-default .boxed-check .boxed-check-input:checked + .boxed-check-label,
.boxed-check-group.boxed-check-default .boxed-check .boxed-check-input:not(:disabled) + .boxed-check-label:hover {
    border-color: #dee2e6;
    background-color: #dee2e6;
}
.boxed-check-group.boxed-check-outline-default .boxed-check .boxed-check-input:checked + .boxed-check-label *{
    color: #000000;
}
.boxed-check-group.boxed-check-outline-default .boxed-check .boxed-check-input:checked + .boxed-check-label {
    color: #000000;
    background-color: #ffffff;
}
.boxed-check-group.boxed-check-outline-default .boxed-check .boxed-check-input:checked + .boxed-check-label,
.boxed-check-group.boxed-check-outline-default .boxed-check .boxed-check-input:not(:disabled) + .boxed-check-label:hover {
    border-color: #000000;
    background-color: #ffffff;
}



.boxed-check-group .boxed-check .boxed-check-label i{
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 30px;
    margin-right: 5px;

    background: #ccc;
}
