body 
{
font-family: 'Roboto', sans-serif;
}
.attention {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
    animation: pulse-white 2s infinite;
}

@keyframes pulse-white {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}
@-webkit-keyframes pulse-white {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}
#display_seconds{
  width: 20px;
  border: none;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  }
  #display_minutes{
    width: 10px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    color:#fff;
  }
.btnn {
    display: inline-block;
    /* padding: 6px 12px; */
    margin:2px;
    width: 25px;
    height: 25px;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}
.btnn.focus, .btnn:focus, .btnn:hover {
    color: #fff;
    text-decoration: none;
}
/*.jst-hours {
  float: left;
}
.jst-minutes {
  float: left;
}
.jst-seconds {
  float: left;
}
.jst-clearDiv {
  clear: both;
}

.bodyTimeoutBackground {
  background: white;
}*/

/*.timeout {
  color: red;
  -webkit-animation-name: blinker;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(1.0,0,0,1.0);
  -webkit-animation-duration: 1s;
}
@-webkit-keyframes blinker {
  from { opacity: 1.0; }
  to { opacity: 0.0; }
}*/

fieldset.scheduler-border {
    border: 1px groove #F5F5F5 !important;
    padding: 0 1.4em 1.4em 1.4em !important;
    margin: 0 0 1.5em 0 !important;
    -webkit-box-shadow:  0px 0px 0px 0px #000;
    box-shadow:  0px 0px 0px 0px #000;
}

legend.scheduler-border {
        font-size: 1.2em !important;
        font-weight: bold !important;
        text-align: left !important;
        width:auto;
        padding:0 10px;
        border-bottom:none;
}
.mn{
margin: -9px 3px 0 0px;
border-left: 1px solid #333;
border-right: 1px solid #333;
}
.col-lg-1 {
     width: 13.333333%;height: 25px;border-radius: 5px;border: 1px solid grey;
}
.bb{
  background: white;border:1px solid grey;margin:5px;width: 13.333333%;height: 25px;border-radius: 5px;border: 1px solid grey;
}
.not-answered{
  background-color:#e87777;
  color:#fff;
  }
  .answered{
  background-color: #0D47A1;
  color:#fff;
  }
  .review{

  background-color: #FDD835;
  color:#000;
  }
  /* .not-visited{
  background-color: #BDBDBD;
  color:#fff;
  } */
 .not-visited{
  background-color: #868686;
  color:#fff;
  }

  label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 500;
    cursor:pointer;
    margin-left:15px;
}
.btn1{
  padding: 6px 8px;
}
.not-answered-small{
  padding: 6px 8px;
  background-color: #e87777;
}
.answered-small{
  padding: 6px 8px;
  background-color: #0D47A1;
}
.review-small{
  padding: 6px 8px;
  background-color: #FDD835;
}
.not-visited-small{
  padding: 6px 8px;
  background-color: #868686;
}




.con {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 18px;
  padding-top: 2.5px;
  padding-bottom: 2.5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.con input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark1 {
  position: absolute;
  top: 2px;
  left: 2px;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a  background color */
.con:hover input ~ .checkmark1 {
  background-color: #ccc;
}

/* When the checkbox is checked, add a  background */
.con input:checked ~ .checkmark1 {
  /* background-color: #2196F3 ; */
  background-color:#0D47A1;
}

/* Create the checkmark1/indicator (hidden when not checked) */
.checkmark1:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark1 when checked */
.con input:checked ~ .checkmark1:after {
  display: block;
}

/* Style the checkmark1/indicator */
.con .checkmark1:after {
  left: 10px;
  top: 6px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.loader_ajax{
  position:fixed;left:0;top:0;z-index:999999;
  width:100%;
  height:100%;
  background:rgba(255,255,255,0.5) url('../icon/loader.svg') no-repeat center;
}
#ajax_loader{
  display:none;position:fixed;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:rgba(255,255,255,0.5) url('icons/loader.svg') no-repeat center;
}
.multiQuestion{
  cursor: pointer;
  font-size: 18px;
  padding-top: 2.5px;
  padding-bottom: 2.5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.multiQuestionButton{
  cursor: pointer;
  font-size: 18px;
  margin-top: 7px;
  margin-bottom: 13px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
ul{
  list-style: none !important;
}
li{
  margin-left: 35px;
}