/*  =================================================
	=====[ Common Setting used within the Body ]=====
	=================================================*/

/* ========= RESET ========= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ====== Nice Scrollbars ====== */
*{
  scrollbar-width:thin;
  scrollbar-height:thin;
  scrollbar-color:rgba(129,140,248, 0.4) rgba(3,0,90,0.8);
  scrollbar-border-radius:3px;
  scrollbar-box-shadow:0 0 2px 2px #1c1c1c;
}
*::-webkit-scrollbar { width:6px;height:6px; }
*::-webkit-scrollbar-track { 
  border-radius:3px;
  background:rgba(3,0,90,0.8); 
}
*::-webkit-scrollbar-thumb { 
  border-radius:3px;
  background-color:rgba(129,140,248, 0.4);
  box-shadow:0 0 2px 2px #1c1c1c;
}

/* ====== General Elements ====== */
a {
  color: inherit;
  text-decoration: none;
  cursor:pointer;
}
#b_scrollDiv {
  position:relative;
  box-sizing:border-box;
  height:calc(100vh - 76px);
  width:100vw;
  padding:0 10px;
  scroll-behavior:smooth;
  overflow-y:auto;
}

/* ====== Return to Top of ScrollDiv ====== */
#b_scrollTop, #b_scrollTop_ar {
  position:fixed;
  display:none;
  bottom:5px;
  padding:7px;
  border:2px solid #c0c0c0;
  border-radius:50%;
  background-color:rgba(0,0,0,0.8);
  cursor:pointer;
  z-index:10000;
}
#b_scrollTop {right:25px;}
#b_scrollTop_ar {left:25px;}
#b_scrollTop img, #b_scrollTop_ar img {
  content:url(../WebCommon/images/double-caret-up-icon-white.png);
  width:15px;
  height:15px;
  z-index:999;
}

/* ====== Buttons ======*/
.b_btnClose {
  position:absolute;
  display:inline-block;
  top:0;
  right:0;
  padding:3px 5px;
  margin:0;
  border:1px solid rgba(0,0,0,0.7);
  border-radius:5px;
  color:#fff;
  background-color:#ff0000;
  font-size:18px;
  font-weight:bold;
  cursor:pointer;
}

/* ====== Footer Elements ====== */
footer {
	position:fixed;
	bottom:2px;
	padding-top:6px;
	font-size:9px;
	color:rgba(0,0,0,0.7);
	border-top: 1px solid rgba(31,41,55,0.9);
	margin:35px 0;
}
.b_footerCompany, .b_footerCompany_ar {
	float:left;
	display:inline-block;
	margin-left:5px;
	font-style:italic;
}
.b_footerCompany::before, .b_footerCompany_ar::before {
	content:'\00a9 ';
}
.b_footerText, .b_footerText_ar {
	float:right;
	display:inline-block;
	margin-right:5px;
}

