body {
    /*font-family: Georgia, serif;*/
}

div#maincontent {
    margin-left: 10px;
    transition: 0.4s;
}

.shift#maincontent {
    margin-left: 210px;
}

.question-container {
    margin: auto;
    max-width: 800px;
    padding: 20px;
}

.question {
    margin: auto;
    margin-top: 10px;
    max-width: 780px;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 4px 4px 8px #e1e6ed;
}

aside{
    border-left: 5px solid #d22424;
    margin-top: 20px;
    margin-bottom: 15px;
    margin-left: 10px;
    padding: 10px;
}

blockquote {
    border-left: 6px solid red;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: #e1e6ed;
    padding: 15px;
}

blockquote:hover{
    border-left: 10px solid red;
    border-top-left-radius: 15px;
    transition: 0.4s;
}

div.examples {
    padding: 0px 15px 0px 10px;
    border-top: 4px
}

div.tip {
    background-color: ivory;
    max-width: 400px;
    text-align: center;
    border: 1px solid black;
    border-radius: 15px 0px 15px 0px;
    margin: auto;
    margin-bottom: 20px;
    margin-top: 20px;
}

.examples ol > li::marker {
    content: "\2003 (" counter(list-item) ") \2003 ";
    }

blockquote ol>li::marker,
.descriptive_question ol>li::marker,
.note ol > li::marker{
    content: "\2003 \2003 (" counter(list-item, lower-alpha) ")  ";
}

div.chapter_head {
    padding-left: 15px;
    border-left: 15px solid blue;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

h2.section {
    padding-left: 5px;
}

h3.subsection {
    padding-left: 5px;
}

div.note{
    padding: 15px 15px 15px 5px;
    margin-left: 0px;
    text-align: justify;
    overflow-x: auto;
}

div.note:hover{
    background-color: #F5F5F5;
    transition: 0.4s;
}

div.toc{
    margin: auto;
    border-right: 5px;
}

div.toc a {
    text-decoration: none;
    padding: 5px;
    color: black;
}

div.toc a span.chapter{
    font-weight: bold;
    font-size: 20px;
}

div.toc a span.title{
    font-size: 20px;
}

div.toc a:visited {
    color: black;
}

div.toc a:hover {
    border-left: 5px solid blue;
    border-radius: 5px 0px 0px 5px;
    transition: 0.4s;
}

ul.toc {
    list-style: none;
}

div.toc li{
    padding: 5px;
}


div#descriptive_Bonferronis_inequality {
    height: max-content;
}

div.descriptive_question:hover{
    cursor: pointer;
    background-color: rgba(247, 243, 228, 0.5);
    transition: background-color 0.40s;
}

h2.toc span{
    display: inline-block;
  position: relative;
}

h2.toc span::after{
    content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 4px;
  bottom: 0;
  left: 0;
  background-color: red;
  border-radius: 40%;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

h2.toc span:hover::after{
transform: scaleX(1);
  transform-origin: bottom left;
}

svg {
    display: block;
    margin: auto;
}
svg path:hover,
svg rect:hover,
svg ellipse:hover,
svg polygon:hover,
svg circle:hover{
    opacity: 0.6;
}

table{
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px;
}


table.nonchart,
table.nonchart th,
table.nonchart td {
    border: 1px solid  #7482a7 ;
    border-collapse: collapse;
    padding: 5px;
    text-align: center;
}

table.nonchart th {
    background-color: #959595  ;
    color: white;
}

table.nonchart tr:hover{
    background-color:  #9ba1ff ;
}

div.chart{
    width: 100%;
    max-width: 800px;
    display: block;
    margin: auto
}

table.chart{
    width: 100%;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
  }
  
  .switch input { 
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .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: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  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%;
  }

  .descriptive_question_discussions{
    display: none;
    max-width: 900px;
    box-shadow: 0px 0px 5px 1px  #d3d3ff;
    background-color: #ffffff;
    padding: 10px 0 px 10 px 5px;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px
}

textarea.descriptive_textarea{
    width: 100%;
}
  