.seadex_div{
float: right;
position: static;
right: auto;
height: 36px;
}


.toggle-button { 
float: right;
background-color: #E7C342;
border-radius: 20px; 
border: 4px solid #353535;
height: 24px; 
cursor: pointer; 
width: 50px; 
position: relative; 
display: inline-block; 
user-select: none; 
-webkit-user-select: none; 
-ms-user-select: none; 
-moz-user-select: none;
}

.toggle-button button { 
cursor: pointer; 
outline: 0; 
display:block; 
position: absolute;
left: 0; 
top: 0; 
border-radius: 100%; 
width: 24px; 
height: 24px; 
background-color: white; 
float: left; 
border: 0px solid #353535; 
transition: left 0.3s;
}

.toggle-button-selected { 
background-color: #E7C342;
border: 2px solid #7DA652; 
margin: -3px 0 0 -3px; 
}

.toggle-button-selected button { 
left: 26px; 
top: 0; 
margin: 0;
border: none; 
width: 24px; 
height: 24px; 
box-shadow: 0 0 4px rgba(0,0,0,0.1); 
background-color: #353535; 
}


