html{
	height:100%;
}
body{
      background-color:#fff5d7!important;
      background-attachment:fixed;
      background-repeat: no-repeat;
      background-position:center;
      background-size:100% 100%;
      overflow-x:hidden;
      height:100%;
      margin:0;
      user-select: none;
}
header{
    padding:2px 8px;
    width:100%;
  z-index: 1;
  color:black;
  font-weight: 500;
}
header,footer
{
    background:#feb300;
    color:black;
    /* display: flex;
    justify-content: center; */
}
footer p{
	margin: unset;
    padding: 10px;
}
footer{
	font-weight: 500;
}
.row
{
	margin:unset!important;
}
.loader
{
  position: fixed!important;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: center no-repeat#afaca7d1;
  z-index: 1;
}
.bell::after
{
  content: unset!important;
}
button{
	background-color:#ff5e6c;
	color:black;
	font-weight:bold;
	border-radius: 0.2vw!important;
	border: unset;
	position: relative;
	line-height: 30px!important;
	text-align: center;
	text-transform: uppercase!important;
	padding: 0.3vw 1vw;
  display: flex;
  align-items: center;
}
button:hover{
	
	background-color:#808080bf!important;
}
.widgets
{
  display: flex;
}
.widgets button{
  border-radius: 50%!important;
  color:black;
  font-size: 1.8vw;
  height: 52px;
  width: 52px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin-left: 1vw;
}
.widgets button:focus
{
  outline:none;
  
}
.widgets button:hover{
  color: white!important;
}
.noPadding{
	padding:0px !important;
}
.zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
	animation-duration:1s;
  }
  
  @keyframes zoomIn {
	from {
	  opacity: 0;
	  -webkit-transform: scale3d(0.3, 0.3, 0.3);
	  transform: scale3d(0.3, 0.3, 0.3);
	}
  
	50% {
	  opacity: 1;
	}
  }
  
  .modal 
  {
	  display: none; 
	  position: fixed; 
	  z-index: 1;
	  padding-top: 100px;
	  left: 0;
	  top: 0;
	  width: 100%;
	  height: 100%;
	  overflow: auto; 
	  background-color: rgba(0,0,0,0.6); 
  }
  .overlay
  {
	z-index: 10;
	background-color: rgba(0,0,0,0.5);
  }
  .modal-content
  {
	  background-color:rgba(119, 187, 211, 0.43)!important;
	  border:3px solid white!important;
	  padding: 15px;
	  margin-top: 15vh!important;
  }
  .modal-backdrop {
	position: unset !important;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1040;
  background-color: rgba(0,0,0,0) !important;
  }
  .closeIcon:hover
{
  color: darkgray;
  cursor: pointer!important;
}
.accountOPtn:focus, .accountOPtn:hover{
	background-color: #2178c3!important;
	/* font-weight: bold; */
	color:white!important;
  }
  .roundedCorn{
	border-radius: 1vw;
    background-color: white;
    border: 2px solid gray;
    box-shadow: 2px 1px 8px;
  }
  .storyTitle
  {
	  display: flex;
    justify-content: center;
    color: black;
    margin: 1vw 1vw 0 1vw;
    padding: 8px;
    border-bottom: 2px solid gray!important;
    
  }
  .storyTitle > div
  {
    font-weight: bold;
  }
  .borderCls
  {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .tooltip
  {
    z-index: auto!important;
  }

  /* css for scrollbar  */

/* width */
::-webkit-scrollbar {
	width: 0.5vw;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px black; 
	border-radius: 10px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
	background:  #ff8928; 
	border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
	background: #ff5e6c; 
  }