.fill { 
    min-height: 100%;
    height: 100%;
	min-width: 100%;
	width: 100%;
}

.fillMinusNav { 
    height: calc(100vh - 90px);
	width: 100%;
}

.fillWh600 { 
    min-height: 600px;
    height: 600px;
	min-width: 100%;
	width: 100%;
}

.width100p {
	width: 100%;
}

.lcr .row_heading {
	display: none;
}

.lcr .index_name {
	display: none;
}

.lcr .blank {
	display: none;
}

.columnW30 {
	width: 30%;
}

.columnW100px {
	width: 100px;
}

body{
    background-size: cover !important;
    font-family: "Lato", "Trebuchet MS", sans-serif;
}

.tooltip {
    position: relative;
    
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 700px;
    background-color: white;
    color: #5e5e5e;
    font-size: 14px;
    text-align: left;
    border-radius: 3px;
    padding: 5px 10px;
    border: 1px solid #9e9e9e;

    position: absolute;
    left: 0px;
    top: -50px;
    z-index: 1;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}



/* Custom labels: the container */
.checkcontainer {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 17px;
    -webkit-user-select: none; /* Chrome, Opera, Safari */
    -moz-user-select: none; /* Firefox 2+ */
    -ms-user-select: none; /* IE 10+ */
    user-select: none; /* Standard syntax */
}

/* Hide the browser's default checkbox */
.checkcontainer input {
  	position: absolute;
	  opacity: 0;
cursor: pointer;}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkcontainer:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkcontainer input:checked ~ .checkmark {
    background-color: #9bbb59;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkcontainer input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkcontainer .checkmark:after {
    left: 10px;
    top: 6px;
    width: 7px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Create a custom radio button */
.radiobtn{
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -13px; 
  margin-top: -6px;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.checkcontainer:hover input ~ .radiobtn{
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.checkcontainer input:checked ~ .radiobtn{
  background-color: #007bff;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radiobtn:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.checkcontainer input:checked ~ .radiobtn:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.checkcontainer .radiobtn:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.btn-primary {
    color: #fff;
    background-color: #2e5585;
    border-color: #2e5585;
    padding-left: 40px;
    padding-right: 40px;
    text-transform: uppercase;
}

.btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}




/* body {background: #f4f4f4 url('https://d143lq0dc1yhnj.cloudfront.net/static/img/crossword.png');} */
html {
    margin: 0px;
    height: 100%;
    width: 100%;
 }
 
 body {
    margin: 0px;
    min-height: calc(100vh - 212px);
    width: 100%;
 }
#root{
    height: 100%;
}
.header {
background: #2e5585;
color: #fff;
text-align: center; 
 width: 100%;
 margin-top: 15px;
 margin-bottom: 40px;
 margin-left: auto;
 padding-top: 1px;
 padding-bottom: 10px;
 border-bottom: 1px solid #ccc;
}

/* .footer {
 min-height: 80px;
 height: 80px;
 width: 100%;
 border-top: 1px solid #ccc;
 padding-top: 20px;
 margin-top: 40px;
} */

a {
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

.login-container{
    position: relative;
    width: 300px;
    margin: 80px auto;
    padding: 20px 40px 40px;
    text-align: center;
    background: #fff;
    border: 1px solid #ccc;
}

#output{
    position: absolute;
    width: 300px;
    top: -75px;
    left: 0;
    color: #fff;
}

#output.alert-success{
    background: rgb(25, 204, 25);
}

#output.alert-danger{
    background: rgb(228, 105, 105);
}


.login-container::before,.login-container::after{
    content: "";
    position: absolute;
    width: 100%;height: 100%;
    top: 3.5px;left: 0;
    background: #fff;
    z-index: -1;
    -webkit-transform: rotateZ(4deg);
    -moz-transform: rotateZ(4deg);
    -ms-transform: rotateZ(4deg);
    border: 1px solid #ccc;

}

.login-container::after{
    top: 5px;
    z-index: -2;
    -webkit-transform: rotateZ(-2deg);
     -moz-transform: rotateZ(-2deg);
      -ms-transform: rotateZ(-2deg);

}

.avatar{
    width: 100px;height: 100px;
    margin: 10px auto 30px;
    border-radius: 100%;
    border: 2px solid #2e5585;
    background-size: cover;
}

.form-box input{
    width: 100%;
    padding: 10px;
    text-align: center;
    height:40px;
    border: 1px solid #ccc;;
    background: #fafafa;
    transition:0.2s ease-in-out;

}

.form-box input:focus{
    outline: 0;
    background: #eee;
}

.form-box input[type="text"]{
    border-radius: 5px 5px 0 0;
}

.form-box input[type="password"]{
    border-radius: 0 0 5px 5px;
    border-top: 0;
}

.form-box button.login{
    margin-top:15px;
    padding: 10px 20px;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.vmiddle{
	vertical-align: middle !important;
}



.btn-info {
  background-color: #2e5585;
  border: 1px solid #2e5585;
  color: #fff;
}

.btn-info:hover {
  background-color: #05739c;
  color: #fff;
}

.table{
  border: 1px solid #ddd;
  color: #444;
  font-family: 'Lato', 'Trebuchet MS', sans-serif;
  table-layout: fixed;
}

.thead{
  white-space: nowrap;
  background-color: #2e5585;
  color: #fff;
  text-transform: uppercase;
  font-size: 11pt;
  font-weight: bold;
  border-bottom: 4px solid #9bbb59;
}

.table td, .table th{
  word-wrap: normal;
  word-break: normal;
  padding: 0.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.table tbody th{
  color: #222;
}
.navbar-blue-bg{
    background-color: #3e71af;
}
.navbar a{
    color: #142e44;
}
/* 
.navbar-fixed-top{
    background-color: #2e5585;
    background-color: #3e71af;
    border-bottom-width: 0;
}

.navbar-fixed-top .navbar-nav{
    margin:0;
}
.navbar-fixed-top .navbar-header{
    margin:0 !important;
}
.navbar-fixed-top .container-fluid{
    padding:0;
}

.navbar-fixed-top .navbar-toggle .icon-bar{
    z-index:1031;
    background-color: #fff;
}

.navbar-fixed-top .navbar-header a.navbar-brand{
    color: #ffffff;
    border-bottom: 4px solid #9bbb59;
    background-color: #3e71af;
    margin-left: 0 !important;
}

.navbar-fixed-top a{
    text-transform: uppercase;
    font-weight: bold;
    font-size: 10pt;
    line-height: 50px !important;
    padding:0 15px !important;
    display: inline-block;
    color: #142e44;
    background-color: #3e71af;
    /* border-bottom: 4px solid #3e71af; */
}

.navbar-fixed-top a:hover{
    background-color: #eee;
    line-height: 50px !important;
    padding:0 15px !important;
    /* border-bottom: 4px solid #cccccc; */
    color: #333;
} */
.btn-info:hover{
    background-color: #3e71af;
}
.btn-info:focus{
    background-color: #ffffff;
    border-color: #333333;
    color: #333333;
}
.btn-info.active.focus, .btn-info.active:focus, .btn-info.active:hover, .btn-info:active.focus, .btn-info:active:focus, .btn-info:active:hover, .open > .dropdown-toggle.btn-info.focus, .open > .dropdown-toggle.btn-info:focus, .open > .dropdown-toggle.btn-info:hover{
    background-color: #ffffff;
    border-color: #333333;
    color: #333333;
}

.test-name{
    margin-bottom: 2rem;
}

.item-title{
    margin-bottom: 2rem;
}
.test-pagination{
    border-top: 1px solid #dfdfdf;
    /* padding-top: 0.5rem; */
    /* margin-top: 2rem; */
    text-align: center;
}
ul.messagelist{
    padding: 0;
    margin: 0;
}
ul.messagelist li.success {
    display: block;
    font-weight: 400;
    font-size: 13px;
    padding: 10px 10px 10px 65px;
    margin: 0 0 10px 0;
    background: #dfd url('/static/teacher/img/icon-yes.svg') 40px 12px no-repeat;
    background-size: auto auto;
    background-size: 16px auto;
    color: #333;
}
ul.messagelist li.error {
    display: block;
    font-weight: 400;
    font-size: 13px;
    padding: 10px 10px 10px 65px;
    margin: 0 0 10px 0;
    background: rgb(255, 221, 221) url('/static/teacher/img/icon-no.svg') 40px 12px no-repeat;
    background-size: auto auto;
    background-size: 16px auto;
    color: #333;
}
img{
    max-width: 100%;
}
@media screen and (max-width:576px){
    .xs-hide{
        display: none;
    }
    .login-container{
        width: initial;
    }
}
@media screen and (max-width:768px){
    .container{
        border-radius: 0 !important;
        border-width: 0 !important;
    }
}
