﻿/*
    Form css: inputs, selects, options, form containers etc..
*/

.igc-backoffice .checkbox-standard{
    width: 14px;
    height: 14px;
    background-color: #ffffff;
    border: solid 0 #979797;
    margin: 13px 20px;
}

.igc-backoffice .cross-icon{
    background: url(/Images/icon_close.svg) no-repeat center;
    opacity: 0.5;
}

.igc-backoffice .spinner-small{
    background-image: url(/Images/ajax-loader-white.gif);
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 5px;
    position: absolute;
}

/*Checkbox*/
.igc-backoffice input[type="checkbox"] {
    display:none;
}
.igc-backoffice input[type="checkbox"] + label .checkbox {
    display:inline-block;
    width:19px;
    height:19px;
    margin:-2px 0px 0 10px;
    vertical-align:middle;
    background-image:url(/Images/icon_checkbox.svg);
    background-position: -0px -0px;
    background-repeat: no-repeat;   
    cursor:pointer;
}
.igc-backoffice input[type="checkbox"]:checked + label .checkbox {
    background-image:url(/Images/icon_checkbox.svg);
    background-repeat: no-repeat;
    background-position: -0px -20px;
    cursor:pointer;
}