
div.profile-img {
	text-align: center;
}
div.profile-img img {
	width: 150px; 
	height: 150px;
	cursor: pointer;
}
div.profile-info {
	text-align: center;
	margin-top: 6px;
}
div.profile-info h1 {
	letter-spacing: 2px; 
	text-transform: uppercase; 
	font-size: 2.0em
}
div.profile-info h3 {
	letter-spacing: 2px; 
	text-transform: uppercase; 
	font-size: 0.90em;
	color: #8498A4;
}
nav.kc-nav {
	margin: 12px 0 12px 0;
	padding: 5px 0;
	background-color: #fff;
}
nav.kc-nav a {
	font-weight: normal; 
	letter-spacing: 1px;
	color: #111;
	margin: 0 9px 0 0;
	font-size: 1.0em;
	padding: 8px 12px !important;
}
nav.kc-nav a.active {
	background-color: #fff !important; 
	color: #000 !important; 
	letter-spacing: 1px;
	font-weight: bold;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	border-radius: 0 !important;
}
div.kc-card {
	border: 0 !important;
} 
div.kc-card-body {
	padding: 9px; 
	text-align: center;
}
div.kc-card-body h3 {
	font-size: 1.3em; 
	margin: 0; 
	padding: 3px 0; 
	font-weight: bold;
	color: #3A5161;
}
div.kc-card-body h5 {
	margin: 0; 
	padding: 3px 0; 
	font-size: 1.0em; 
	color: #8498A4;
}
div.brands {
	border-bottom: 1px solid #eee; 
	border-top: 1px solid #eee; 
}


/*-----------------------------
 loading
------------------------------*/
#mx-loading {
    position: fixed;
    width: 100%;
    height:100%;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.25);
    top: 0;
}
.mx-loading-plus {
    display: flex;
    margin: 0 auto;
}
.mx-loading-bg {
  background: #ddd;
  padding: 15px;
  border-radius: 12px;
  color: #555;
}
.mx-spinner {
  margin: 5px auto;
  width: 50px;
  height: 30px;
  text-align: center;
  font-size: 10px;
}
.mx-spinner > div {
  background-color: #555;
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
  animation: stretchdelay 1.2s infinite ease-in-out;
}
.mx-spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.mx-spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}
.mx-spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.mx-spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
@-webkit-keyframes stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
  20% { -webkit-transform: scaleY(1.0) }
}
@keyframes stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% {
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }

}


/* Mobile */
@media (max-width: 576px) {

	div.profile-info h1 {
		font-size: 1.6em
	}
	div.profile-info h3 {
		font-size: 0.70em
	}
	div.brands-mobile {
		display: ;
	}
	div.brands-tablet {
		display: none;
	}
	div.brands-desk {
		display: none;
	}
	nav.kc-nav {
		margin: 9px 0 12px 0;
	}
	div.brands {
		padding: 15px 0 15px 0; 
		margin: 12px 0 21px 0;
	}
	div.kc-card-body h5 {
		font-size: 0.85em;
		padding: 2px 0; 
	}
	nav.kc-nav a {
		padding: 12px 12px !important;
	}
	nav.kc-nav a.active {
		background-color: #eee !important; 
		border: 1px solid #ddd !important; 
		border-radius: 5px !important;
		color: #555 !important;
	}
}

/* Tablet */
@media (min-width: 577px) and (max-width: 992px) {

	div.brands-mobile {
		display: none;
	}
	div.brands-tablet {
		display: ;
	}
	div.brands-desk {
		display: none;
	}
	div.brands {
		padding: 15px 0 15px 0; 
		margin: 12px 0 31px 0;
	}	
}
  
/* Desktop */
@media (min-width: 993px) {

	div.brands-mobile {
		display: none;
	}
	div.brands-tablet {
		display: none;
	}
	div.brands-desk {
		display: ;
	}
	div.brands {
		padding: 15px 0 15px 0; 
		margin: 21px 0 31px 0;
	}
}


