
/*PROFILE*/
.widget-user .widget-user-header {
	height: 60px;
}
.widget-user .widget-user-image > img {
	width: 100%;
	cursor: pointer;
}
.widget-user .widget-user-image {
	left: 0%;
	top: 0px;
	margin-left: 0px;
    position: relative;
}
.widget-user .box-footer {
	padding-top: 0px;
}

.table > tbody > tr > th {
	text-align: center;
    vertical-align: middle;
}

/*LOADER*/
#loader {
     /*border: 16px solid #f3f3f3; Light grey */
    /* border-top: 16px solid #3498db; Blue */
    /*border-radius: 50%;
    width: 120px;
    height: 120px;*/
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* GENERAL MEDIA LOADING */
.load-ripple {
  display: block;
  position: fixed;
  z-index: 1060;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(20, 20, 20, .8), rgba(0, 0, 0, .8));
  background: -webkit-radial-gradient(rgba(20, 20, 20, .8), rgba(0, 0, 0, .8));
  animation: 1.5s sasake infinite;
}

@keyframes ripple {
  from {
    transform: scale(0);
    /* opacity: 1; */
  }

  to {
    transform: scale(1);
    /* opacity: 0; */
  }
}

@keyframes sasake {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.multi-ripple {
  width: 10rem;
  height: 10rem;
  position: fixed;
  margin: auto;
  z-index: 1100;
  overflow: show;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.multi-ripple div {
  position: absolute;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  border: 0.3rem none #979fd0;
  animation: 1.5s ripple infinite;
}

.multi-ripple div:nth-child(2) {
  animation-delay: 0.5s;
}

/* GENERAL MEDIA ERROR PAGE */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
}

#notfound {
  position: relative;
  height: 100vh;
}

#notfound .notfound {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.notfound {
  max-width: 560px;
  width: 100%;
  padding-left: 160px;
  line-height: 1.1;
}

.notfound .notfound-404 {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: 140px;
  height: 140px;
  background-image: url('../../asset/img/emoji.png');
  background-size: cover;
}

.notfound .notfound-404:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(2.4);
  -ms-transform: scale(2.4);
  transform: scale(2.4);
  border-radius: 50%;
  background-color: #f2f5f8;
  z-index: -1;
}

.notfound h1 {
  font-family: 'Nunito', sans-serif;
  font-size: 65px;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 10px;
  color: #151723;
  text-transform: uppercase;
}

.notfound h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 21px;
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
  color: #151723;
}

.notfound p {
  font-family: 'Nunito', sans-serif;
  color: #999fa5;
  font-weight: 400;
}

.notfound a {
  font-family: 'Nunito', sans-serif;
  display: inline-block;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none;
  color: #388dbc;
}

@media only screen and (max-width: 767px) {
  .notfound .notfound-404 {
    width: 110px;
    height: 110px;
  }

  .notfound {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 110px;
  }
}