html,
body {
    height: 100%;
}
body {
    display: grid;
    font-family: -apple-system, BlinkMacSystemFont, "myriad-pro", sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /*color: #c5c5c7;*/
    color: var(--gray400);
}
.cbx {
    position: relative;
    display: block;
    float: left;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background-color: #606062;
    background-image: linear-gradient(#474749, #606062);
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.15), inset 0 -1px 1px rgba(0,0,0,0.15);
    transition: all 0.15s ease;
}
.cbx svg {
    position: absolute;
    top: 3px;
    left: 3px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #fff;
    stroke-width: 2;
    stroke-dasharray: 17;
    stroke-dashoffset: 17;
    transform: translate3d(0, 0, 0);
}
.rdo {
    position: relative;
    display: block;
    float: left;
    width: 18px;
    height: 18px;
    border-radius: 10px;
    background-color: var(--gray600);
    background-image: var(--gray600);
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.15), inset 0 -1px 1px rgba(0,0,0,0.15);
    transition: all 0.15s ease;
}
.rdo:after {
    content: "";
    position: absolute;
    display: block;
    top: 6px;
    left: 6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    opacity: 0;
    transform: scale(0);
}
.cbx + span,
.rdo + span {
    float: left;
    margin-left: 6px;
}
.forms {
    /*margin: auto;*/
    user-select: none;
}
.forms label {
    display: inline-block;
    margin: 10px;
    cursor: pointer;
}
.forms input[type="checkbox"],
.forms input[type="radio"] {
    position: absolute;
    opacity: 0;
}
.forms input[type="radio"]:checked + .rdo {
    background-color: #606062;
    /*background-image: linear-gradient(#255cd2, #1d52c1);*/
    background-image: linear-gradient(#38a5ff, #38a5ff);
}
.forms input[type="radio"]:checked + .rdo:after {
    opacity: 1;
    transform: scale(1);
    transition: all 0.15s ease;
}
.forms input[type="checkbox"]:checked + .cbx {
    background-color: #606062;
    /*background-image: linear-gradient(#255cd2, #1d52c1);*/
    background-image: linear-gradient(#38a5ff, #38a5ff);
}
.forms input[type="checkbox"]:checked + .cbx svg {
    stroke-dashoffset: 0;
    transition: all 0.15s ease;
}