body { background: #ECEFF1; color: rgba(0,0,0,0.87); font-family: Roboto, Helvetica, Arial, sans-serif; margin: 0; padding: 0; }
.thumbs {    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);width: 80px;margin: 5px;min-height: 30px;}
.message { background: white; max-width: 460px; margin: 30px auto 16px; padding: 16px 24px 16px 24px; border-radius: 3px; }
.message h2 { color: #36B3A8; font-weight: bold; font-size: 16px; margin: 0 0 8px; }
.message h1 { font-size: 22px; font-weight: 300; color: rgba(0,0,0,0.6); margin: 0 0 16px;}
.message p { line-height: 140%; margin: 16px 0 24px; font-size: 14px; }
.message, .message a { box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); }
#load { color: rgba(0,0,0,0.4); text-align: center; font-size: 13px; }
@media (max-width: 700px) {
	body, .message { margin-top: 0; background: white; box-shadow: none; }
}
.avatar-frame{border: 2px solid #fff;}
.avatar-frame,.avatar-frame img{
	width: 40px;
	height: 40px;
	-webkit-border-radius: 30px; /* Saf3+, Chrome */
	border-radius: 30px; /* Opera 10.5, IE 9 */
	/*-moz-border-radius: 30px;  Disabled for FF1+ */
} 

.contact {
	background-color: #fff;
	padding: 15px;
	max-width: 200px;
	margin: 30px auto;
}

.icon {
	width: 16px;
	height: 16px;
	padding: 0;
	margin: 0;
	vertical-align: middle;
}
.progress-cust {
	width: 150px;
	height: 150px;
	line-height: 150px;
	background: none;
	margin: 0 auto;
	box-shadow: none;
	position: relative;
}
.progress-cust:after {
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 7px solid #eee;
	position: absolute;
	top: 0;
	left: 0;
}
.progress-cust > span {
	width: 50%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
	z-index: 1;
}
.progress-cust .progress-left {
	left: 0;
}
.progress-cust .progress-bar-cust {
	width: 100%;
	height: 100%;
	background: none;
	border-width: 7px;
	border-style: solid;
	position: absolute;
	top: 0;
	border-color: #36B3A8;
}
.progress-cust .progress-left .progress-bar-cust {
	left: 100%;
	border-top-right-radius: 75px;
	border-bottom-right-radius: 75px;
	border-left: 0;
	-webkit-transform-origin: center left;
	transform-origin: center left;
}
.progress-cust .progress-right {
	right: 0;
}
.progress-cust .progress-right .progress-bar-cust {
	left: -100%;
	border-top-left-radius: 75px;
	border-bottom-left-radius: 75px;
	border-right: 0;
	-webkit-transform-origin: center right;
	transform-origin: center right;
}
.progress-cust .progress-value {
	display: flex;
	border-radius: 50%;
	font-size: 36px;
	text-align: center;
	line-height: 20px;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-weight: 300;
}
.progress-cust .progress-value div {
	margin-top: 10px;
}
.progress-cust .progress-value span {
	font-size: 12px;
	text-transform: uppercase;
}

.loader {
    border: 3px solid #f3f3f3; /* Light grey */
    border-top: 3px solid #36B3A8; /* Blue */
    border-radius: 50%;
    width: 25px;
    height: 25px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* This for loop creates the 	necessary css animation names 
Due to the split circle of progress-left and progress right, we must use the animations on each side. 
*/
.progress-cust[data-percentage="10"] .progress-right .progress-bar-cust {
  animation: loading-1 1.5s linear forwards;
}
.progress-cust[data-percentage="10"] .progress-left .progress-bar-cust {
  animation: 0;
}

.progress-cust[data-percentage="20"] .progress-right .progress-bar-cust {
  animation: loading-2 1.5s linear forwards;
}
.progress-cust[data-percentage="20"] .progress-left .progress-bar-cust {
  animation: 0;
}

.progress-cust[data-percentage="30"] .progress-right .progress-bar-cust {
  animation: loading-3 1.5s linear forwards;
}
.progress-cust[data-percentage="30"] .progress-left .progress-bar-cust {
  animation: 0;
}

.progress-cust[data-percentage="40"] .progress-right .progress-bar-cust {
  animation: loading-4 1.5s linear forwards;
}
.progress-cust[data-percentage="40"] .progress-left .progress-bar-cust {
  animation: 0;
}

.progress-cust[data-percentage="50"] .progress-right .progress-bar-cust {
  animation: loading-5 1.5s linear forwards;
}
.progress-cust[data-percentage="50"] .progress-left .progress-bar-cust {
  animation: 0;
}

.progress-cust[data-percentage="60"] .progress-right .progress-bar-cust {
  animation: loading-5 1.5s linear forwards;
}
.progress-cust[data-percentage="60"] .progress-left .progress-bar-cust {
  animation: loading-1 1.5s linear forwards 1.5s;
}

.progress-cust[data-percentage="70"] .progress-right .progress-bar-cust {
  animation: loading-5 1.5s linear forwards;
}
.progress-cust[data-percentage="70"] .progress-left .progress-bar-cust {
  animation: loading-2 1.5s linear forwards 1.5s;
}

.progress-cust[data-percentage="80"] .progress-right .progress-bar-cust {
  animation: loading-5 1.5s linear forwards;
}
.progress-cust[data-percentage="80"] .progress-left .progress-bar-cust {
  animation: loading-3 1.5s linear forwards 1.5s;
}

.progress-cust[data-percentage="90"] .progress-right .progress-bar-cust {
  animation: loading-5 1.5s linear forwards;
}
.progress-cust[data-percentage="90"] .progress-left .progress-bar-cust {
  animation: loading-4 1.5s linear forwards 1.5s;
}

.progress-cust[data-percentage="100"] .progress-right .progress-bar-cust {
  animation: loading-5 1.5s linear forwards;
}
.progress-cust[data-percentage="100"] .progress-left .progress-bar-cust {
  animation: loading-5 1.5s linear forwards 1.5s;
}

@keyframes loading-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(36);
    transform: rotate(36deg);
  }
}
@keyframes loading-2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(72);
    transform: rotate(72deg);
  }
}
@keyframes loading-3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(108);
    transform: rotate(108deg);
  }
}
@keyframes loading-4 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(144);
    transform: rotate(144deg);
  }
}
@keyframes loading-5 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(180);
    transform: rotate(180deg);
  }
}
.progress-cust {
  margin-bottom: 1em;
}
.uppload-modal .errorMessage {
	z-index: 10;
}

#logout {
	position: relative;
    opacity:0.0;
    filter:alpha(opacity=0);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
#logout-text{
	cursor: pointer;
}

#logout img {
	width: 40px;
    border-radius: 30px;
    cursor: pointer;
}

#logout:hover {

    opacity:1.0;
    filter:alpha(opacity=100);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
#recipients button {
	margin-right: 10px;
}

.croppr-handleContainer, .croppr-overlay, .croppr-region{
	display: none;
}

#cropAndUploadBtn {
  text-indent: -9999px;
  line-height: 0; /* Collapse the original line */
}

#cropAndUploadBtn::after {
  content: "Upload";
  text-indent: 0;
  display: block;
  line-height: initial; /* New content takes up original line height */
}