/* -----Flash Messages----- */
.flash-container {
	display: flex;
	position: fixed;
	width: 100vw;
	justify-content: center;
}

.flash {
	display: flex;
	flex-direction: row;
  background: #102770;
	color: white;
	border-radius: 20px;
	text-align: center;
	margin: auto;
	border: 1px solid #ffd700;
  padding: .5em;
	white-space: nowrap;
	position: absolute;
}

.flash-error {
	background-color: #ff0000;
}

.flash-info {
	background: #004c00;
}

.flash-success {
}

.close-btn {
  display: flex;
	border: 1.8px solid #ffd700;
  justify-content: center;
  align-items: center;
  width: 23px;
  height: 23px;
  border-radius: 45%;
  cursor: pointer;
  transition: 0.5s;
  background: var(--font-color);
  color: white;
	margin-left: .5em;
	line-height: 1;
}

.close-btn svg {
  display: relative;
	margin: auto;
  width: 10px;
  height: 10px;
}

.close-btn:hover {
  background: white;
  color: black;
}

.flash-visibility {
	visibility: hidden;
}
