
.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

img {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 5px;
  width: 150px;
}
textarea {
  width: 100%;
  height: 150px;
  padding: 12px 20px;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #ffffff;
  font-size: 16px;
  resize: none;
}

mark {
  background-color: #F0FFFF;
  color: black;
}

/*from teacher class page country name, medium, subject 
for medium
*/
.label {
  color: white;
  padding: 8px;
  font-family: Lato;
  
}
/* experience paragraph line space*/
p.small {
  line-height: 0.8;
}
.teal {background-color: #008080;} /* Green */
.blue {background-color: #D46BEC;} /* Blue */
.orange {background-color: #ff9800;} /* Orange */
.red {background-color: #f44336;} /* Red */ 
.indigo {background-color: #4B0082;} /* Indigo */
.slateblue {background-color: #6A5ACD;} /* SlateBlue */
.other {background-color: #e7e7e7; color: black;} /* Gray */

/* star rating*/
.checked {
  color: orange;
}
.blink_me {
  animation: blinker 1s linear infinite;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}