
.spinner {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 4px solid #3498db;
	border-top: 4px solid #fff;
	animation: spin 1s linear infinite;
	margin: 5px;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.no-display{
	display: none;
}
.error{
    background-color: #EA423C;
    box-shadow: 4px 4px 15px 5px grey;
}
.message{
    height: 50px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 5px;
    border-radius: 10px;
    z-index: 15000;
    font-weight: bold;
    color: white;
}
.success{
    background-color: #2596be;
    box-shadow: 4px 4px 15px 5px grey;
}
h1,h2,h3,h4,h5,h6{
    margin: 0;
    padding: 0;
}
