body {
    -webkit-animation: bugfix infinite 1s;
    -moz-animation: bugfix infinite 1s;
    -o-animation: bugfix infinite 1s;
    animation: bugfix infinite 1s;
}

@-webkit-keyframes bugfix {
    from {
        padding: 0;
    }
    to {
        padding: 0;
    }
}

@-moz-keyframes bugfix {
    from {
        padding: 0;
    }
    to {
        padding: 0;
    }
}

@-o-keyframes bugfix {
    from {
        padding: 0;
    }
    to {
        padding: 0;
    }
}

@keyframes bugfix {
    from {
        padding: 0;
    }
    to {
        padding: 0;
    }
}

.checkbox-btn,
.radio-btn {
    position: relative;
    padding-left: 20px
}

.checkbox-btn input[type="checkbox"],
.radio-btn input[type="checkbox"] {
    cursor: pointer;
    height: 24px !important;
    left: 0;
    margin-left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 24px !important;
    z-index: 2;
}

.checkbox-btn input[type="radio"],
.radio-btn input[type="radio"] {
    position: absolute;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
    width: 24px !important;
    height: 24px !important;
    margin: 0;
    top: 0;
    left: 0;
}

.checkbox-btn span,
.radio-btn span {
    display: inline-block;
    line-height: 24px;
    vertical-align: middle;
    position: relative;
    padding-left: 20px;
    user-select: none;
    color: var(--font-color-primary)
}

.checkbox-btn span::after,
.radio-btn span::after {
    position: absolute;
    content: "";
    width: 24px;
    height: 24px;
    left: 0;
    top: 0;
    margin-left: -18px;
    background-color: #fff;
    border: 1px solid #cdcdcd;
    -webkit-border-radius: 0;
    border-radius: 0;
    background-clip: padding-box;
}

.checkbox-btn span::before,
.radio-btn span::before {
    position: absolute;
    content: "";
    width: 16px;
    height: 9px;
    top: 6px;
    left: 4px;
    margin-left: -18px;
    border: 2px solid #303030;
    border-top: none;
    border-right: none;
    background: transparent;
    -moz-transform: rotate(-47deg);
    -o-transform: rotate(-47deg);
    -ms-transform: rotate(-47deg);
    -webkit-transform: rotate(-47deg);
    transform: rotate(-47deg);
    opacity: 0;
    -webkit-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    z-index: 1
}
 
.checkbox-btn span:active::before,
.radio-btn span:active::before {
    opacity: 0.3
}

.checkbox-btn input[type="checkbox"]:checked+span,
.checkbox-btn input[type="radio"]:checked+span,
.radio-btn input[type="checkbox"]:checked+span,
.radio-btn input[type="radio"]:checked+span {
    color: var(--font-color-primary)
}

.checkbox-btn input[type="checkbox"]:checked+span::after,
.checkbox-btn input[type="radio"]:checked+span::after,
.radio-btn input[type="checkbox"]:checked+span::after,
.radio-btn input[type="radio"]:checked+span::after {
    border: 1px solid #303030;
}

.checkbox-btn input[type="checkbox"]:checked+span::before,
.checkbox-btn input[type="radio"]:checked+span::before,
.radio-btn input[type="checkbox"]:checked+span::before,
.radio-btn input[type="radio"]:checked+span::before {
    opacity: 1
}

.checkbox-btn input[type="checkbox"]:disabled+span,
.checkbox-btn input[type="radio"]:disabled+span,
.radio-btn input[type="checkbox"]:disabled+span,
.radio-btn input[type="radio"]:disabled+span {
    color: #787878;
    cursor: default
}

.checkbox-btn input[type="checkbox"]:disabled+span::after,
.checkbox-btn input[type="radio"]:disabled+span::after,
.radio-btn input[type="checkbox"]:disabled+span::after,
.radio-btn input[type="radio"]:disabled+span::after {
    border: 2px solid #787878;
    background-color: #ffffff
}

.checkbox-btn input[type="checkbox"]:disabled+span::before,
.radio-btn input[type="checkbox"]:disabled+span::before {
/*    display: none;*/
    border-color: #787878;
}

.checkbox-btn input[type="radio"]:disabled+span::before,
.radio-btn input[type="radio"]:disabled+span::before {
/*    display: none;
     background-color: #787878;*/
     background-color: transparent;
     border-color: currentcolor currentcolor #aaa #aaa;
}

.radio-btn span::after {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-clip: padding-box
}

.radio-btn span::before {
    width: 12px;
    height: 12px;
    border: none;
    top: 6px;
    left: 6px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-clip: padding-box;
    background-color: #000000;
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
}


/*# sourceMappingURL=checkbox.css.map */