﻿/* The switch - the box around the slider */
.eh-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* Hide default HTML checkbox */
.eh-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.eh-switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.eh-switch-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .eh-switch-slider {
    background-color: #2196F3;
}

input:disabled + .eh-switch-slider {
    background-color: #a0df50;
}

input:focus + .eh-switch-slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .eh-switch-slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.eh-switch-slider.eh-switch-round {
    border-radius: 34px;
}

.eh-switch-slider.eh-switch-round:before {
    border-radius: 50%;
}

/* Dimension Panel*/
.eh-dimension-input-panel {
}

.eh-dimension-input-panel LABEL {
    vertical-align: middle;
}

.eh-dimension-input-panel LABEL:not(:first-of-type) {
    padding-left: 20px;
}

.eh-dimension-input-panel .k-numerictextbox {
    width: 100px;
}

/* Grid Text */
.eh-gridcell-subtext {
    color: #c3c3c3;
    font-size: 10pt;

    margin: 0px;
}

.k-slim-button {
    padding-top: 0px;
    padding-bottom: 0px;
}

.k-input[required], .k-textbox[required] {
    border-color: #3c3;
}

.ehict-scanner-viewport-video {
    width: 100%;
}