/* 
 * some useful classes for alignment, spacing, etc 
 */
.sama-text-center {
 text-align: center;
}

.sama-text-right { 
 text-align: right;
}

/*  
 * backgrounds
 */
.sama-blue-background {
 background-color: rgb(43, 97, 147);
}

.sama-yellow-background {
 background-color: rgba(253, 183, 67, .5); 
}


.sama-lightyellow-background {
 background-color: rgba(253, 183, 67, .1); 
}

.sama-white-background {
 background-color: white;
}

.sama-lightred-background {
 background-color: rgba(255, 0, 0, .1);
}
/* 
 * RULES FOR MOBILE MEDIA
 * "mobile" is defined by screen size 
 */

/* mobile portrait */
@media only screen and (max-width: 767px) {
 .sama-hideonmobile {
  display: none;
 }
}