
/* --------- Gray ---------- */
.block-background-gray {
  background-color: #F1EFE2;  
} 
 
/* --------- Blue ---------- */
.block-background-blue {
  background-color: #EBF4FA;  
}
 
/* --------- Green ---------- */
.block-background-green {
  background-color: #E8F6BF;
  color: #008000;  
}
/* --------- Orange---------- */
.block-background-orange {
  background-color: #FFBF80;
  color: #008000;  
}

/* ------------- Block borders ---------------- */
 
/* --------- Gray ---------- */
.block-border-rounded-corner {
    border-color: #999999;
    border-style: solid;
/* for rounded corners  */
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    border-width: 1px;
}
 
/* --------- Blue ---------- */
.block-border-square-corner {
    border-color: #999999;
    border-style: solid;
    border-width: 1px;
}
 
/* --------- Green ---------- */
.block-border-green {
  border: 4px solid #D6EB9A !important;
}
 
/* --------- Orange ---------- */
.block-border-orange {
  border: 4px solid #FFBF80 !important;
}
