h2 b {
	font-size: 28px;
	font-family: 'Open Sans', sans-serif;
}
  .space {
    margin-top: 10px; /* Adjust the value to control the amount of space */
  }
    .space2 {
    margin-top: 3px; /* Adjust the value to control the amount of space */
  }
  .variable-container {
    display: flex;
    justify-content: center;
    align-items: center; /* Center vertically */
    flex-direction: column; /* Stack items vertically */
}
	.variable-box:hover {
		opacity: 80%;
	}
	.mentalhealthconditionbutton{
		background-color: #2b4162;
		color: white;
		font-weight: bold;
		width: 35%;
		padding: 10px;
		text-align: center;
		margin-left: auto;
        margin-right: auto;
		margin-bottom: 20px;
		margin-top: 20px;
		background-image: linear-gradient(to bottom right, #333333, #2b4162);
		border-radius: 25px;
	}
	.mentalhealthconditionbutton:hover{
		opacity:80%;
	}
    label {
        display: inline-block;
		font-size: 17px;
    }
table {
  border: none;
}
#rxcontent table{
	height: 30%;
	border: 1px solid #dddddd;
}
#rxcontent td, tr{
	border: none;
	padding: 2px;
}
td {
  text-align: left;
  vertical-align: top;
}
#results{
display: flex;
height: auto;
}

#resultsheader{
display: flex;
height: 40px;
font-weight: bold;
width: 100%;
}

#results > div{
padding: 10px;
background-color: #EEEEEE;
width: 100%
}

#resultsheader > div{
padding: 10px;
background-color: #2b4162;
background-image: linear-gradient(to bottom, rgba(0, 0, 0,0), rgba(0, 0, 0,0.25));
color: #FFFFFF;
}

#taper{
	flex: 1;
}

#note{
	flex: 1;
	border-right: 1px solid white;
	border-left: 1px solid white;
}

#rx{
	flex: 1;
}

#taper:hover{
	opacity: 90%;
}

#rx:hover{
	opacity: 90%;
}

#note:hover{
	opacity: 90%;
}

#tapercontent{

}
#rxcontent{
}
#notecontent{
	flex-direction: column;
}

/*.slidecontainer {
  width: 50%;
}*/

.slider {
  -webkit-appearance: none;
  width: 50%;
  height: 10px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 1;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

#myRange.slider:hover {
  opacity: 0.7;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #2b4162;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #2b4162;
  cursor: pointer;
}
input.apple-switch {
  position: relative;
  -webkit-appearance: none;
  outline: none;
  width: 25px;
  height: 15px;
  background-color: #2b4162;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.25));
  border: 1px solid #D9DADC;
  border-radius: 25px; /* Adjusted border radius */
  box-shadow: inset -10px 0 0 0 #fff; /* Adjusted box shadow */
}

input.apple-switch:after {
  content: "";
  position: absolute;
  left: 0;
  background: transparent;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  transition: left 0.4s ease; /* Added transition */
}

input.apple-switch:checked {
  box-shadow: inset 10px 0 0 0 #fff;
  border-color: #fff;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0,0), rgba(0, 0, 0,0.25));
}

input.apple-switch:checked:after {
  left: calc(100% - 26px); /* Adjusted left position */
}

input.apple-switch:focus {
  outline: none;
}
input.apple-switch:hover {
  opacity: 0.8;
}
/*.extra-info {
  display: none;
  font-size: 13px;
  margin-left: 5px;
}

.infoContainer:hover .extra-info {
  display: inline;
}

.infoContainer {
  padding: 0;
  border-radius: 10px;
  position: relative;
  display: inline;
  z-Index: 1;
  vertical-align: top;
}

.infoContainer:hover {
  background-color: #fafafa;
  padding: 5px 5px 5px 5px;
  text-align: left;
  height: auto;
  line-height: 1.1;
}*/

.fa.fa-info-circle:hover{
	opacity: 80%;
}

.fa.fa-info-circle{
	padding: 0;
}

#taperIntensity{
	margin: 0;
	padding: 0;
	width: auto;
}

#switchContainer {
  display: flex;
  align-items: flex-start; /* Ensure items are aligned at the top */
  position: relative;
}

.questionContainer{
	width: 100%;
	display: block;
}

.questionContainer p {
  margin-bottom: 5px;
}

.noteButton{
	font-weight: bold;
	background-color: #2b4162;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0,0), rgba(0, 0, 0,0.25));
	color: white;
	margin-top: 5px;
	border-radius: 5px;
	width: 15%;
	padding: 5px;
	display: inline-block;
}

.noteButton:hover{
	opacity: 90%;
}

#selectionMenu table {
    border-spacing: 0 3px; /* Adjust the spacing between cells vertically (0 horizontally) */
	width: auto;
	margin: auto;
	margin-bottom: 5px;
}

#selectionMenu table td select {
    background-color: transparent; /* Set background color for select tag cells */
    border: none; /* Remove border for select tags */
}

#selectionMenu table td {
    padding: 10px;
	background-color: #eee;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0,0), rgba(0, 0, 0,0.25));

}

#selectionMenu td {
    vertical-align: middle;
	font-weight: bold;
}

#selectionMenu{
	width: auto;
	padding: 5px;
	margin-left: auto;
    margin-right: auto;
	/*border: 0.75px solid #2b4162;
	background-color: #fafafa;
	background-image: linear-gradient(to top, rgba(0, 0, 0,0), rgba(0, 0, 0,0.25));*/
}

#switchButton, .button{
	width: auto;
	font-weight: bold;
	background-color: #2b4162;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0,0), rgba(0, 0, 0,0.25));
	color: white;
	margin-top: 3px;
	border-radius: 5px;
	font-size: 14px;
	padding: 5px 15px;
}

#switchButton:hover{
	opacity: 0.9;
}

#noteTextContainer{
	margin-top: 3px;
	width: 100;
}
#selectionMenu option {
    background-color: #eeeeee;
	font-size: 14px;
}

#feedback-container{
    display: flex;
    justify-content: flex-end; 
}
.feedback{
    background-color: #2b4162;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0,0), rgba(0, 0, 0,0.25));
    color: white;
    padding: 3px 15px;
}
#bugs{
    border-right: 1px solid white;
}
#feedback{
    border-bottom-right-radius: 10px;
}
#references{
    border-bottom-left-radius: 10px;
    border-right: 1px solid white;
}
.feedback:hover{
    opacity:0.9;
}
.feedback-container{
    margin: 5px;
    padding:5px;
}
.feedback-container input[type=text], input[type=password] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
.feedback-response{
    font-weight: 700;
    display:inline;
    padding-left: 10px;
}

#FAQ{
    width:50%;
}
#content{
    width: 65%;
}

#question2, #question3{
    display:inline-block;
}
@media screen and (max-width: 991px) {
	#FAQ{
		width: 75%
	}
}

#overlay{
    display: none;
}

#overlay img{
    display: none;
}
.graphContainer {
    width: 50%;
}

.graphLegend{
    padding-bottom:5px;
}
#selectionMenuTable-mobile{
      display: none;
    }

@media screen and (max-width: 600px) {
    html, body {
    width: 100%;
    overflow-x: hidden;
    }
    .container{
        width:100%;
    }
    #content{
        margin:auto;
        width:auto;
    }
    #selectionMenu table td {
        padding: 10px;
    	background-color: #eee;
    	text-align:center;
    	background-image: none;
    	border:none;
    }
    #selectionMenu select{
        text-align:center;
    }
    #resultsheader{
        height:auto;
    }
    #taper, #note, #rx{
        align-items:center;
        justify-content: center;
        text-align:center;
    }
    .noteButton{
        width:30%;
    }
    #rxcontent{
        flex-direction: column;
    }
    .graphContainer{
        width:100%;
    }
    #references, #bugs{
        flex:1;
    }
    #feedback{
        flex:1.2;
    }
    #feedback-container > div{
        text-align:center;
    }
    .graphVideo{
        padding-bottom:6px;
    }
    #question2, #question3{
        display:block;
    }
    .questionContainer select{
        margin-bottom:10px;
    }
    .heading-11{
        margin-top:40px;
    }
    #selectionMenuTable-mobile {
      display: block;
      margin:auto;
    }
    #selectionMenuTable{
      display: none;
    }
    #selectionMenu{
        display:flex;
        justify-content: center;
        flex-direction: column;
    }
    .infoContainer{
        width:50%;
    }
}
.reference-box{
    padding-left:10px;
}
.reference-box p{
    font-size:16px;
}

@media screen and (max-width: 991px) {
    .modal-content {
      background-color: #fefefe;
      margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
      border: 1px solid #888;
      width: 50%; /* Could be more or less, depending on screen size */
    }
}