/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/
@media (min-width: 320px) and (max-width: 480px) {
    .login {
        background-size: auto;
    }
    .form-signin h1 img {
        width: 355px;
    }
}

/* 
  ##Device = Low Resolution table.schedulingts, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {
 
}

/* 
  ##Device = table.schedulingts, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) {
    .login {
        background-size: auto;
    }
}

/* 
  ##Device = table.schedulingts, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {

}

/* 
  ##Scheduling Calendar
*/
@media (max-width: 60em) {
    table.scheduling thead tr th .long {
      display: none;
    }
    table.scheduling thead tr th .short {
      display: block;
    }
    table.scheduling tbody tr td.hour span {
      transform: rotate(270deg);
      -webkit-transform: rotate(270deg);
      -moz-transform: rotate(270deg);
    }
}
@media (max-width: 27em) {
    table.scheduling thead tr th {
        font-size: 65%;
    }
    table.scheduling thead tr th .day {
        display: block;
        font-size: 1.2em;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        margin: 0 auto 5px;
        padding: 5px;
    }
    table.scheduling thead tr th .day.active {
        background: #d1d5db;
        color: #626E7E;
    }
    table.scheduling tbody tr td.hour {
        font-size: 1.7em;
    }
    table.scheduling tbody tr td.hour span {
        transform: translateY(16px) rotate(270deg);
        -webkit-transform: translateY(16px) rotate(270deg);
        -moz-transform: translateY(16px) rotate(270deg);
    }
}