body {
    font-family: -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    text-align: left;
    margin: 50px;
}

h1{
    margin-top: -10px;
    margin-bottom: -6px;
}

.button-play-stop {
  flex-direction: column;
  align-items: center;
  padding: 6px 14px;
  font-family: -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  border-radius: 6px;
  border: none;
  display: inline-block;
  color: #fff;
  background: linear-gradient(180deg, #4B91F7 0%, #367AF6 100%);
   background-origin: border-box;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  margin-right: 0.5em;
}

 .button-play-stop:hover {
  background: #F6F9FE;
  color: #174ea6;
}

/* .button-play-stop:active {
  box-shadow: 0 4px 4px 0 rgb(60 64 67 / 30%), 0 8px 12px 6px rgb(60 64 67 / 15%);
  outline: none;
} */
/*
.button-play-stop:not(:disabled) {
  box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}
/*
.button-play-stop:not(:disabled):hover {
  box-shadow: rgba(60, 64, 67, .3) 0 2px 3px 0, rgba(60, 64, 67, .15) 0 6px 10px 4px;
}

.button-play-stop:not(:disabled):focus {
  box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}

.button-play-stop:not(:disabled):active {
  box-shadow: rgba(60, 64, 67, .3) 0 4px 4px 0, rgba(60, 64, 67, .15) 0 8px 12px 6px;
}
*/
.button-play-stop:disabled {
  box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
} 

.frequency_input{
  
    border-radius: 2%;
    width: 3.5rem;
    height: 16px; 
    border: 2px solid #999;
    transition: 0.2s all linear;
    margin-right: 5px;
    position: relative;
    top: 0px;
  }

div:first-of-type {
    display: flex;
    align-items: flex-start;
    margin-bottom: 5px;
  }
  
  label {
    margin-right: 15px;
    line-height: 32px;
  }


  
  input {
    appearance: none;
  
    border-radius: 50%;
    width: 16px;
    height: 16px;
  
    border: 2px solid #999;
    transition: 0.2s all linear;
    margin-right: 5px;
  
    position: relative;
    top: 4px;
  }
  
  input:checked {
    border: 6px solid #367AF6;
  }

.svg-image {
    height: 1.5em;
    padding-top:0em;
}

.app-header-vs {
    width: 100%;
    margin-top: -2rem;
    margin-bottom: 4rem;
    text-align: center;
}

.span-svg{
    margin-top: 100px;
    vertical-align: middle; /* Align the image vertically in the middle */
}

.radio-container {
    display: inline-block;
    margin-right: 10px; /* Adjust this value for spacing between radio buttons */
  }

.radio-container-test {
    display: inline-block;
}

.after-title{}

.slider-container {
    width: 100px;
    height: 20px;
}

.text-slider{
}


.range input{
    display: inline-block;
    margin-top: 6px;
	width:100px;
	height:4px;
	border-radius:5px;
	background-color:#367AF6;
	outline:none;
}
.range input::-webkit-slider-thumb{
	-webkit-appearance:none;
	width:20px;
	height:20px;
	border-radius:50%;
	background-color:#367AF6;
}
.range span{
	position:absolute;
	margin-left:14px;
	width:50px;
	height:30px;
	background-color:#222;
	color:#fff;
	border-radius:3px;
	text-align:center;
	line-height:30px;
}
.range span:before{
	content:'';
	position:absolute;
	border-right:9px solid transparent;
	border-left:9px solid transparent;
	border-bottom:12px solid #222;
	left:-10px;
	top:50%;
	transform:translateY(-50%) rotate(-90deg);
}