﻿/****************************************************************/
/*                        Validation                                  */
/****************************************************************/
.vld {
    background-color: rgb(253,218,188);
    color: rgb(203,111,74);
    padding: 8px 12px 8px 20px;
    font-size: 16px;
    border-radius: 6px;
    display: none;
    position: absolute;
    margin-top: -36px;
    height: 18px;
    overflow: hidden;
    min-width: 200px;
}
    .vld:before {
        content: ' ';
        background-color: rgb(253,218,188);
        display: inline-block;
        transform: rotate(45deg);
        width: 20px;
        height: 20px;
        float: left;
        margin-top: 16px;
        margin-left: -4px;
        position: absolute;
}

.pl{
    float: left;
}
.toolbar-menu-main .disabled {
    opacity: 0.4;
}


/******************************************************************/
/*                              CheckBox                          */
/******************************************************************/
.checkbox::before {
    text-rendering: auto;
    line-height: inherit;
    width: 18px;
    height: 18px;
    display: flex;
    border: 2px solid black;
    border-radius: 6px;
    content: " ";
    align-items: center;
    justify-content: center;
    float: left;
    margin-right: 10px;
}

.checkbox-on::before {
    /*content: "+" !important;*/
    background-color: silver;
}

.checkbox {
    min-height: 24px;
    cursor: pointer;
    background: none;
    padding-left: 0px !important;
}

/****************************************************************/
/*                              Radio                           */
/****************************************************************/
.radio::before {
    text-rendering: auto;
    line-height: inherit;
    width: 18px;
    height: 18px;
    display: flex;
    border: 2px solid black;
    border-radius: 50%;
    content: " ";
    align-items: center;
    justify-content: center;
    float: left;
    margin-right: 10px;
}

.radio-on::before {
    content1: "✓" !important;
    background-color: silver;
}

.radio {
    min-height: 24px;
    cursor: pointer;
    background: none;
    padding-left: 0px!important ;
}