/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 18/03/2019, 16:55:31
    Author     : LUCAS PC
*/
/*--checkbox--*/

.block-check {
    display: block;
    position: relative;


    cursor: pointer;
    /*font-size: 22px;*/
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.block-check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    /*border-radius: 0px 0px 10px 0px;*/
    height: 100%;
    width: 100%;
    background-color: #ccc;
    cursor: pointer;
}

/* On mouse-over, add a grey background color */
.block-check:hover input ~ .checkmark {
    background-color: #d0cccc40;
    display: block;
}

.block-check-image{
    z-index: 1;
    position: relative;
}

/* When the checkbox is checked, add a blue background */
.block-check input:checked ~ .checkmark {
    background-color: #35bdff47;
    display: block;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.block-check input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.block-check .checkmark:after {
    left: 9px;
    top: 2px;
    width: 8px;
    height: 15px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*//////////radio seleciona estoque////////////*/
/*radio*/

.radio-select {
    color: #525252;
    height: 100%;
    width: 100%;
    display: block;
    position: relative;
    cursor: pointer;
    /*font-size: 22px;*/
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.radio-select input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox inset*/
.radio-mark {
    border-radius: 5px;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    box-shadow: 0 0 0 2px #1769ff;
    cursor: pointer;
}

/* On mouse-over, add a grey background color */
.radio-select:hover input ~ .radio-mark {
    /*background-color: #d0cccc40;*/
    display: block;
}

.block-check-image{
    z-index: 1;
    position: relative;
}

/* When the checkbox is checked, add a blue background */
.radio-select input:checked ~ .radio-mark {
    /*background-color: #35bdff47;*/
    display: block;
}
/* Create the radio-mark/indicator (hidden when not checked) */
.radio-mark:after {
    content: "";
    position: absolute;
    display: none;
}
 
/* Show the radio-mark when checked */
.radio-select input:checked ~ .radio-mark:after {
    display: block;   
}


/* Style the radio-mark/indicator */
/*.radio-select .radio-mark:after {
    left: 9px;
    top: 2px;
    width: 8px;
    height: 15px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}*/

/*//////////radio seleciona MÃ©todos de Pagamento////////////*/
/*radio*/

.radio-select-mp {
    color: #525252;
    height: 100%;
    width: 100%;
    display: block;
    position: relative;
    cursor: pointer;
    /*font-size: 22px;*/
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.radio-select-mp input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox inset*/
.radio-mark-mp {
    border-radius: 5px;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    box-shadow: 0 0 0 2px #1769ff;
    cursor: pointer;
}

/* On mouse-over, add a grey background color */
.radio-select-mp:hover input ~ .radio-mark-mp {
    /*background-color: #d0cccc40;*/
    display: block;
}

.block-check-image{
    z-index: 1;
    position: relative;
}

/* When the checkbox is checked, add a blue background */
.radio-select-mp input:checked ~ .radio-mark-mp {
    background-color: #35bdff21;
    display: block;
}
/* Create the radio-mark/indicator (hidden when not checked) */
.radio-mark-mp:after {
    content: "";
    position: absolute;
    display: none;
}
 
/* Show the radio-mark when checked */
.radio-select-mp input:checked ~ .radio-mark-mp:after {
    display: block;   
}