.palette {
    width: 456px;
    height: 38px;
    margin: 3px;
    padding: 3px;
    display: table;
    background-color: #FFF;
}

.palette .sample {
    width: 35px;
    height: 35px;
    margin: 3px;
    position: relative;
    border: 1px solid #DDD;
    float: left;
    transition: all 0.2s;
    cursor: pointer;
}

.palette .sample.selected {
    border: 2px solid rgb(255, 0, 0);
}

.palette .sample.noAvailable {
    /*  display: none;*/
}

.palette .sample:hover {
    transform: scale(1.2);
    border-color: #222;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.inputfile {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

.inputfile + label {
    font-size: 1.25em;
    font-weight: 700;
    color: white;
    background-color: #e33d26;
    display: inline-block;
    padding: 12px;
    margin-top: 15px;
    margin-bottom: 5px;
}

.inputfile:focus + label,
.inputfile + label:hover {
    background-color: rgb(204, 0, 0);
}

.inputfile + label {
	cursor: pointer; /* "hand" cursor */
}


.inputfile:focus + label {
	outline: 1px dotted rgb(100, 5, 5);
	outline: -webkit-focus-ring-color auto 5px;
}

.inputfile + label * {
	pointer-events: none;
}

#uploadBtn:disabled,
button[disabled]{
  border: 1px solid #999999 !important;
  background: #666666 !important;
}

.cartItemNumber {
    color: #c3311e;
    float: right;
    font-weight: bold;
    font-size: small;
    vertical-align: top;
    margin-top: -12px;
}

.loader {
    display:inline-block;
    width: 22px;
    height:22px;
    border: 5px solid #c7c7c7;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    border-top: 5px solid #555;
    border-radius: 50%;
}
  
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.checkmark {
    display:inline-block;
    width: 22px;
    height:22px;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkmark_no_rotation {
    display:inline-block;
    width: 22px;
    height:22px;
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.negative_checkmark_circle {
    position: absolute;
    width:22px;
    height:22px;
    background-color: rgb(235, 20, 0);
    border-radius:50%;
    left:0;
    top:0;
    padding-top: 2px;
    font-weight: bold;
    font-size: larger;
    color: #FFF;
    text-align: center;
}

.warning_checkmark_circle {
    position: absolute;
    width:22px;
    height:22px;
    background-color: rgb(255, 200, 0);
    border-radius:11px;
    left:0;
    top:0;
    padding-top: 2px;
    font-weight: bold;
    font-size: larger;
    color: #FFF;
    text-align: center;
}

.checkmark_circle {
    position: absolute;
    width:22px;
    height:22px;
    background-color: green;
    border-radius:11px;
    left:0;
    top:0;
}

.checkmark_stem {
    position: absolute;
    width:3px;
    height:9px;
    background-color:#fff;
    left:11px;
    top:6px;
}

.checkmark_kick {
    position: absolute;
    width:3px;
    height:3px;
    background-color:#fff;
    left:8px;
    top:12px;
}
.btns-cart{
    width: 100%;
}
.pay-button {
    padding: 10px;
    float: right;
}

.pay-button.disabled{
    color: #605656;
    cursor: not-allowed;
    text-decoration: none;
    pointer-events: none;
    background-color: darkgray;
}

.tbl-cart.compact tr {
    height: 20px;
}