input {
	border-color: #ccc;
	border-image: none;
	border-style: solid;
	border-width: 1px;
	font-size: 16px;
	padding: 3px 6px;
	border-radius: 4px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.1) inset;
}

.onoffswitch {
    position: relative; width: 90px;
    -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
}
.onoffswitch-checkbox {
    display: none;
}
.onoffswitch-label {
    display: block; overflow: hidden; cursor: pointer;
    border: 2px solid #999999; border-radius: 20px;
}
.onoffswitch-inner {
    display: block; width: 200%; margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}
.onoffswitch-inner:before, .onoffswitch-inner:after {
    display: block; float: left; width: 50%; height: 30px; padding: 0; line-height: 30px;
    font-size: 14px; color: white; font-family: Trebuchet, Arial, sans-serif; font-weight: bold;
    box-sizing: border-box;
}
.onoffswitch-inner:before {
    content: "ON";
    padding-left: 10px;
    background-color: #32CD32; color: #FFFFFF;
}
.onoffswitch-inner:after {
    content: "OFF";
    padding-right: 10px;
    background-color: #EEEEEE; color: #999999;
    text-align: right;
}
.onoffswitch-switch {
    display: block; width: 18px; margin: 6px;
    background: #FFFFFF;
    position: absolute; top: 0; bottom: 0;
    right: 56px;
    border: 2px solid #999999; border-radius: 20px;
    transition: all 0.3s ease-in 0s; 
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0px; 
}

.notification-management {
	padding: 10px 50px;
	min-height: 480px;
	max-width:667px;
	margin: 0 auto;
}

@media all and (max-width:798px) {     
	.notification-management {
		padding: 10px 0px;
		max-width:667px;
		margin: 0px auto;
	}
}
 
.switch-table td {
	border-top: solid thin var(--main-color);
}

.switch-table td.continuation {
	border-top: none;
}


.switch-table td:nth-child(1) {
	border-left: solid thin var(--main-color);
	font-size: 14px;
	padding: 8px 8px;
	width: 106px;
}

.switch-table td:nth-last-child(1) {
	border-right: solid thin var(--main-color);
	font-size: 14px;
	padding: 16px 8px;
	width: 100%;
}

.switch-table tr:last-child td{
	border-bottom: solid thin var(--main-color);
}

.switch-table tr.dom-notify td{
	border-bottom: solid thin var(--main-color);
}


.switch-table a {
  text-decoration: none;
	color: #457BCC;
}

.switch-table tr.switch-table-title {
	background: var(--main-color);
	color: #FFFFFF;
}

.delete-button {
  height: 32px;
  width: 1px;
  opacity: 0.0;
	padding-left:5px;
  transition: all .50s ease;
}

.delete-button.show {
	padding-left:5px;
  opacity: 1.0;
  height: 32px;
  width: 116px;
}

.switch-table a.close {
	font-size:32px;
	color:#f08080;
}

.switch-table a.close:hover {
	font-size:32px;
	color:#f00000;
}

.watchlist-box {
	opacity: 1.0;
  transition: all .50s ease-out;

	box-sizing: border-box;
	border-color: #ccc;
	border-image: none;
	border-style: solid;
	border-width: 1px;
	display: block;
	font-size: 14px;
	font-weight: normal;
	padding: 4px 12px;

	border-radius: 4px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.1) inset;
}

.watchlist-box.hide {
	opacity: 0.0;
  transition: all .50s ease-out;

	box-sizing: border-box;
	border-color: #ccc;
	border-image: none;
	border-style: solid;
	border-width: 1px;
	display: block;
	font-size: 14px;
	font-weight: normal;
	padding: 4px 12px;

	border-radius: 4px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.1) inset;
}

#watchlist-content {
}

#watchlist-content.blur {
	filter: blur(20px);
}

.add-button a:link, .add-button a:visited {
	text-decoration:none;
	color:#32CD32;
}

.add-button a:hover {
	text-decoration:none;
	color:#7CFC00;
}

.bell-box {
	border: solid thin #cccc77;
	padding: 8px;
	border-radius: 4px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.1) inset;
	overflow: auto;
	background: #ffffee;
}

.bell-box.main-page {
	margin: 20px auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}


.bellswitch-content {
	margin-left: 80px;
}

.bellswitch {
    position: relative; width: 70px;
    -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
}
.bellswitch-checkbox {
    display: none;
}
.bellswitch-label {
    display: block; overflow: hidden; cursor: pointer;
    border: 2px solid #999999; border-radius: 20px;
}
.bellswitch-inner {
    display: block; width: 200%; margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}
.bellswitch-inner:before, .bellswitch-inner:after {
    display: block; float: left; width: 50%; height: 30px; padding: 0; line-height: 30px;
    font-size: 14px; color: white; font-family: Trebuchet, Arial, sans-serif; font-weight: bold;
    box-sizing: border-box;
}
.bellswitch-inner:before {
    content: "\f0a2";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
		font-size: 20px;
    padding-left: 10px;
		text-align: left;
    background-color: #32CD32; color: #FFFFFF;
}
.bellswitch-inner:after {
    content: "\f1f7";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
		font-size: 20px;
    padding-right: 10px;
    background-color: #EEEEEE; color: #999999;
    text-align: right;
}
.bellswitch-switch {
    display: block; width: 18px; margin: 6px;
    background: #FFFFFF;
    position: absolute; top: 0; bottom: 0;
    right: 36px;
    border: 2px solid #999999; border-radius: 20px;
    transition: all 0.3s ease-in 0s; 
}
.bellswitch-checkbox:checked + .bellswitch-label .bellswitch-inner {
    margin-left: 0;
}
.bellswitch-checkbox:checked + .bellswitch-label .bellswitch-switch {
    right: 0px; 
}

.fas {
	font-style: normal;
	font-family: FontAwesome;
	font-weight: normal;
	font-size: 10pt;
}

.fas-on {
    color: #32CD32;
}

.fas-off {
    color: #F08080;
}

.fas-neutral {
    color: #CCCCCC;
}

#subscribe-box {
	position: relative;
	max-width: 687px;
}

.bell-box-adjacent {
	overflow: auto;
	padding: 4px 15px 4px 23px;
	border-left: solid thin #DDDD88;
	border-top: none;
}

.bell-box-main-left {
	padding: 4px 14px 4px 4px;
	overflow: auto;
	box-sizing: border-box;
}


.fas-adj {
	font-style: normal;
	font-family: FontAwesome;
	font-weight: normal;
	font-size: 28pt;
	color: #DDDD88;
	margin: 0px 3px;
}

a:hover .fas-adj, a:active .fas-adj {
	color: #888844;
}
	

@media all and (max-width:798px) {

	.bell-box-adjacent {
		border-left: none;
		margin-top: 8px;
		border-top: solid thin #DDDD88;
		margin: 8px auto 0px auto;
		padding: 8px 4px 0px;
	}

  tr.connect { display: table-cell; }
	td.connect { display: inline; }

	.fas-adj {
		font-size: 22pt;
	}

}

#eac-container-header-search {
	width: 125%;
}
