html, body {
    font-family: 'Open Sans', sans-serif;
/*background-color: rgb(255, 255, 255);/*rgb(254, 221, 88)*/
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

table {
    opacity: 0.9;
}

table th {
    font-size: 10px;
 }

.raleway-font {
    font-family: 'Raleway', sans-serif;
}

.display-font {
    font-family: 'Black Ops One', cursive;
}

.tag-as-btn {
    cursor: pointer;
    -webkit-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.75);
    box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.75);
}

.text-cancelled {
    text-decoration: line-through;
}

.animcolor {
  background-color: rgb(221, 255, 221);
  cursor: pointer;
  -webkit-transition: background-color 3s ease-out;
  -moz-transition: background-color 3s ease-out;
  -o-transition: background-color 3s ease-out;
  transition: background-color 3s ease-out;
}

input[type=range] {
    /*removes default webkit styles*/
    -webkit-appearance: none;
    
    /*fix for FF unable to apply focus style bug */
    border: 1px solid white;
    
    /*required for proper track sizing in FF*/
    width: 100%;
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px;
    background: #ddd;
    border: none;
    border-radius: 3px;
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #303e45;
    margin-top: -4px;
}
input[type=range]:focus {
    outline: none;
}
input[type=range]:focus::-webkit-slider-runnable-track {
    background: #ccc;
}

input[type=range]::-moz-range-track {
    width: 100%;
    height: 5px;
    background: #ddd;
    border: none;
    border-radius: 3px;
}
input[type=range]::-moz-range-thumb {
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #303e45;
}

/*hide the outline behind the border*/
input[type=range]:-moz-focusring{
    outline: 1px solid white;
    outline-offset: -1px;
}

input[type=range]::-ms-track {
    width: 100%;
    height: 5px;
    
    /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
    background: transparent;
    
    /*leave room for the larger thumb to overflow with a transparent border */
    border-color: transparent;
    border-width: 6px 0;

    /*remove default tick marks*/
    color: transparent;
}
input[type=range]::-ms-fill-lower {
    background: #777;
    border-radius: 10px;
}
input[type=range]::-ms-fill-upper {
    background: #ddd;
    border-radius: 10px;
}
input[type=range]::-ms-thumb {
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #303e45;
}
input[type=range]:focus::-ms-fill-lower {
    background: #888;
}
input[type=range]:focus::-ms-fill-upper {
    background: #ccc;
}

.ueber {
    display: none;
}

#map {
    width: 100%;
    height: 120px;
}

.striped {
    background-color: rgb(229, 229, 229) !important;
}

.marqueewrap {
  position: relative;
  overflow: hidden;
  height: 30px;
  /*width: 100px;*/
  border: 1px solid white;
}

.marqueewrap p {
  position: absolute;
  margin: 0;
  line-height: 30px;
  white-space: nowrap;
  animation: marquee 8s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.scrollstops {
    overflow-y: hidden;
    overflow-x: auto;
    white-space: nowrap;
}

.no-shadow {
    box-shadow:none !important;
}

@media only screen and (max-width: 450px) {

}
