html, body{
	margin:0px;
	padding:0px;
	background-color: #f0f6ff;
	font-family: 'Bree Serif', serif;
}

.container404{
	margin:0px auto;
	text-align: center;
	width: 100%;
	max-width: 600px;
	height: 100vh;
	vertical-align: middle;
	display: flex;
	justify-content: center;
	/* align-self: center;    <---- REMOVE */
	align-items: center; 
	flex-direction: column;
}

.ilus404{
	width: 80%;
}

.bigTtl{
	font-size: 3.5rem;
	font-weight: bold;
	color: #36a1dd;
}

.ttl{
	font-size: 1.3rem;
	font-weight: bold;
	color: #666;
}

.subTtl{
	font-size: 1rem;
	color: #666;
}

.btn-primary{
	background-color: #36a1dd;
	border-color: #36a1dd;
}

/*Client Empty*/
.containerAccess404{
	margin:0px auto;
	text-align: center;
	width: 100%;
	max-width: 600px;
	height: 70vh;
	vertical-align: middle;
	display: flex;
	justify-content: center;
	align-items: center; 
	flex-direction: column;
}

.cardWrapper404{
  padding: 20px;
  background: #FFF;
  border-radius: 4px;
  align-items: center;
  display: flex;
  flex-direction: column;
  box-shadow: rgba(0, 0, 0, 0.075) 0px 20px 30px 0px;
}

.imgWrapper404{
  width: 260px;
  height: 240px;
}

.textWrapper404{
  width: 100%;
  font-size: 14px;
  font-weight: 500;
}

.titleWrapper404{
    color: var(--danger);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.infoWrapper404{
    color: #666;
    text-align: justify;
    font-size: 1rem;
    margin-bottom: 23px;
}

.btnWrapper404{
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.btn404{
  background: #EDF1F7;
  border-radius: 2px;
  width: 140px;
  height: 50px;
  border: 0px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
}

.btn404:hover{
  background: #0060F6;
  color: #FFF;
  transform: translateY(-3px);
}

.btn404:last-child{
  background: #0060F6;
  color: #FFF;
}

.infoUser{
	color: var(--info);
}