* {
   font-family: Arial, Helvetica, sans-serif;
}

a, a:hover { 
color: #000;
}

.grid-container {
  display: grid; /* This is a (hacky) way to make the .grid element size to fit its content */
  overflow: auto;
  height: 550px; 
  width: 100%;
}
.grid {
  display: flex;
  flex-wrap: nowrap;
}
.grid-col {
  width: 150px;
  min-width: 150px;
}

.grid-item--header {
  height: 65px; /* poyor nemuzu menit posunul bych reyervace */
  min-height: 65px;
  position: sticky;
  position: -webkit-sticky;
  background: white;
  top: 0;
  z-index:1000;
}

.grid-item--header p {
    margin-top: 10px;
}

.grid-col--fixed-left {
  position: sticky;
  left: 0;
  z-index: 9998;
  background: white;
}
.grid-col--fixed-right {
  position: sticky;
  right: 0;
  z-index: 9998;
  background: white;
}

.grid-item {
  height: 30px;
  border-right: 1px solid gray;
  border-bottom: 1px solid gray;
  text-align: center
}

div.active { 
    background-color: #337ab7;
    color: #fff;
}

.active-row {
    background-color: #ddd;
}

.active-row-click {
    background-color: #aaa;
}

.podmenu { 
    margin-top: 100px;
}

@media (max-width: 1366px) {

.nav>li>a {
    padding: 15px 5px;
}
}

legend { margin-top: 20px; }

.basket {
    background-color: red;
    color: white;
}

fieldset {
  border: 1px solid #eee;
  
 
    
  }
  
  legend {
      border-bottom: none;
      width: auto;
  }  
  
.form-control {
   border-radius: 0;  
   height: 30px;   
  }