html{
	height:100%;
}
body{
      background-color:#f1f1e5!important;
      background-attachment:fixed;
      background-repeat: no-repeat;
      background-position:center;
      background-size:100% 100%;
      overflow-x:hidden;
      height:100%;
      margin:0;
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      -khtml-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
}
header{
    /* position: fixed; */
    padding:2px 8px;
    width:100%;
	z-index: 1;
	background:linear-gradient( #480048, #C04848);
}
footer
{
    background:linear-gradient(to right, rgb(72, 0, 72), rgb(192, 72, 72));
    color:white;
    /* display: flex;
    justify-content: center; */
}
footer p{
	margin: unset;
    padding: 10px;
}
.row
{
	margin:unset!important;
}
button{
	background-color:#104441;
	color:white;
	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:grey!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: #000000eb !important;
  }
  .closeIcon:hover
{
  color: darkgray;
  cursor: pointer!important;
}
.accountOPtn:focus, .accountOPtn:hover{
	background-color: #2178c3!important;
	/* font-weight: bold; */
	color:white!important;
  }

  /* css for scrollbar  */

/* width */
::-webkit-scrollbar {
	width: 0.8vw;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px grey; 
	border-radius: 10px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
	background:  #4f6276; 
	border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
	background: #425262; 
  }