hr {
	border: 0;
	height: 1px;
	background-color: #333;
	margin: 30px 0;
}

.no-padding {
	padding: 0;
}

.has-transition {
	transition: all 0.3s;
}

.is-large {
	font-size: 1.2em;
}

.is-hidden {
	display: none;
}

.is-shown {
	display: block;
}

.pointer {
	cursor: pointer;
}

.ninja {
	display: none;
}

.text-center {
	text-align: center;
}

.text-end {
	text-align: end;
}

#notification {
	position: fixed;
	top: 20px;
	right: 20px;
	width: auto;
	z-index: 9999;
	padding: 10px;
	background-color: rgba(0, 0, 0, 0.8);
	color: white;
	font-size: 1em;
	display: flex;
	border-radius: 4px;
	text-align: center;
}

#notification ul {
	list-style-type: none;
	padding: 0;
}

#notification .close {
	position: absolute;
	top: 0;
	right: 0;
	padding: 10px;
	cursor: pointer;
}

#notification.is-success {
	background-color: rgba(76, 175, 80, 0.8);
}

#notification.is-error {
	background-color: rgba(244, 67, 54, 0.8);
}

#notification.is-warning {
	background-color: rgba(255, 152, 0, 0.8);
}

#notification.is-info {
	background-color: rgba(33, 150, 243, 0.8);
}

.alert {
	padding: 10px 20px;
	margin: 10px 0;
	border-radius: 4px;
	background-color: #373b44;
}

.alert.is-success {
	background: rgba(76, 175, 80, 0.2);
}

.alert.is-error {
	background: rgba(244, 67, 54, 0.2);
}

.alert.is-warning {
	background: rgba(255, 152, 0, 0.2);
}

.alert.is-info {
	background: rgba(33, 150, 243, 0.2);
}


.text-success {
	color: rgb(76, 175, 80);
}

.text-error {
	color: rgb(244, 67, 54);
}

.text-warning {
	color: rgb(255, 152, 0);
}

.text-info {
	color: rgb(33, 150, 243);
}

.is-unread {
	border-radius: 10px;
	height: 10px;
	width: 10px;
	margin-left: 5px;
	display: inline-block;
	background-color: rgba(244, 67, 54, 0.8);
}

.display-block {
	display: block;
}

.display-flex {
	display: flex;
}

.flex-justify-end {
	justify-content: end;
}

.flex-justify-center {
	justify-content: center;
}

.flex-justify-start {
	justify-content: start;
}

.flex-space-between {
	justify-content: space-between;
}

.flex-align-center {
	align-items: center;
}

.margin-0 {
	margin: 0 !important;
}

.margin-top-1 {
	margin-top: 1em;
}

.margin-top-2 {
	margin-top: 2em;
}

.margin-bottom-1 {
	margin-bottom: 1em;
}

.margin-bottom-2 {
	margin-bottom: 2em;
}

.avatar {
	width: 150px;
	height: 150px;
	border-radius: 50%;
}

.mega-padding {
	padding: 50px;
}

.mini-button {
	color: #d1d1d1;
	text-decoration: none;
	margin-left: 10px;
	background: #1f2127;
	padding: 5px 10px;
	border-radius: 4px;
	font-size: 1em;
	font-weight: bold;
	border: none;
	cursor: pointer;
}

.mini-button span {
	margin-left: 5px;
}

.mini-button:hover {
	color: #d1d1d1;
	background: #333;
}

.mini-button.light {
	color: #1f2127;
	background: #d1d1d1;
}

.mini-button.light:hover {
	color: #1f2127;
	background: #bbb;
}

.mini-button.gray {
	color: #d1d1d1;
	background: #373b44;
}

.mini-button.gray:hover {
	color: #d1d1d1;
	background: #555;
}

.mini-button.danger {
	color: #d1d1d1;
	background: #d32f2f;
}

.mini-button.danger:hover {
	color: #d1d1d1;
	background: #ff5252;
}

.mini-button.success {
	color: #d1d1d1;
	background: #388e3c;
}

.mini-button.success:hover {
	color: #d1d1d1;
	background: #4caf50;
}

.mini-button.warning {
	color: #d1d1d1;
	background: #f57c00;
}

.mini-button.warning:hover {
	color: #d1d1d1;
	background: #ff9800;
}

.mini-button.info {
	color: #d1d1d1;
	background: #1976d2;
}

.mini-button.info:hover {
	color: #d1d1d1;
	background: #2196f3;
}

.mini-button.primary {
	color: #d1d1d1;
	background: #3b5998;
}

.mini-button.primary:hover {
	color: #d1d1d1;
	background: #4a69bd;
}

.mini-button.text-danger {
	color: #d32f2f;
}

.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.modal.is-active {
	display: flex;
}

.modal-content {
	background-color: #1f2127;
	padding: 20px;
	border-radius: 4px;
	width: 100%;
	max-width: 600px;
}

.modal-close {
	position: absolute;
	top: 0;
	right: 0;
	background: unset;
	color: #FFF;
	border: unset;
	margin: 20px;
	cursor: pointer;
}

@media (max-width: 768px) {
	#notification {
		top: 0;
		right: 0;
		left: 0;
	}
	.mini-button span {
		display: none;
	}
}
