﻿@import url('https://fonts.googleapis.com/css?family=Open+Sans');

html {
  height: 100vh;
  width: 100%;
  font-family: 'Roboto', sans-serif, Arial;
  font-size: 1.4px;
  display: table;
}

body {
  height: 100vh;
  width: 100%;
  margin: 0px;
  font-size: 15rem;
  color: #000000;
  display: table;
  background: #ffffff;
  background-image: url('/Static/Image/bg1.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  cursor: default;
}

form {
  height: 100vh;
  width: 100%;
  margin: 0px;
}

.MainBody {
  padding: 0 35px 35px 35px;
  max-width: 800px;
}

.SectionHeading {
  padding: 30px 0 10px 0;
  font-size: 20rem;
  font-weight: 700;
}

input[type="text"], input[type="password"] {
  border: 1px solid #333333;
  padding: 5px 10px 5px 10px;
  font-family: inherit;
  font-size: 15rem;
}

input[type="text"]:focus, input[type="password"]:focus {
  border: 1px solid #0067b8;
  background: #cde5f8;
}

textarea {
  border: 1px solid #333333;
  padding: 10px 10px 10px 10px;
  font-family: inherit;
  font-size: 15rem;
}

textarea:focus {
  border: 1px solid #0067b8;
  background: #cde5f8;
}

input[type="submit"], input[type="button"], button {
  background: #ffffff;
  border: 2px solid #0067b8;
  padding: 10px 40px 10px 40px;
  color: #0000cc;
  font-family: inherit;
  font-size: 15rem;
  font-weight: bold;
}

input[type="submit"]:hover, input[type="button"]:hover, button:hover {
  cursor: pointer;
  border: 2px solid #cc0000;
  color: #cc0000;
  text-decoration: underline;
}

input[type="submit"]:disabled, input[type="button"]:disabled, button:disabled {
  cursor: default;
  text-decoration: none;
  border: 2px solid #999999;
  color: #999999;
}

a {
  color: #0000cc;
}

a:hover {
  color: #cc0000;
}

a[disabled="disabled"] {
  color: #aaaaaa;
}

.progress {
  color: #ffffff; /*#ecf0f1;*/
  font-family: "Open Sans";
  font-weight: 800;
  font-size: 14rem;
  margin: 0px 0;
}

.progress.progress-outside {
  background: #dddddd; /*#bdc3c7;*/
  padding: 0px;
  border-radius: 5px;
  overflow:hidden;
}

.progress-inside {
  background: #3498db;
  border-radius: 5px;
  height: 22rem;
  transition: width 1s ease-out;
}

.progress-inside .val {
  padding: 5px;
  position: relative;
  vertical-align: middle;
}

.TableList {
  border: 0px;
  border-spacing: 0px;
  border-collapse: separate;
  box-shadow: 2px 2px 5px #666666;
  border: 1px solid #000000;
  color: #000000;
  background: #ffffff;
  width: 100%;
}

.TableList th {
  padding: 0px;
  text-align: left;
  vertical-align: top;
  padding: 12px 15px 12px 15px;
  border-bottom: 1px solid #000000;
  border-right: 1px solid #000000;
  background: #dddddd;
}

.TableList th:last-of-type {
  border-right: 0px;
}

.TableList td {
  padding: 12px 15px 12px 15px;
  border-bottom: 1px solid #000000;
  border-right: 1px solid #000000;
  vertical-align: top;
}

.TableList tr:last-child td {
  border-bottom: 0px;
}

.TableList tr td:last-child {
  border-right: 0px;
}

.TableList1 {
    border-radius: 5px;
    overflow: hidden;
    border:1px solid #000000;
    border-spacing: 0;
}
.TableList1 th {
    padding: 8px 14px 8px 14px;
    font-weight:bold;
    background: #d9d9d9;
    border:1px solid #000000;
    text-align:left;
}
.TableList1 td {
    padding: 8px 14px 8px 14px;
    background: #f9f9f9;
    border:1px solid #000000;
    text-align:left;
}

.MainHeader {
  /*background: #dddddd;*/
  /*border-bottom: 2px solid #3d96eb;*/
  padding: 25px 35px 15px 35px;
  max-width: 800px;
}

.MainTitle {
  font-size: 30rem;
}

.MainHeader div:nth-child(1) {
  display: inline-block;
  font-weight: bold;
}

.MainHeader div:nth-child(2) {
  float: right;
  display: inline-block;
  text-align: right;
}

.QuestionAnswer, .CorrectAnswer, .IncorrectAnswer {
  padding: 2px 0px 0px 0px;
  display: table-row;
}

.QuestionAnswer input[type="radio"], .CorrectAnswer input[type="radio"], .IncorrectAnswer input[type="radio"] {
  opacity: 0;
}

.QuestionAnswer input[type="checkbox"], .CorrectAnswer input[type="checkbox"], .IncorrectAnswer input[type="checkbox"] {
  opacity: 0;
}

.QuestionAnswer label, .CorrectAnswer label, .IncorrectAnswer label {
  position: relative;
  display: table-cell;
  padding: 2px 0px 8px 38px;
}

.QuestionAnswer label::before, .QuestionAnswer label::after, .CorrectAnswer label::before, .CorrectAnswer label::after, .IncorrectAnswer label::before, .IncorrectAnswer label::after {
  position: absolute;
  content: "";
  display: table-cell;
}

.QuestionAnswer label::before, .CorrectAnswer label::before, .IncorrectAnswer label::before {
  height: 18rem;
  width: 18rem;
  border: 2px solid #3d96eb;
  border-radius: 5px;
  background: #ffffff;
  left: 0px;
  top: 0px;
}

.QuestionAnswer label::after, .CorrectAnswer label::after, .IncorrectAnswer label::after {
  height: 6px;
  width: 10px;
  left: 6px;
  top: 5px;
}

.QuestionAnswer input[type="radio"] + label::after, .CorrectAnswer input[type="radio"] + label::after, .IncorrectAnswer input[type="radio"] + label::after {
  content: none;
}

.QuestionAnswer input[type="checkbox"] + label::after, .CorrectAnswer input[type="checkbox"] + label::after, .IncorrectAnswer input[type="checkbox"] + label::after {
  content: none;
}

.QuestionAnswer input[type="radio"]:checked + label::after, .CorrectAnswer input[type="radio"]:checked + label::after {
  font-family: FontAwesome;
  font-size: 13rem;
  content: "\f00c";
}

.QuestionAnswer input[type="checkbox"]:checked + label::after, .CorrectAnswer input[type="checkbox"]:checked + label::after {
  font-family: FontAwesome;
  font-size: 13rem;
  content: "\f00c";
}

.IncorrectAnswer input[type="radio"]:checked + label::after {
  font-family: FontAwesome;
  font-size: 13rem;
  content: "\f00d";
  color: #cc0000;
  top: 4px;
  left: 7px;
}

.IncorrectAnswer input[type="checkbox"]:checked + label::after {
  font-family: FontAwesome;
  font-size: 13rem;
  content: "\f00d";
  color: #cc0000;
  top: 4px;
  left: 7px;
}

.IncorrectAnswer input[type="radio"]:not(:checked) + label::after {
  content: "";
}

.IncorrectAnswer input[type="checkbox"]:not(:checked) + label::after {
  content: "";
}

.IncorrectAnswer input[type="radio"]:checked + label::before {
  border: 2px solid #800000;
}

.IncorrectAnswer input[type="checkbox"]:checked + label::before {
  border: 2px solid #800000;
}

.CorrectAnswer input[type="radio"]:not(:checked) + label {
  color: #008000;
  text-decoration: underline;
  font-weight: bold;
  font-style: italic;
}

.CorrectAnswer input[type="checkbox"]:not(:checked) + label {
  color: #008000;
  text-decoration: underline;
  font-weight: bold;
  font-style: italic;
}

.CorrectAnswer input[type="radio"]:checked + label {
  color: #008000;
  font-weight: bold;
}

.CorrectAnswer input[type="checkbox"]:checked + label {
  color: #008000;
  font-weight: bold;
}

.IncorrectAnswer input[type="radio"]:checked + label {
  color: #800000;
}

.IncorrectAnswer input[type="checkbox"]:checked + label {
  color: #800000;
}

.QuestionAnswer input[type="radio"] + label {
  cursor: pointer;
}

.QuestionAnswer input[type="checkbox"] + label {
  cursor: pointer;
}

.QuestionAnswer input[type="radio"]:hover + label {
  color: #0000cc;
}

.QuestionAnswer input[type="checkbox"]:hover + label {
  color: #0000cc;
}

.Question {
  margin: 18px 0px 0px 0px;
  padding: 15px 18px 15px 18px;
  background: #f6f6f6;
  border: 2px solid #3d96eb;
  border-radius: 0px;
}

.Question div:nth-child(1) {
  padding: 0px 0px 10px 0px;
  font-weight: bold;
}

.ModuleContent {
  padding: 15px 0px 20px 0px;
}

.ModuleContent h3 {
  font-size: 20rem;
  font-weight: normal;
  margin: 0px;
  padding: 0px 0px 0px 0px;
  color: #0000cc;
}

.ModuleContent p {
  margin: 0px;
  padding: 15px 0px 0px 0px;
}

.MainMenuIcon {
  padding: 0px 1px 0px 15px;
}

.Video {
  margin: 0px 0px 0px 0px;
  border: 4px solid #333333;
  padding: 0px;
  display: block;
}

.CourseOutline {
  display: inline-block;
  box-shadow: 0px 2px 2px #666666;
  border: 1px solid #000000;
  width: 300px;
}

.CourseOutlineHeading {
  background: #cccccc;
  padding: 12px 15px 12px 15px;
  border-bottom: 1px solid #aaaaaa;
  font-weight: bold;
}

.CourseOutlineItem {
  border-bottom: 1px dotted #bbbbbb;
  background: #ffffff;
}

.CourseOutlineCurrentItem {
  background: #e1f7f9;
}

.CourseOutlineItem div:nth-child(1) {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  padding: 12px 15px 12px 15px;
  font-size: 20px;
  color: #aaaaaa;
}

.CourseOutlineCurrentItem div:nth-child(1), .CourseOutlineCompletedItem div:nth-child(1) {
  color: #008000;
}

.CourseOutlineItem div:nth-child(2) {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  padding: 15px 15px 12px 0px;
  color: #aaaaaa;
  width: 230px;
}

.CourseContent {
  display: inline-block;
  vertical-align: top;
  width: 650px;
  padding: 0px 0px 0px 20px;
}

.CourseTitle {
  font-size: 24rem;
  font-weight: bold;
  padding:4px 0px 0px 0px;
}

.ModuleTitle {
  padding: 0px 0px 10px 0px;
  border-bottom: 1px dotted #333333;
}

.SignInBox {
  display: inline-block;
  box-shadow: 0px 2px 2px #666666;
  border: 1px solid #000000;
}

.SignInBoxTitle {
  background: #cccccc;
  padding: 15px 25px 15px 25px;
  border-radius: 0px;
  text-align: left;
  border-bottom: 1px solid #aaaaaa;
  font-weight: bold;
}

.SignInBoxField input[type="text"], .SignInBoxField input[type="password"] {
  width: 290px;
  margin: 0px 0px 3px 0px;
}

.SignInBoxField {
  margin: 15px 0px 0px 0px;
  width: 312px;
}

.SignInBoxContent {
  display: inline-block;
  background: #ffffff;
  padding: 10px 25px 30px 25px;
  border-radius: 0px;
}

.SignInBoxDialogError, .CourseDialogError {
  margin: 15px 0px 0px 0px;
  padding: 12px 15px 18px 15px;
  border-radius: 0px;
  color: #cc0000;
  border: 2px solid #cc0000;
  background: #ffffff;
}

.SignInBoxDialogSuccess, .CourseDialogSuccess {
  margin: 15px 0px 0px 0px;
  padding: 12px 15px 18px 15px;
  color: #008000;
  border: 2px solid #008000;
  border-radius: 0px;
  background: #ffffff;
}

.SignInBoxDialogError, .SignInBoxDialogSuccess {
  width: 282px;
}

.CourseDialogError, .CourseDialogSuccess {
  max-width: 100%;
}

.SignInDialogIcon, .CourseDialogIcon {
  display: inline-block;
  padding: 0px 15px 0px 0px;
  font-size: 40rem;
  vertical-align: top;
}

.SignInDialogText {
  display: inline-block;
  padding: 6px 0px 0px 0px;
  vertical-align: top;
  width: 223px;
}

.CourseDialogText {
  display: inline-block;
  padding: 6px 0px 0px 0px;
  vertical-align: top;
}

.SectionContent li {
  padding: 0 0 10px 0;
}

.SectionContent li:last-child {
  padding: 0 0 0 0;
}

details summary {
    padding:14px 10px 14px 20px;
    cursor:pointer;
    list-style:none;
}
details[open] summary {
    font-weight:bold;
    border-bottom: 1px solid #bbbbbb;
}
details summary::after {
    font-family: 'Font Awesome 5 Free';
    content: '\f078';
    font-weight: 600;
    color: #888888;
    float: right;
    margin: 0 10px 0 0;
}
details[open] summary::after {
    content: '\f077';
}
details summary:hover::after {
    color: #000000;
}
details > div {
    padding: 0 20px 0 20px;
}
details summary:hover {
    background: #f9f9f9;
    text-decoration: underline;
}
