﻿input {
    -webkit-appearance: none;
}

.cashierOverlay {
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    font-family: Arial, Verdana, sans-serif;
    text-align: center;
    color: white;
}

.cashierBackground {
    width: 100%;
    height: 100%;
    background-color: rgb(40, 40, 40);
    border: 5px solid rgb(80, 78, 77);
    border-radius: 15px;
}

.cashierInputDiv {
    padding-top: 8%;
    padding-left: 30%;
}

.cashierErrorBalance {
    color: red;
    display: none;
}

.cashierDivFloatLeft {
    float: left;
    width: 10%;
    height: 19%;
}

.cashierLessBalance {
    background-color: rgb(192,77, 14);
    color: white;
    font-weight: bold;
    text-align: center;
    border-color: rgb(192,77, 14);
    width: 100%;
    height: 100%;
    outline: none;
	font-size: 200%;
	border-radius: 15px 0px 0px 15px;
}

    .cashierLessBalance:disabled {
        background-color: rgb(32,32, 32);
        border: none;
        outline: none;
    }

    .cashierLessBalance:hover {
        border: none;
        outline: none;
    }

.cashierDivInputBalanceFloatLeft {
    float: left;
    width: 36%;
    height: 19%;
}


.cashierInputBalance {
    background-color: rgb(32,32, 32);
    color: white;
    float: left;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
	font-size: 120%;
}

    .cashierInputBalance:focus {
        border: none;
        outline: none;
    }

.cashierMoreBalance {
    background-color: rgb(192,77, 14);
    color: white;
    font-weight: bold;
    text-align: center;
    border-color: rgb(192,77, 14);
    width: 100%;
    height: 100%;
    outline: none;
	font-size: 200%;
	border-radius: 0px 15px 15px 0px;
}

    .cashierMoreBalance:disabled {
        background-color: rgb(32,32, 32);
        border: none;
        outline: none;
    }

    .cashierMoreBalance:hover {
        border: none;
        outline: none;
    }

.cashierClearElement {
    clear: both;
}

.cashierDivOkButton {
    width: 26%;
    height: 17%;
    float: right;
    padding-right: 10%;
    padding-top: 2%;
    padding-bottom: 1%;
}

.cashierOkButton {
    background-color: rgb(192,77, 14);
    color: white;
    font-weight: bold;
    text-align: center;
    border-radius: 10px 10px 10px 10px;
    border-color: rgb(192,77, 14);
    width: 100%;
    height: 100%;
    outline: none;
	font-size: 120%;
}

    .cashierOkButton:disabled {
        background-color: rgb(32,32, 32);
        border: none;
        outline: none;
    }

    .cashierOkButton:focus {
        border: none;
        outline: none;
    }

.cashierDivSlider {
    margin-top: 4%;
}

.cashierMsg {
    margin-top: 4%;
    margin-bottom: 4%;
}

/* stile slider */
input[type=range] {
    -webkit-appearance: none;
    width: 80%;
}

    input[type=range]:focus {
        outline: none;
    }

    input[type=range]::-webkit-slider-runnable-track {
        width: 100%;
        height: 18.4px;
        cursor: pointer;
        animate: 0.2s;
        box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
        border-radius: 1.3px;
        border: 0.2px solid #010101;
        background-color: rgb(32,32, 32);
    }

    input[type=range]::-webkit-slider-thumb {
        -webkit-appearance: none;
        box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
        border: 1px solid #000000;
        height: 46px;
        width: 26px;
        border-radius: 3px;
        background-color: rgb(192,77, 14);
        cursor: pointer;
        margin-top: -14px;
    }

    input[type=range]:focus::-webkit-slider-runnable-track {
        background-color: rgb(32,32, 32);
    }

    input[type=range]::-moz-range-track {
        width: 100%;
        height: 8.4px;
        cursor: pointer;
        animate: 0.2s;
        box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
        border-radius: 1.3px;
        border: 0.2px solid #010101;
        background-color: rgb(32,32, 32);
    }

    input[type=range]::-moz-range-thumb {
        box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
        border: 1px solid #000000;
        height: 46px;
        width: 26px;
        border-radius: 3px;
        background: #ffffff;
        cursor: pointer;
    }

    input[type=range]::-ms-track {
        width: 100%;
        height: 8.4px;
        cursor: pointer;
        animate: 0.2s;
        background: transparent;
        border-color: transparent;
        border-width: 16px 0;
        color: transparent;
    }

    input[type=range]::-ms-fill-lower {
        background-color: rgb(32,32, 32);
        border: 0.2px solid #010101;
        border-radius: 2.6px;
    }

    input[type=range]::-ms-fill-upper {
        background-color: rgb(32,32, 32);
        border: 0.2px solid #010101;
        border-radius: 2.6px;
        box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
    }

    input[type=range]::-ms-thumb {
        box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
        height: 46px;
        width: 26px;
        border-radius: 3px;
        background-color: rgb(192,77, 14);
        cursor: pointer;
    }

    input[type=range]:focus::-ms-fill-lower {
        background-color: rgb(32,32, 32);
    }

    input[type=range]:focus::-ms-fill-upper {
        background-color: rgb(32,32, 32);
    }

    input[type=range]::-ms-tooltip {
        display: none;
    }

.THSAuthorityInfo {
    font-family: Arial, Verdana, sans-serif;
    font-size: 90%;
    padding-left: 10px;
    height: 49px;
    color: white;
    line-height: 45px;
}

.THSAuthorityInfoInternal {
    float: left;
    vertical-align: center;
}

.THSClose {
    background-repeat: no-repeat;
    background: url('/images/Close.png');
    background-size: cover;
    border: none;
    width: 48px;
    height: 49px;
    margin-left: 5px;
}

.THSMarginTop10 {
    margin-top: 10%;
}

/*Desktop*/
@media (min-width: 1281px) {
  
	.cashierOverlay {
	    font-size: 200%;
	}
	
	.cashierLessBalance {
         font-size: 200%;
		border-radius: 15px 0px 0px 15px;
	}
	
	.cashierInputBalance {
		font-size: 120%;
	}
	
	.cashierMoreBalance {
		font-size: 200%;
		border-radius: 0px 15px 15px 0px;
	}
	
	.cashierOkButton {
		font-size: 120%;
	}
  
}

/*smartphone portrait*/
@media only screen and (min-width : 321px) and (max-width: 480px)  {
.cashierOverlay {
		font-size: 100%;
	}
	
	.cashierLessBalance {
        font-size: 100%;
		border-radius: 5px 0px 0px 5px;
	}
	
	.cashierInputBalance {
		font-size: 70%;
	}
	
	.cashierMoreBalance {
		font-size: 100%;
		border-radius: 0px 5px 5px 0px;
	}
	
	.cashierOkButton {
		font-size: 80%;
	}
}

/*smartphone landscape*/
@media only screen and (min-width : 481px) and (max-width: 767px)  {  
  .cashierOverlay {
		font-size: 100%;
	}
	
	.cashierLessBalance {
        font-size: 100%;
		border-radius: 5px 0px 0px 5px;
	}
	
	.cashierInputBalance {
		font-size: 70%;
	}
	
	.cashierMoreBalance {
		font-size: 100%;
		border-radius: 0px 5px 5px 0px;
	}
	
	.cashierOkButton {
		font-size: 100%;
	}
  
}

/*iphone 5*/
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation : portrait) and (-webkit-device-pixel-ratio: 2){
.cashierOverlay {
		font-size: 100%;
	}
	
	.cashierLessBalance {
        font-size: 100%;
		border-radius: 5px 0px 0px 5px;
	}
	
	.cashierInputBalance {
		font-size: 70%;
	}
	
	.cashierMoreBalance {
		font-size: 100%;
		border-radius: 0px 5px 5px 0px;
	}
	
	.cashierOkButton {
		font-size: 80%;
	}
}


 /*#THSCloseSpan {
    display: none;
    visibility: hidden;
    opacity: 0;
} */