/*
*	Site: TesTex School
*	Dev: Dan Schwartz
*	Date: 10/7/2020
*	Notes: Overall style sheet for the TesTex School which includes modules and test/quizes
*
*/

/* Clear and refresh css  */


/* Overall */
html {}

body {
	/*background: url("../content/TesTexDotsbackground.4251ebc6.png");
	background-repeat: no-repeat;
  	-webkit-background-size: cover;
 	-moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    */
  background-color: #efefef !important;
}
header {
	height: auto;
    width: 100%;
    background-color: #ccc;
    margin-left: auto;
    margin-right: auto;
    background: #dddddd;
    padding: 0px !important;
}
header img {
	float:left;         
}
header h1 {
	float: left;
    padding-top: 80px;
	color: #833;
	font-size: 1em;
}
 footer {
	display: block;
    position: fixed;
    bottom: 0px;
    background: black;
    width: 100%;
    left: 0px;
    height: 22px;
    z-index: 30;
 }
 footer p {
	text-align: center;
    color: #fff;
 }

.push {
	display: block;
    position: relative;
    bottom: 0px;
    width: 100%;
    left: 0px;
    height: 55px;
}
/* class and ID list */
#ModuleList {}
#ModuleCreateForm{}
ul {
	list-style: none;
}
div {
	padding:5px !important;
}


tr {
  text-align: center;
}
#SIDEBAR li {
  cursor:pointer;
  color:blue;
}
#SIDEBAR li:hover {
  text-decoration: underline;
  -webkit-transition: .4s;
  transition: .4s;
}



/* BOOTSTRAP FIXES */
.btn-outline-dark{
	    background-color: whitesmoke !important;
}
.btn-outline-dark:hover {
	background-color: #343a40 !important;
}
button:disabled {
  cursor: not-allowed;
  pointer-events: all !important;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
   
  }
  
  input:focus + .slider {
    
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }

  #SCREEN {
    padding: 20px !important;
    border-radius: 5px;
    background-color: #fff;
    -moz-box-shadow: 6px 4px 5px -2px #ccc;
    -webkit-box-shadow: 6px 4px 5px -2px #ccc;
    box-shadow: 6px 4px 5px -2px #ccc;
  }
  .active {
    color:black !important;
    transition: 300ms;
    padding: 5px;
    background-color: #fff;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    margin-right: -20px;
    -moz-box-shadow: 6px 4px 5px -2px #ccc;
    -webkit-box-shadow: 6px 4px 5px -2px #ccc;
    box-shadow: 6px 4px 5px -2px #ccc;
  }

  .btn2 {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }
  .form-control2
  {
    display: inline-block;
    width: 23%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }