/* stepper na počet kusu */
.pcs {
    border: #dddddd solid 1px;
    border-radius: 2px; 
    position: relative;  
    display: inline-block;
    background: #fff;
}

.pcs input[type="text"] {
    border: none;
    text-align: center;
    height: 28px;
    padding: 0;
    width: 35px;
    color: #484848;
}

.pcs .btn-number {
    height: 28px;
    text-align: center;
    cursor: pointer;
    border: none;
    background: none;
    width: 20px;
    padding: 0;
    color: #484848;
}

.pcs .btn-number.plus {
    border-left: #dddddd solid 1px;
}

.pcs .btn-number.minus {
    border-right: #dddddd solid 1px;
}

.pcs.pcs-lg input[type="text"] {
    height: 38px;    
}

.pcs.pcs-lg .btn-number {
    height: 38px;
}

/* label  */
.lbl {
    display: block;
    line-height: 30px;
    font-size: 0.867rem;
}

.lbl.lbl-lg {
    line-height: 40px;
    font-size: 1rem;
}

/* input, textarea */
.input, .textarea {
    background-color: #fff;
    background-image: none;
    border: 1px solid #dddddd;
    border-radius: 2px;
    display: block;
    height: 38px;    
    padding: 6px 12px;
    width: 100%;
    box-sizing: border-box;    
}

/* file */
.file {
    background-color: #fff;
    background-image: none;
    display: block;
    height: 38px;    
    padding: 6px 12px;
    width: 100%;
    box-sizing: border-box;    
}

.textarea {
    height: auto;
}
     
.form .form-group .col {
    padding-top: 5px;
    padding-bottom: 5px;    
}

#showfilterform, #hidefilterform {
    color: #ffffff;
    background: #2a1749;
        
}

/* checkbox, radio */
input[type="checkbox"] {
    display:none;
}

input[type="checkbox"] + label {
    color: #000;
}

input[type="checkbox"] + label span {
    display:inline-block;
    width: 20px;
    height: 22px;
    margin: -2px 7px 0 0;
    vertical-align: middle;
    background: url('../img/check_radio_sheet.png') left top no-repeat;
    cursor: pointer;
}

input[type="checkbox"]:checked + label span {
    background: url('../img/check_radio_sheet.png') -20px top no-repeat;
}

input[type="radio"] {
    display:none;
}

input[type="radio"] + label {
    color: #000;
}

input[type="radio"] + label span {
    display: inline-block;
    width: 20px;
    height: 22px;
    margin: -2px 7px 0 0;
    vertical-align: middle;
    background: url('../img/check_radio_sheet.png') -40px top no-repeat;
    cursor: pointer;
}

input[type="radio"]:checked + label span {
    background: url('../img/check_radio_sheet.png') -60px top no-repeat;
}

/* Reset Select */
select, textarea {
   /* -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;*/
    outline: 0;
    box-shadow: none;
    background-color: #fff;
    background-image: none;
    border: 1px solid #dddddd;
    height: 50px;    
    padding: 6px 12px;
    width: 100%;
    box-sizing: border-box; 
    border-radius: 2px;
}

.gdpr {
    height: 10em;
}

/* Custom Select */
.select {
    position: relative;
    display: block;
    width: 100%;
    height: 2em;
    line-height: 2;
    /*background: none;*/
    overflow: hidden;
    border-radius: .25em;
    border: #dddddd solid 1px;
}
select {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0 0 0 .5em;
    cursor: pointer;
}

select::-ms-expand {
    display: none;
}

/* Arrow */
.select::after {
    content: '\25BC';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 0 0.55em;
    background: #f8f8f8;
    pointer-events: none;
    color: #bbbbbb;
}

/* Transition */
.select:hover::after {
    color: #2a1749;
}

.select::after {
    -webkit-transition: .25s all ease;
    -o-transition: .25s all ease;
    transition: .25s all ease;
}