/* css helpers */
/* This is one of the rare correct use cases of !important : control class */

.ool-util-away{
    position: absolute!important;
    top: -99999px!important;
}

.ool-util-hidden{
    display: none!important;
    visibility: hidden!important;
}


/**** hide first radio option for group with class ****/

.ool-radio-group-hide-first li:nth-child(1){
    display: none!important;
 }   
