
/************ CHECKBOX UI ****************/
.pusha-checkbox {
    display: inline-block;
    vertical-align: unset;
    cursor: pointer; 
    margin: 0px;
    padding: 0px;
    line-height: 0;   
}

.pusha-checkbox label {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.pusha-checkbox span {
    margin-right: 6px;
    background-color: #fff;
    border: 2px solid var(--pusha-border);
    position: relative;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 18px;
    height: 18px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: border-color .25s cubic-bezier(.71,-.46,.29,1.46),background-color .25s cubic-bezier(.71,-.46,.29,1.46);
    transition: border-color .25s cubic-bezier(.71,-.46,.29,1.46),background-color .25s cubic-bezier(.71,-.46,.29,1.46);
}

.pusha-checkbox span:before {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    content: "";
    border-width: 0px 2px 2px 0px;
    border-style: solid;
    border-color: #fff;
    height: 7px;
    width: 3px;
    -webkit-transform: rotate(45deg) scaleY(0);
    transform: rotate(45deg) scaleY(0);
    -webkit-transition: -webkit-transform .15s ease-in .05s;
    transition: -webkit-transform .15s ease-in .05s;
    transition: transform .15s ease-in .05s;
    transition: transform .15s ease-in .05s,-webkit-transform .15s ease-in .05s;
    -webkit-transform-origin: center;
    transform-origin: center;
}

.pusha-checkbox input:checked + span {
    border: 1px solid var(--pusha-primary);
    background: var(--pusha-primary);
}

.pusha-checkbox input:checked + span:before {
    border-color: #fff;     
    -webkit-transform: rotate(45deg) scaleY(1);
    transform: rotate(45deg) scaleY(1);    
}

.pusha-checkbox-wrap {
    margin-bottom: 9px;
}

.pusha-form-checkbox-wrap {
    display: block;
    margin-bottom: 12px;
}

.pusha-form-checkbox-wrap .pusha-checkbox-label {
    display: flex;
    align-items: center;
}

.pusha-form-checkbox-wrap .pusha-checkbox-label span {
    margin-right: 5px;
}

.pusha-radio {
    display: block;
    margin: 0px;
    padding: 0px;
    cursor: pointer; 
    margin-bottom: 12px;   
}

.pusha-radio label {
    cursor: pointer;
}

.pusha-radio span {
    margin-right: 5px;
    border: 2px solid #829CBC;
    display: inline-block;
    position: relative;
    border-radius: 26px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 18px;
    height: 18px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pusha-radio input:checked + span {
    border: 2px solid var(--pusha-primary);
}

.pusha-radio input:checked + span:before {
    background: var(--pusha-primary);
}

.pusha-radio span:before {
    content: "";
    border-radius: 50%;
    height: 10px;
    width: 10px;
}

.pusha-checkbox input,
.pusha-radio input {
    display: none !important;
}

/************ CHECKBOX & RADIO ****************/