/* Colors */
.red { 					color: #B11116; }
.red-dark { 			color: #720000; }
.gray { 				color: #6D6E71; }
.gray-light { 			color: #E8E9EB; }
.gray-dark { 			color: #525352; }
.yellow { 				color: #DEB027; }

/* Backgrounds */
.bg-red { 					background-color: #B11116; }
.bg-red-dark { 				background-color: #720000; }
.bg-gray { 					background-color: #6D6E71; }
.bg-gray-light { 			background-color: #E8E9EB; }
.bg-gray-dark { 			background-color: #525352; }
.bg-yellow { 				background-color: #DEB027; }
.bg-white {					background-color: #FFFFFF; }

/* Borders */
.border { border: solid 1px; }
.border-bottom { border-bottom: solid 1px; }
.border-top { border-top: solid 1px; }
.border-left { border-left: solid 1px; }
.border-right { border-right: solid 1px; }

.border-red { 					border-color: #B11116; }
.border-red-dark { 				border-color: #720000; }
.border-gray { 					border-color: #6D6E71; }
.border-gray-light { 			border-color: #E8E9EB; }
.border-gray-dark { 			border-color: #525352; }
.border-yellow { 				border-color: #DEB027; }
.border-white { 				border-color: #FFFFFF; }
.border-transparent { 			border-color: rgba(255, 255, 255, 0.3); }

