
@keyframes change-position {
  25% {
    margin-left: 1%;
  }
  50% {
    margin-left: 10%;
  }
  75% {
    margin-left: 20%;
  }
}

.progress-bar-swiper {
  /* animation-name: change-position;
  animation-duration: 6s; */
  position: absolute;
  margin-left: 0%;
  height: 1rem;
  width: 0.2rem;
  background-color: lightgray;
}

/* section[data-number]:not([data-number=""]){
  padding: 1rem;
  border : 0.25rem solid #000000; 
  margin-bottom: 1rem;
}
section[data-number]:not([data-number=""]) > h1{
  margin-top: 0;
  color: #ffffff;
  background-color: #000000;
} */

.scrollable-table {
  overflow-x: auto;
}

.icon-button i {
  /*your code here...*/
  transition: opacity 0.25s ease;
  opacity: 0.5;
}

.solution {
  display: none;
}

.icon-button i:hover {
  opacity: 1.0;
}

.ace_gutter{ 
  z-index: 0;
}

.ace_gutter-cell.ace_breakpoint{ 
  color: white;
  background-color: red;
  border-radius: 20px 0px 0px 20px; 
  box-shadow: 0px 0px 1px 1px #248c46 inset; 
}
.ace_gutter-cell.previous_line{ 
  color: white;
  background-color: rgba(255, 0, 0, 0.3);
  border-radius: 20px 0px 0px 20px; 
  /*box-shadow: 0px 0px 1px 1px #248c46 inset; */
}
.ace_gutter-cell.current_line{ 
  color: white;
  background-color: rgba(255, 0, 0, 1.0);
  border-radius: 20px 0px 0px 20px; 
  /*box-shadow: 0px 0px 1px 1px #248c46 inset; */
}
.ace_gutter-cell.next_line{ 
  color: white;
  background-color: rgb(140, 0, 255);
  border-radius: 20px 0px 0px 20px; 
  /*box-shadow: 0px 0px 1px 1px #248c46 inset; */
}



.pytutor-visable {
  position: fixed;
  bottom: 0px;
  right: 0;
  z-index:1;
  width: auto;
  height: auto;
}

.pytutor-resizable {
  padding-left: 0.8em;
  padding-right: 0.8em;
  padding-bottom: 0.8em;
  position: fixed;
  bottom: 40px;
  right: 0;
  z-index:1;
  border: 2px solid;
  background-color:white;
  min-width: 400px;
  min-height: 325px;
}

.navbar {
  background-color: #f2f2f2;
}

.quarto-title-breadcrumbs .breadcrumb {
  margin-bottom: .5em;
  margin-top: .5em;
  font-size: .9rem;
}
.quarto-title {
  display: none;
} 

.quarto-title-meta-author  {
  display: none;
}

/* #title-block-header {
  display: none;
} */
/* .quarto-title-banner {
  background-color: #f8f9fa;
}
.quarto-title-block {
  background-color: #f8f9fa;
} */
/* .quarto-title-banner h1 {
  color: #ffffff;
  padding: 0px;
} */


.my_ace_editor {
 border: 2px solid #767676;
 margin:auto;
 margin-bottom: 1em;
}
.my_ace_editor.inactive {
  border: none;
  margin:auto;
 margin-bottom: 1em;
}
.my_ace_editor.active {
  border: none;
  outline: #000000 solid 3px;
  outline-offset: 0px;
  border-radius: 0.1em;
  margin-bottom: 1em;
}

.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  margin-top: 0.3em;
  background-color: #f9f9f9;
  min-width: 300px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
.dropdown-content div {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  cursor: pointer;
}
.dropdown-content div:hover {
  background-color: #f1f1f1;
}
.dropdown.active .dropdown-content {
  display: block;
}
.dropdown-btn {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #767676;
  cursor: pointer;
}

.dropdown-btn.active {
  border: none;
  outline: #000000 solid 3px;
  outline-offset: 0px;
  border-radius: 0.1em;
}


.ace_gutter_current_line {
  background-color: #ff6464;
  color: white;
}
.ace_gutter_next_line {
  background-color: #ff0000;
  color: white;
}

datalist {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 7px;
  padding: 0 5px;
}

.sliderticks {
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  font-size: 0.6rem;
}

.sliderticks span {
  display: flex;
  justify-content: center;
  width: 1px;
  height: 10px;
  background: #d3d3d3;
  line-height: 40px;
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  /* creating a custom design */
  width: 100%;
  cursor: pointer;
  outline: none;
  border-radius: 15px;
  /*  overflow: hidden;  remove this line*/

  /* New additions */
  height: 15px;
  background: #ccc;
}


input[type="range"]::-webkit-slider-thumb {
  /* removing default appearance */
  -webkit-appearance: none;
  appearance: none;
  /* creating a custom design */
  height: 15px;
  width: 15px;
  background-color: #ffffff;
  border-radius: 50%;
  border: 3px solid #343a40;

  /* box-shadow: -407px 0 0 400px #f50; emove this line */
  transition: .2s ease-in-out;
}

  
input[type="range"]::-moz-range-thumb {
  height: 15px;
  width: 15px;
  background-color: #ffffff;
  border-radius: 50%;
  border: 3px solid #343a40;

  /* box-shadow: -407px 0 0 400px #f50; emove this line */
  transition: .2s ease-in-out;
}

#quarto-document-content{
  padding-top:0px;
  margin-top:0px;
}

/* #title-block-header {
  display: none;
} */

figure > figcaption.quarto-float-caption-bottom {
  margin-bottom: .5em;
  text-align: center;
}

label{
  margin-left: 5px;
}

input{
  display:table-cell;
  vertical-align:middle;
}


/* p {
  margin-bottom: 0;
} */


.terminal_scroller {
  /*border: 2px solid rgb(240, 242, 244);*/
  border: none;
  min-height: 31px;
  max-height: 186px;
  padding-left: 5px;
  padding-right: 5px;
  overflow-y: auto;
  box-sizing: border-box;
}

.terminal_scroller * {
  overflow-anchor: none; 
}

.terminal_anchor {
  overflow-anchor: auto;
  height:1px;
}

.summary-code{
color: #6c757d;
background-color:white;
display: list-item;
cursor: pointer;
}

.stderr{
color:red;
background-color:white;
margin:0;
}

.traceback{
  color:rgb(55, 0, 255);
  background-color:white;
  margin:0;
}

.stdout{
color:black;
background-color:white;
margin:0;
}

.default { 
  width: 100%;
  margin-top: 0.8em;
}

.guess { 
  margin-bottom: 1em;
}


.analyze { 
  margin-bottom: 1em;
}

.design { 
  margin-bottom: 1em;
}


.right_answer {
  display: inline-flex; 
  align-items: center; 
  /* vertical-align: middle;
  line-height: 1;
  gap: 0.1rem; */
  background-color:  green;
  color: white;
  padding: 0 5px;
  border-radius: 4px;
  font-weight: 800;
}
.wrong_answer {
  display: inline-flex; 
  align-items: center; 
  /* vertical-align: middle;
  line-height: 1;
  gap: 0.1rem; */
  background-color:  red;
  color: white;
  padding: 0 5px;
  border-radius: 4px;
  font-weight: 800;
}
.interrupt_answer {
  background-color:  rgb(0, 55, 255);
  color: white;
  padding: 0 5px;
  border-radius: 4px;
  font-weight: 800;
}

#ace_editor_readonly .ace_marker-layer .ace_bracket {
display: none
}

.no-close .ui-dialog-titlebar-close {
  display: none;
}

.ui-widget-header {
  background: #ffffff;
  border: none;
}