@import url('https://fonts.googleapis.com/css?family=Montserrat:500');

table#tbl_book {
  empty-cells:show;
}

input[type="radio"] {
  margin-right: 5px;
}

/* this will take effect for any screen smaller than 760px */
@media
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px) {
  div#div_book{ 
    display: block; 
    column-count:2;
    -moz-column-count:2;
    -webkit-column-count:2;
  }

  /* Force table to not be like tables anymore th, td, */
	table#tbl_book, tr#tr_book, td#td_book { 
    display: block; 
  }
  
  th#th_book {
    visibility: none;
    display: none;
  }
}

body {
    font-family: 'Montserrat', sans-serif;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  
  small {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.4);
  }
  
  h1 {
    text-align: center;
    padding: 50px 0;
    font-weight: 100;
    margin: 0;
    letter-spacing: -1px;
    color: inherit;
    font-size: 40px;
  }
  
  h2 {
    text-align: center;
    font-size: 30px;
    margin: 0;
    font-weight: 100;
    color: inherit;
    padding: 50px;
  }
  
  section {
    width: 100%;
  }

  button {
    padding: 9px 25px;
    color: #fff;
	background-color: rgb(206, 110, 0);
	border: rgb(226, 130, 20);
	border-radius: 50px;
	cursor: pointer;
    transition: all 0.3s ease 0s;
    text-align: right;
}

button:hover {
	background-color: rgba(206, 110, 0, 0.7);
}
  
button[disabled]{
  background-color: #cccccc;
  color: #666666;
}


  /* NAVIGATION */
/* Right-aligned section inside the top navigation */
.topnav-right {
    float: right;
    padding-right: 50px;
  }
  

  nav {
    width: 80%;
    margin: 0 auto;
    background: rgb(212, 212, 212);
    padding: 10px 0;
    box-shadow: 0px 5px 0px rgb(105, 105, 105);
  }
  nav ul {
    list-style: none;
  }
  nav ul li {
    display: inline-block;
    text-align: left;
  }
  nav ul li a {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: rgb(105, 105, 105);
    font-weight: 300;
    text-transform: none;
    margin: 0 10px;
  }
  nav ul li a,
  nav ul li a:after,
  nav ul li a:before {
    transition: all .5s;
  }
  nav ul li a:hover {
    color: #555;
    background-color: rgba(255, 255, 255, 0.3);
  }
  
  
  /* stroke */
  nav.stroke ul li a,
  nav.fill ul li a {
    position: relative;
  }
  nav.stroke ul li a:after,
  nav.fill ul li a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    background: rgb(206, 110, 0);
    height: 1px;
  }
  nav.stroke ul li a:hover:after {
    width: 100%;
  }
  
  nav.fill ul li a {
    transition: all 2s;
  }
  
  nav.fill ul li a:after {
    text-align: left;
    content: '.';
    margin: 0;
    opacity: 0;
  }
  nav.fill ul li a:hover {
    color: #fff;
    z-index: 1;
  }
  nav.fill ul li a:hover:after {
    z-index: -10;
    animation: fill 1s forwards;
    -webkit-animation: fill 1s forwards;
    -moz-animation: fill 1s forwards;
    opacity: 1;
  }