

.table-forza{
    
}

.table-forza thead {
    background:         #EEEEEE;
}




.pricetable-normal {
	border:             solid 1px #007700;
	color:              #007700;	
	text-shadow:        0 1px 0 rgba(100, 255, 100, 0.5);
	background-repeat:  repeat-x;
	background-image:   linear-gradient(to bottom, #DDFFDD, #AAEEAA);
}

.pricetable-special {
	border:             solid 1px #775500;
	color:              #775500;
	text-shadow:        0 1px 0 rgba(100, 255, 0, 0.5);
	background-repeat:  repeat-x;   
	background-image:   linear-gradient(to bottom, #FFDD00, #FFEE00);
}

.pricetable-closed {
	color:              #777;
	text-shadow:        0 1px 0 rgba(255, 255, 255, 0.5);
	background-image:   linear-gradient(to bottom, #eeeeee, #dddddd);
	background-repeat:  repeat-x;
	border-color:       #555555 #444444 #666666 #777777;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #33AAEE;
}

input:focus + .slider {
  box-shadow: 0 0 1px #33AAEE;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.vertical-th {
  transform: rotate(-90deg);
}


.bg-gold{
    background:     #FFCC00;   
}


.product-online0{
    background:         #FF0000;
    border-radius:      50%;
    width:              10px;
    height:             10px;
    position:           relative;
    float: right !important;
}

.product-online1{
    background:         #00CC00;
    border-radius:      50%;
    width:              10px;
    height:             10px;
    position:           relative;
    float: right !important;
    
}




.btn-order {
  
    background-image: radial-gradient(100% 100% at 100% 0, #77CCFF 0, #55EEFF 100%);
    border: 0;
    border-radius: 6px;
      
    box-sizing: border-box;
    color: #003355;
    cursor: pointer;
    justify-content: center;
    overflow: hidden;
    transition: box-shadow .15s,transform .15s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    will-change: box-shadow,transform;
}

.btn-order:focus {
    
    box-shadow: #3c4fe0 0 0 0 1.5px inset, rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #3c4fe0 0 -3px 0 inset;
    
}

.btn-order:hover {
    color:#FFF;
    box-shadow: rgba(45, 35, 66, .4) 0 4px 8px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #3c4fe0 0 -3px 0 inset;
    transform: translateY(-2px);
}

.btn-order:active {
  box-shadow: #3c4fe0 0 3px 7px inset;
  transform: translateY(2px);
}


.btn-gold {
	background-image:   linear-gradient(to bottom, #FFCC00, #FFDD00);
	border:             solid 1px #FFCC00;
}

.btn-red {
	background-image:   linear-gradient(to bottom, #FF5555, #EE5555);
	border:             solid 1px #FF0000;
}

.btn-deleted {
	background-image:   linear-gradient(to bottom, #FFF, #EEE);
	border:             solid 1px #AAA;
}


.blink {
  animation: blink-animation 1s steps(5, start) infinite;
  -webkit-animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
