html,
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background-color:white;
}
@keyframes slideRight {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.fakeloader {
  height: 4px;
  background:white;
}
.fakeloader i {
  display: block;
  background: #137cff;
  height: 100%;
  animation: slideRight 1000ms ease-out;
}
.first-row {
  border-bottom: 1px solid #cacaca;
  height: 80px;
  line-height: 80px;
  padding: 0 20px;
}
.first-row .float-right {
  margin: 0 0 0 20px;
  padding-left: 20px;
  border-left: 1px solid #efefef;
}
/*.second-row {
  background: #f8f8f8;
  height: 112px;
  line-height: 80px;
  padding: 0 20px;
  border-bottom: 30px solid white;
}
*/
.float-left {
  float: left;
}
.float-right {
  float: right;
}
.schedule-item {
  float: left;
  width: 240px;
  background: #fefefe;
  height: 90px;
  margin: 10px 5px;
  border: 1px solid #efefef;
}
.logo {
  color: #444;
  font-size: 30px;
  font-weight: 900;
}
.logo em {
  font-style: normal;
  color: #137cff;
}
.button {
  display: inline-block;
  background: #cacaca;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  text-transform: uppercase;
  position: relative;
}
.button.orange {
  background: #137cff;
  color: #fff;
}
@keyframes openFlyout {
  0% {
    height: 0;
    width: 80px;
  }
  30% {
    height: 40px;
    width: 520px;
  }
  55% {
    height: 40px;
    width: 620px;
  }
  100% {
    height: 195px;
    width: 720px;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.flyout {
  position: absolute;
  right: 0;
  top: 55px;
  background:whitesmoke;
  padding: 5px;
  flex-flow: row nowrap;
  justify-content: space-between;
  display: none;
}
.flyout.open {
  animation: openFlyout 100ms ease;
  display: flex;
  /*height: 195px;*/
}
.flyout:before {
  content: ' ';
  position: absolute;
  top: -20px;
  right: 40px;
  height: 0;
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent white;
}
.flyout a {
  text-decoration: none;
  text-transform: none;
  line-height: 30px;
  padding: 0 10px;
  color: #137cff;
  border-width: 0 1px 1px;
  border-style: solid;
  border-color: #137cff;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.flyout a:first-child {
  font-weight: bold;
  background: #137cff;
  color: white;
  border-radius: 4px 4px 0 0;
  min-height: 24px;
}
.flyout a:first-child ~ a:hover {
  background: #137cff;
  color: #fff;
}
.flyout a:first-child ~ a {
  font-size: 85%;
}
.flyout > div {
  display: flex;
  flex-flow: column nowrap;
  flex: 1;
  margin: 5px;
  /*overflow: hidden;ทำให้ความกว้างคอลั่มเท่ากัน*/
}
.flyout div > div {
  display: inline-block;
}
.flyout div > div a {
  font-weight: normal;
}
/*
section.promo {
  background: #444;
  height: 480px;
}
section.topstory {
  background: #fff;
  height: 900px;
}
*/