/* /////////////////_CHECKBOX_///////////////// */

.label_checkbox {
    position: relative;
    display: block;
    border-radius: 14px;
    margin: 0px;
    width: 48px;
    height: 28px;
    overflow: hidden;
}

.label_checkbox.small {
    width: 37px;
    height: 20px;
}
.label_checkbox.small .fake::before {
    width: 14px;
    height: 14px;
    top: 3px;
    left: 3px;
}
.label_checkbox.small .t:checked+.fake::before {
    left: 20px;
}

.label_checkbox .fake {
    position: absolute;
    border-radius: 14px;
    box-shadow: 0 0 0 1px #CCC inset;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.label_checkbox .fake::before {
    content: "";
    position: absolute;
    display: block;
    top: 4px;
    left: 4px;
    right: auto;
    background: #CCC;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.label_checkbox input {
    margin: 0px;
    position: absolute;
    opacity: 0.0;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.label_checkbox input[type="checkbox"]:checked+.fake {
    box-shadow: 0 0 0 1px #69C inset;
}

.label_checkbox input[type="checkbox"]:checked+.fake::before {
    background: #69C;
    left: 24px;
}

.label_checkbox .t:checked+.fake {
    box-shadow: 0 0 0 1px #69C inset;
}

.label_checkbox .t:checked+.fake::before {
    background: #69C;
    left: 24px;
}

.label_checkbox .t:checked {
    display: none;
}

.label_checkbox .t:checked+.f {
    display: block;
}

.label_checkbox .f:checked {
    display: none;
}

.label_checkbox .f:checked+.t {
    display: block;
}

/* /////////////////_MINICHECK_///////////////// */

.label_minicheck {
    position: relative;
    display: block;
    border-radius: 10px;
    margin: 0px;
    width: 32px;
    height: 21px;
    overflow: hidden;
}

.label_minicheck .fake {
    position: absolute;
    border-radius: 10px;
    box-shadow: 0 0 0 1px #555 inset;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.label_minicheck .fake::before {
    content: "";
    position: absolute;
    display: block;
    top: 3px;
    left: 3px;
    right: auto;
    background: #555;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.label_minicheck input {
    margin: 0px;
    position: absolute;
    opacity: 0.0;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.label_minicheck input[type="checkbox"]:checked+.fake {
    box-shadow: 0 0 0 1px #000 inset;
}

.label_minicheck input[type="checkbox"]:checked+.fake::before {
    background: #000;
    left: 13px;
}

.label_minicheck .t:checked+.fake {
    box-shadow: 0 0 0 1px #000 inset;
}

.label_minicheck .t:checked+.fake::before {
    background: #000;
    left: 13px;
}

.label_minicheck .t:checked {
    display: none;
}

.label_minicheck .t:checked+.f {
    display: block;
}

.label_minicheck .f:checked {
    display: none;
}

.label_minicheck .f:checked+.t {
    display: block;
}

/* /////////////////_MILTI_///////////////// */

.label_multi {
    position: relative;
    display: table;
    box-shadow: 0 0 0 1px #69C;
    border-radius: 9px;
}

.label_multi .row {
    position: relative;
    display: table-row;
}

.label_multi .cell {
    position: relative;
    display: table-cell;
    width: 18px;
    height: 18px;
}

.label_multi .cell .fake {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #69C;
    display: none;
    z-index: 1;
}

.label_multi .cell input[type="radio"] {
    position: absolute;
    cursor: pointer;
    margin: 0;
    padding: 0;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 4;
}

.label_multi .cell input[type='radio']:checked~.fake {
    display: block;
}

/* /////////////////_CHECKER_///////////////// */

.label_checker {
    position: relative;
    display: table;
}

.label_checker .row {
    position: relative;
    display: table-row;
}

.label_checker .cell {
    position: relative;
    display: table-cell;
}

.label_checker .cell .fake {
    position: relative;
    left: 0px;
    top: 0px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #FFF;
    box-shadow: 0 0 0 1px #69C;
    z-index: 1;
}

.label_checker .cell input[type="radio"] {
    position: absolute;
    cursor: pointer;
    margin: 0;
    padding: 0;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 4;
}

.label_checker .cell .fake::before {
    content: "";
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    width: 64%;
    height: 64%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #69C;
    z-index: 3;
}

.label_checker .cell:not(:first-child) .fake::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 4px;
    width: 8px;
    height: 18px;
    transform: translate(-100%, -50%);
    background: #FFF;
    border-style: solid;
    border-width: 1px 0px 1px 0px;
    border-color: #69C;
    z-index: 2;
}

.label_checker .cell input[type='radio']:checked~.fake::before {
    display: block;
}

/* ////////////////////_LOADING_////////////////// */

.label_load {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
}

.label_load .fake::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid rgba(255, 221, 0, .2);
    border-top: 5px solid #FD0;
    box-sizing: border-box;
    animation: aniload 0.5s infinite linear;
}

.label_load .fake::before {
    content: "7";
    position: absolute;
    color: #000;
    font-size: 20px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@keyframes aniload {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ////////////////////_BUTTON_////////////////// */

.label_button {
    position: relative;
    display: inline-block;
    vertical-align: top;
    list-style: none;
    font-style: normal;
}

.label_button input {
    position: absolute;
    margin: 0px;
    padding: 0px;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0.0;
    z-index: 2;
}

.label_button .on {
    position: relative;
    display: none;
}

.label_button input:checked~.on {
    display: inline-block;
}

.label_button .of {
    position: relative;
    display: inline-block;
}

.label_button input:checked~.of {
    display: none;
}

/* /////////////////_ARROW_CHECK_///////////////// */

.label_arrowCheck {
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: calc(50% - 15px);
}

.label_arrowCheck .chkbx_top,
.label_arrowCheck .chkbx_bottom {
    width: 30px;
    height: 15px;
    color: #999;
    fill: #999;
    border-color: #999 !important;
    border-style: solid !important;
    border-left: 1px;
    border-right: 1px;

}

.label_arrowCheck .chkbx_top {
    border-radius: 3px 3px 0px 0px;
    border-top: 1px;
    border-bottom: 0px;
}

.label_arrowCheck .chkbx_bottom {
    border-radius: 0px 0px 3px 3px;
    border-top: 0px;
    border-bottom: 1px;
}

.label_arrowCheck .chkbx_top.active,
.label_arrowCheck .chkbx_bottom.active {
    background-color: #619ddb;
    color: #FFF;
    fill: #FFF;
}