
*,*:before,*:after{box-sizing:inherit}

*{box-sizing:border-box;
	outline:none;
	-webkit-tap-highlight-color:transparent;
	-webkit-touch-callout:none;
	text-size-adjust:none}

::-moz-selection{background:var(--primary-color);
color:var(--white-color)
}
::selection{background:var(--primary-color);
	color:#ffffff;
}

body.dark-theme{
	--body-color:#222121;
	--text-color:#FFFFFF;
	--text-color-dark:#FFFFFF;
	--white-color:#1C1B1B;
	--light-color:#1A1A1A;
}
/*********** Other Links *********/
a.copylink-dark-theme{color:#F3F3F3;text-decoration:none;font-weight:400}
a.copylink-dark-theme:visited{color:#F3F3F3;text-decoration:none;font-weight:400}
a.copylink-dark-theme:hover{color:#F60071;text-decoration:underline;font-weight:400}
a.copylink-dark-theme:visited:hover{color:#F60071;text-decoration:underline;font-weight:400}
/************ . Other Links *******/

/******** Scroll to Top************/
.hc_scrollup{
	border-radius:4px 4px 0 0;
	bottom:0;
	display:none;
	font-size:30px;
	font-weight:600;
	height:40px;
	opacity:1;
	position:fixed;
	left:2px;
	text-align:center;
	width:50px;
	overflow:hidden;
	z-index:99999;
	box-shadow: 12px 0px 12px rgba(0,0,0,0.33);
			}

	.hc_scrollup:hover{opacity:1;color:#000}
	.hc_scrollup i{font-size:24px}cite{font-style:italic !important}
	.hc_scrollup{background:none repeat scroll 0 0 #B73324;color:#fff}
/******** Scroll to Top************/
/********** Dark theme mode **********/
.switch{height:2.5em;width:5em;padding:0;position:relative;display:inline-block;cursor:pointer;font-size:10px}

.switch input{display:none}

.switch input+div{
	width:100%;
	border-radius:25px;
	background:var(--success);
	padding:.3em;
}

.switch input+div::before{
	content:'';
	display:block;
	height:1.9em;
	width:1.9em;
	border-radius:100%;
	background:#EEEFF0;
	transform:translateX(0);
	transition:transform .2s
}
.switch input:checked+div::before{transform:translateX(2.5em)}
.darkmode-switch{font-size:10px;letter-spacing:.2em;text-align:center;padding-top:20px;padding-bottom:4px}
.darkmode-switch .switch{vertical-align:middle;margin:-4px 10px}
/*********** Dark theme mode **********/

/******** Google Icon *****/
.gicon{
	position:relative;
	margin-right:4px;
	top:6px;
	font-size:34px !important;
}
.navicon{
	position:relative;
	margin-right:8px;
	top:5px;
	font-size:24px !important;
}
.btmicon{
	position:relative;
	margin-right:8px;
	top:9px;
	font-size:24px !important;
}
/***** Google icon ****/

/********** #### Custom Input Switch ###*************/
.switch {
	position: relative;
	display: inline-block;
	width: 56px;
	height: 28px;
  }
  
  .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: 22px;
	width: 22px;
	left: 4px;
	bottom: 3px;
	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);
  }
  
  /* Rounded sliders */
  .slider.round {
	border-radius: 34px;
  }
  
  .slider.round:before {
	border-radius: 50%;
  }
  
  #hiddenbox {
		display: none;
		width: 100%;
		height: auto;
		background-color: #F9F9F9;
	  }
  /************### Custom Input Switch ###************/
  /********* Note Box Style *********/
.notebox-note {
	position: relative;
	background-color: #F2F8FE;
	padding:15px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	height: auto;
	display: table;
	margin: 15px 0;
	line-height: 22px;
	max-width: 980px;
	font-size: 93%;
	width: 100%;
	border: 1px solid rgb(128, 185, 246);
	border-left-color: rgb(128, 185, 246);
	border-left-style: solid;
	border-left-width: 8px;
	table-layout: fixed;
	box-shadow: 0px 2px 18px rgba(0,0,0,0.25);
  }
  .notebox-important {
	position: relative;
	background-color: rgba(245,237,223,1.00);
	padding:15px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	height: auto;
	display: table;
	margin: 15px 0;
	line-height: 22px;
	max-width: 980px;
	font-size: 93%;
	width: 100%;
	border: 1px solid rgb(250, 206, 128);
	border-left-color: rgb(250, 206, 128);
	border-left-style: solid;
	border-left-width: 8px;
	table-layout: fixed;
  }
  /********* Note Box Style *********/