
/*carpark css code*/
/* Table Styles */
table#carpark  {
text-align:center;
border-collapse: collapse;
border-spacing:50px;
background:#000 url(firstupossite.jpg) repeat top center;
color: #000;
opacity: 1;
width:90%; 
margin-left:5%; 
margin-right:5%;
}



table#carpark th, table#carpark  td { text-align:center; left:5%; right:5%;top:5%;bottom:5%}
table#carpark tbody {font-size: .9em; line-height:15px;}
table#carpark thead { font-size:.8em; line-height:12px; background-color: #e79300; text-transform: uppercase;  font-weight: 900;}
table#carpark thead th
 {
color:rgba(0,0,0,.7);
 padding:10px;
 vertical-align: bottom;}

table#carpark thead th:nth-child(1)
 {width:25%;
 padding-left:20px;}
 
 table#carpark thead th:nth-child(2)
 {
 width:40%;
 padding-left:20px;
 }
 
 table#carpark thead th:nth-child(3)
 {
  width:10%;
 }
table#carpark thead th:nth-child(4)
 {
  width:10%;
 }
 table#carpark thead th:nth-child(5)
 {width:30%;
 }
 table#carpark thead th:nth-child(6)
 {width:30%;
 }
 
 table#carpark thead th:nth-child(7)
 {width:5%;
 }


 
 table#carpark tbody { font-size: .9m; line-height: 15px}
 table#carpark tbody  tr
  {
  border-top : 1px solid rgba(248,220,174,.8));
  transition: background-color .6s;
   }

 table#carpark tbody  tr:nth-child(odd) {background-color: rgba(0,0,0,.15); } /*rgba(255,255,255,.15)*/
 
 table#carpark tbody  tr:hover {background-color: rgba(231,147,0,.6); }
  
 table#carpark tbody  td {padding: 12px; }
 /*rgba(255,255,255,.2)*/
 table#carpark tbody td:nth-child(2)
 {
 background-color: rgba(0,0,0,.15);
 font-size: 0.99m;
 font-weight: 400;}
 
 table#carpark tfoot { font-size: .8m; }
 table#carpark tfoot  tr {border-top : 2px solid #e79300; }
 table#carpark tfoot  td {
 /* color: rgba(255,255,216,.6)); */
 color: rgba(0,0,34,.6));
 text-align: left;
 line-height: 15px;
 padding: 15px 20px;
  }
  
/* button */
.glow-on-hover {
    width: 220px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #000
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}



/* class applies to select element itself, not a wrapper element */
.select-css {
  display: block;
  font-size: 12px;
  font-family: sans-serif;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  padding: .6em .5em .5em .8em;
  width:100%;
  max-width: 100%; /* useful when width is set to anything other than 100% */
  box-sizing: border-box;
  margin: 0;
  border: 1px solid #aaa;
  box-shadow: 0 1px 0 1px rgba(0,0,0,.04);
  border-radius: .5em;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #000;
  
  
  background-repeat: no-repeat, repeat;
  /* arrow icon position (1em from the right, 50% vertical) , then gradient position*/
  background-position: right .7em top 50%, 0 0;
  /* icon size, then gradient */
  background-size: .65em auto, 100%;
}
/* Hide arrow icon in IE browsers */
.select-css::-ms-expand {
  display: none;
}
/* Hover style */
.select-css:hover {
  border-color: #888;
}
/* Focus style */
.select-css:focus {
  border-color: #aaa;
  /* It'd be nice to use -webkit-focus-ring-color here but it doesn't work on box-shadow */
  box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7);
  box-shadow: 0 0 0 3px -moz-mac-focusring;
  color: #fff; 
  outline: none;
}

/* Set options to normal weight */
.select-css option {
  font-weight:normal;
   color: #fff;
}

/* Disabled styles */
.select-css:disabled, .select-css[aria-disabled=true] {
  color: graytext;
 
}

.select-css:disabled:hover, .select-css[aria-disabled=true] {
  border-color: #aaa;
}



@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}




  
/* Media Queries */
@media screen and (max-width: 450px) {
	h1 { font-size: 34px; line-height: 36px; padding-left: 15px; }
	article { margin: 10px 15px; }
	table#carpark { font-size: .9em; }
}