
.myclasscss {
	/* ... */
}

.myteam-container{
	font-family: Roboto,BlinkMacSystemFont,Segoe UI,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;
    padding: 1.5rem;
    margin: 0;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(50,50,93,.11);
}

.myteam-card-user{
	position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: rgba(0,0,0,.87);
    line-height: 1;
    padding: 1rem;
    margin: .5rem 0 0;
    background-color: rgba(0,0,0,.03);
    border: 1px solid rgba(0,0,0,.03);
    border-radius: 3px;
    outline: none;
    transition: color .18s ease,border-color .18s ease,background-color .18s ease;
}

.myteam-user-photo{
	width: 20%;
	display:inline-block;
	margin: 0 auto;
}
.myteam-user-information{
	width: 80%;
	display:inline-block;
}

.myteam-fl{
	text-align: center;
}
.myteam-ele{
	padding: 6px;
}

.myteam-inrightcorner{
	position: absolute;
	right: 5px;
	bottom: 5px;
}

.myteam-display-button{
    pointer: cursor;
}

.myteam-heading{
	font-size: 1.5em;
    background-color: #f9f9f9;
    padding: 13px 15px;
}

.myteam-heading.myteam-withclick{
    cursor: pointer;
}

.myteam-heading .fa-caret-down,
.myteam-heading .fa-caret-up{
    float: right;
    padding: 6px 15px;
}


.myteam-card-user .myteam-user-photo{
    width: 100px;
    position: relative;
}

.myteam-birthday-cover img{
    position: absolute;
    width: 100%;
    height: 100%;
}

.animate-birthday{
    animation: anim_floating_alert_max 4s linear 0s infinite alternate;
    text-shadow: 1px 1px 2px white, 0 0 1em orange, 0 0 1.2em orange;
    font-weight: bold;
}
@keyframes anim_floating_alert_max {
	from {
		color: red;
	}

	25% {
		color: blue;

	}

	50% {
		color: green;

	}

	75% {
		color: pink;

	}

	to {
		color: red;
	}
}

.myteam-user-other-info span{
    text-transform: uppercase;
    font-weight: bold;
    margin: 0em 0.2em !important;
    padding: 0.6em 0.7em;
    font-family: roboto,arial,tahoma,verdana,helvetica;
    display: inline-block;
    text-align: center;
    color: #444;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    background: rgb(225, 231, 225);
}