* {
    margin: 0;
    padding: 0;
}

#inputWindow {
    overflow: auto;
    position: absolute;
    width: 20%;
    height: 100%;
    background-color: white;
    z-index: 100;
}

#drag-div {
    float: right;
    height: 100%;
    width: 4px;
    background-color: #ccc;
    cursor: ew-resize;
}

#graph-div {
    float: right;
    z-index: 10;
    position: absolute;
    right: 0;
    opacity: 1;
    height: calc(100% - 52px);
    overflow: hidden
}

.latex {
    outline-style: solid;
    outline-width: 1px;
    width: 100%;
    height: 5vh;
    display: flex;
    position: relative;
    justify-content: left;
    cursor: text;
    z-index: 5;
    overflow: hidden;
}

.mathInput {
    /* outline-style: solid;
    outline-width: 1px; */
    width: 100%;
    height: 5vh;
    display: flex;
    justify-content: center;
    resize: none;
}

.colorDiv {
    width: 40px;
    height: 100%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: aliceblue;
    border-right: 1px solid;
}

.colorCircle {
    cursor: pointer;
    border-radius: 35px;
    height: 35px;
    width: 35px;

}

#colorPickMenu {
    position: absolute;
    z-index: 100;
    width: 240px;
    height: 100px;
    background-color: white;
    align-items: center;
    display: flex;
    border: 1px solid black
}

.approxBtn {
    width: 25px;
    height: 25px;
    position: absolute;
    bottom: 3px;
    right: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* float:right; */
}

#setting-open {
    width: 40px;
    height: 40px;
    right: 3px;
    top: 3px;
    z-index: 100;
    cursor: pointer;
    background-image: url(images/settings-cog.png);
}

#settings-menu {
    position: absolute;
    z-index: 100;
    width: 350px;
    height: 600px;
    background-color: white;
    display: flex;
    flex-direction: column;
    border: 1px solid black
}

.setting-input {
    position: absolute;
    width: 175px;
    right: 10px;
    display: flex;
}

.setting-title {
    margin-right: 8px;
}

.settingsDiv{
    display: flex;
}

#inputSettingsMenu {
    position: absolute;
    z-index: 100;
    width: 100px;
    height: 52px;
    background-color: white;
    display: flex;
    flex-direction: column;
    border: 1px solid black
}

.inputSettings {
    cursor: pointer;
    width: 25px;
    height: 25px;
    position: absolute;
    top: 3px;
    right: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}


.inputSettingsDiv {
    user-select: none;
    border: 1px solid black;
    cursor: pointer;
}

.inputSettingsDiv:hover {
    background-color: #e6e6e6;
}

.inputSettingsDiv:active {
    background-color: #bbb9b9;
}

#loginMenu {
    width: 100px;
    height: 100px;
    z-index: 1000;
    position: absolute
}

.savedGraphSelection{
    font-size: 24px;
    cursor: pointer;
}
.savedGraphSelection:hover{
    color: rgb(92, 86, 150);
    font-weight: bold;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  .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: 26px;
    width: 26px;
    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);
  }
   
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }

mjx-container[jax="CHTML"][display="true"] {
    text-align: left !important;
}